(full_graph_path)
| 83 | return netG, mesh_net |
| 84 | |
| 85 | def get_graph(full_graph_path): |
| 86 | |
| 87 | with open(full_graph_path, 'rb') as f: |
| 88 | graph = pickle.load(f) |
| 89 | |
| 90 | return graph #edge_index, vertex_position |
| 91 | |
| 92 | def load_embedding(data_dir): |
| 93 | # embedding_filename = '/embeddings.pickle' |