Hey,
Would really appreciate your help here:
It seems like only 1 batch is used per timestamp
label_t = dataset.get_label_time() # check when does the first label start
This line is used to find out in which timestamp the first labeled node appear.
After that for each batch we check if the last timestamp is above label_t here
Till here its all good
The problem is that after that we immeadatly change label_t to be the current timestamp here
In my opinion this cause the training to consider only the first batch at every timestamp and not all the batches that are labeled.
Could you please provide clarification regarding this?
Thanks in advance
Yaniv
Hey,
Would really appreciate your help here:
It seems like only 1 batch is used per timestamp
label_t = dataset.get_label_time() # check when does the first label start
This line is used to find out in which timestamp the first labeled node appear.
After that for each batch we check if the last timestamp is above label_t here
Till here its all good
The problem is that after that we immeadatly change label_t to be the current timestamp here
In my opinion this cause the training to consider only the first batch at every timestamp and not all the batches that are labeled.
Could you please provide clarification regarding this?
Thanks in advance
Yaniv