xuyuankun631 / IcicleGCN

The code of PR'24 paper IcicleGCN
14 stars 2 forks source link

Q:class load_data(Dataset): #4

Open Sawyeryoung1 opened 3 months ago

Sawyeryoung1 commented 3 months ago

When I was running the icicleGCN.py at a new dataset, I want to know the type of .txt and label.txt. I can not find them at your files. " def init(self, dataset): self.x = np.loadtxt('data/{}.txt'.format(dataset), dtype=float)

self.x = np.loadtxt('data/{}.txt'.format(dataset), dtype=str)

    self.y = np.loadtxt('data/{}_label.txt'.format(dataset), dtype=int)"

Could you tell me the format of these two files?

xuyuankun631 commented 3 months ago

These files are too large to be uploaded to git. One of them is a vectorized feature file, with the number of samples in the vertical direction and the dimension of the feature vector in the horizontal direction. The other file is the sample label, which has only the vertical dimension.

Sawyeryoung1 commented 3 months ago

Thank you for your help.If it's convenient for you, can I add your WeChat to learn the formats of these two files from you?