tinymindx

Results 5 issues of tinymindx

Hi, thanks for your work. I learned a lot from your blog and code! In your gradient test code, I found that there may be something wrong in the back...

in test_server.c ,function TestRaft_leader_recv_entry_resets_election_timeout may exists some error . void TestRaft_leader_recv_entry_resets_election_timeout( CuTest \* tc) { void *r = raft_new(); raft_set_election_timeout(r, 1000); raft_set_state(r, RAFT_STATE_LEADER); ### if we change 900 to 1,...

first, thanks for your excellent work. I wonder under what situation function raft_recv_entry will be called? this function seems not mentioned in raft paper?

FAQ

你好,有个问题想请教以下: ```python #搭建CNN+Capsule分类模型 input_image = Input(shape=(None,None,1)) cnn = Conv2D(64, (3, 3), activation='relu')(input_image) cnn = Conv2D(64, (3, 3), activation='relu')(cnn) cnn = AveragePooling2D((2,2))(cnn) cnn = Conv2D(128, (3, 3), activation='relu')(cnn) cnn = Conv2D(128,...

hi, thanks for you amazing work. I wonder whether you have a plan to support git or something else. As you know, we sometimes need to synchronize our file to...