Hi,
Thanks for the codes and your great work.
I have a question regarding the execution of the count algorithm. Each configuration file appears to require the use of the GINE model; however, I noticed that the dataset does not contain any edge features. When I attempted to run the code, I ran bash run.sh and encountered the following error:
File "/mnt/data1/SPE-master/count/../src/gine.py", line 86, in forward
if PE.size(0) == X_e.size(0): # for PEG
AttributeError: 'NoneType' object has no attribute 'size'
I suppose this happens due to in line 84:
X_e = self.edge_features(edge_attr) if edge_attr is not None else None # [E_sum, D_in]
Could you please clarify what might be causing this issue?
Best regards,
Xiaohan
Hi,
Thanks for the codes and your great work.
I have a question regarding the execution of the count algorithm. Each configuration file appears to require the use of the GINE model; however, I noticed that the dataset does not contain any edge features. When I attempted to run the code, I ran
bash run.shand encountered the following error:I suppose this happens due to in line 84:
X_e = self.edge_features(edge_attr) if edge_attr is not None else None # [E_sum, D_in]Could you please clarify what might be causing this issue?
Best regards,
Xiaohan