ckldan520 / DDGCL

code for "Self-supervised representation learning on dynamic graphs"
26 stars 1 forks source link

Validation process #2

Closed MrYaoH closed 2 years ago

MrYaoH commented 2 years ago

Hi, author: I like your code, but the tensor version makes me feel hard. I have an question about validation process. I want to know whether the queue update operator is performed in validation or testing?

ckldan520 commented 2 years ago

The negative sample queue is only used in the model training process, and the queue in the validation or testing phase is not involved in inference.

MrYaoH commented 2 years ago

The negative sample queue is only used in the model training process, and the queue in the validation or testing phase is not involved in inference.

Thank you for your reply.