MatchingNetworks
MatchingNetworks copied to clipboard
An attempt at replicating the Matching Networks for One Shot Learning in Tensorflow - Paper URL: https://arxiv.org/pdf/1606.04080.pdf
Hi, I simply ran train_one_shot_learning_matching_network.py following guideline in the Readme file, then I met following error. Does anyone meet the same problem? Traceback (most recent call last): | 0/1000 [00:00
hey, I'm using my own dataset which follows the folder structure as given in the readme. I have 89 classes and want to split 64 10 15 as the train...
Thanks for your code! I have two question about the code: First, When calculating the cosine distance, I think it should also be divided by the L2 norms of input_image,...
Line 82 of one_shot_learning_network.py, x, h_c = fw_lstm_cells_encoder(inputs=target_set_embeddings, state=c_h) h_c should be used as the c_h[0] for the next call of fw_lstm_cells_encoder
Hi -- Have you ever tried to reproduce the baseline results reported in the paper? I implemented Matching Networks from scratch, and my baseline model does substantially better than the...
Sorry to use the bug tracker for this, it's actually more of a question. How did you interpret the concatenation of the hidden state and the readout in equation 3...