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"): ...@@ -19,9 +19,9 @@ def load_data(DIR="subDataSet/EMB"):
test_x = np.load("data_test.npy",allow_pickle=True) test_x = np.load("data_test.npy",allow_pickle=True)
val_x = np.load("data_val.npy",allow_pickle=True) val_x = np.load("data_val.npy",allow_pickle=True)
print(train_x[0].shape) print(train_x[0].shape)
train_y = np.load("node2vec/src/graph/label_train.npy") train_y = np.load("label_train.npy")
test_y = np.load("node2vec/src/graph/label_test.npy") test_y = np.load("label_test.npy")
val_y= np.load("node2vec/src/graph/label_val.npy") val_y= np.load("label_val.npy")
print(val_y.shape) print(val_y.shape)
print(val_x[0]) print(val_x[0])
...@@ -94,4 +94,4 @@ for i in range(2900): ...@@ -94,4 +94,4 @@ for i in range(2900):
tab = [] tab = []
end = time.time() 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