From 408a812985067bf7b96ac9b523d6bb1c05324ced Mon Sep 17 00:00:00 2001 From: Walid Megherbi <mgwalidd@gmail.com> Date: Tue, 11 Oct 2022 12:40:00 +0000 Subject: [PATCH] Update Train2.py --- Train2.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Train2.py b/Train2.py index 356f545..3b9ae86 100644 --- a/Train2.py +++ b/Train2.py @@ -19,9 +19,9 @@ def load_data(DIR="subDataSet/EMB"): test_x = np.load("data_test.npy",allow_pickle=True) val_x = np.load("data_val.npy",allow_pickle=True) print(train_x[0].shape) - train_y = np.load("node2vec/src/graph/label_train.npy") - test_y = np.load("node2vec/src/graph/label_test.npy") - val_y= np.load("node2vec/src/graph/label_val.npy") + train_y = np.load("label_train.npy") + test_y = np.load("label_test.npy") + val_y= np.load("label_val.npy") print(val_y.shape) print(val_x[0]) @@ -94,4 +94,4 @@ for i in range(2900): tab = [] end = time.time() -""" \ No newline at end of file +""" -- GitLab