Link prediction #3956
-
Hi,
Now the problem is that during training only the train loss is decreasing while val and test increase from the beginning... I thought I'm overfitting, but I cannot understand where is the problem. Here the training loop:
Could you see something wrong in my code? Or do you have some tips? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Your example code looks pretty good to me. How do you generate |
Beta Was this translation helpful? Give feedback.
Your example code looks pretty good to me. How do you generate
val_data
andtest_data
in the first place? What happens if you re-sample negatives for each training epoch? What happens if you replaceSGD
withAdam
?