-
Hello. Could you please help me figure out this error when i run this training command
```
for epochs, parameters in train_schedule.items():
print("")
print("training layers {} until epo…
-
我使用ALBERT和孪生网络来训练一个主观问题评分模型,训练策略参考的你的代码,孪生网络由双向LSTM和全连接层组成。在训练中,我发现准确率没有提高,一直保持不变。我感觉像是权重没有更新,可能是因为梯度太小导致了权重变化不大。或者,训练策略可能存在问题,但我不确定具体原因。下面是我训练期时的准确率:
![training](https://github.com/dragen1860/MAML-P…
-
Traceback (most recent call last):
File "/home/avltree/Projects/Siamese-pytorch/train.py", line 202, in
fit_one_epoch(net,loss,epoch,epoch_size,epoch_size_val,gen,gen_val,Freeze_Epoch,Cuda)
…
-
I am training the siamese network using contrastive loss layer.
But i see only the loss, so i dont know my net going well or not, and also how much.
I want the feature of computing the accuracy for co…
-
I cloned this project and imported to my own python code. I updated my code as below:
siamese_net.compile(loss="AM-softmax",optimizer=optimizer, metrics=['accuracy'])
However, I got below erro…
-
Siamese Neural Networks for One-shot Image Recognition(샴 네트워크)
: https://jayhey.github.io/deep%20learning/2018/02/06/saimese_network/
https://www.edwith.org/deeplearningai4/lecture/34912/
loss func…
-
Can this Pipeline be used (or customized )to train a Siamese Network using a custom loss function.
-
[moving comment to Tensorflow]
Hey @kmittman,
I hope you could help me with this as well.
I'm training my Siamese Network for Face verification using TensorFlow, below are the time it is taking…
-
Traceback (most recent call last):
File "F:/work/AI_Project/Siamese-pytorch-master/train.py", line 351, in
fit_one_epoch(model_train, model, loss, loss_history, optimizer, epoch, epoch_step, …
-
siamese_nn.py line 28 gave an error of mismatched types, I changed the line to this to fix it:
model.fit([np.float32(training_pairs[:, 0]), np.float32(training_pairs[:, 1])], np.float32(training_labe…