Jack Choi

Results 24 issues of Jack Choi

Why the default value of sep is set to 25

class GCN(nn.Module): def __init__(self, num_state, num_node, bias=False): super(GCN, self).__init__() self.conv1 = nn.Conv1d(num_node, num_node, kernel_size=1) // why conv1d ? self.relu = nn.ReLU(inplace=True) self.conv2 = nn.Conv1d(num_state, num_state, kernel_size=1, bias=bias) //? def forward(self,...

Hi ArgentX Team, Do you have finished the Multi-Sig Wallet function? If so, and if it's open-source, how can I find the source code or call the related api? :)...

Hi there, I found the blockchain.transaction.broadcast in the raw_client.rs source code, so I have a question here: In rust-bitcoin repo, there is a send_transaction interface in their source code, so...

error: failed to run custom build command for `openssl-sys v0.9.60` Caused by: process didn't exit successfully: `D:\NeteaseCloudMusicRustApi\target\debug\build\openssl-sys-650ad21cf9b19cda\build-script-main` (exit code: 101) --- stdout cargo:rustc-cfg=const_fn cargo:rerun-if-env-changed=X86_64_PC_WINDOWS_MSVC_OPENSSL_LIB_DIR X86_64_PC_WINDOWS_MSVC_OPENSSL_LIB_DIR unset cargo:rerun-if-env-changed=OPENSSL_LIB_DIR OPENSSL_LIB_DIR unset cargo:rerun-if-env-changed=X86_64_PC_WINDOWS_MSVC_OPENSSL_INCLUDE_DIR...

compile error use arena::TypedArena; | 3 | use arena::TypedArena; | ^^^^^ use of undeclared type or module `arena` lack of something?

Hi Team, are there any roadmaps or plans about how to implement the interface of how to get the bitcoin raw transaction?

Hi there, I wrote my own post_upgrade code by researching the openchat post_upgrade, but it prints: Error: Failed while trying to deploy canisters. Caused by: Failed while trying to deploy...

Hi openchat Team, I have read something about the user and user_index modules, and have some questions: 1.What kind of functions did the user and user_index developed for? 2.I read...