Skip to content
Snippets Groups Projects
Commit 408a8129 authored by Walid Megherbi's avatar Walid Megherbi
Browse files

Update Train2.py

parent f27aea54
No related branches found
No related tags found
1 merge request!1DeepDense
......@@ -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
"""
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment