Julia Gast
Julia Gast
Hello, I found an inconsistency: predict(), l. 223: `_, sub, prob_sub = global_model.predict(self.latest_time, self.graph_dict, subject=True)` vs predict(), l. 261: `_, ob, prob_ob = global_model.predict(t, self.graph_dict, subject=False)` why do you pass...
This (l.232 ff): ``` for s, prob_s in zip(subjects, prob_subjects): if s in s_done: continue else: s_done.add(s) ``` and this: ``` for o, prob_o in zip(objects, prob_objects): if o in...
Hello, In your paper, table 2 you are showing an interesting ablation study, where you show also RE-NET w. GT. I would like to understand how, in the code, I...