We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e6230 commit 57f4119Copy full SHA for 57f4119
main.py
@@ -98,7 +98,7 @@ def str2bool(s):
98
for param in model.time_matrix_V_emb.parameters(): loss += args.l2_emb * torch.norm(param)
99
loss.backward()
100
adam_optimizer.step()
101
- print("loss in epoch {} iteration {}: {}".format(epoch, step, loss.item())) # expected 0.4~0.6 after init few epochs
+ # print("loss in epoch {} iteration {}: {}".format(epoch, step, loss.item())) # expected 0.4~0.6 after init few epochs
102
103
if epoch % 20 == 0:
104
model.eval()
0 commit comments