├── .gitignore ├── Example.ipynb ├── LICENSE ├── README.md ├── data_loaders └── torch_geometric │ ├── torch_classification_example.py │ └── torch_loader.py ├── datasets ├── easy.npz ├── easy_small.npz ├── hard.npz └── hard_small.npz ├── img ├── sample_graph.png └── sample_graph2.png └── make_dataset.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/.gitignore -------------------------------------------------------------------------------- /Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/Example.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/README.md -------------------------------------------------------------------------------- /data_loaders/torch_geometric/torch_classification_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/data_loaders/torch_geometric/torch_classification_example.py -------------------------------------------------------------------------------- /data_loaders/torch_geometric/torch_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/data_loaders/torch_geometric/torch_loader.py -------------------------------------------------------------------------------- /datasets/easy.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/datasets/easy.npz -------------------------------------------------------------------------------- /datasets/easy_small.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/datasets/easy_small.npz -------------------------------------------------------------------------------- /datasets/hard.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/datasets/hard.npz -------------------------------------------------------------------------------- /datasets/hard_small.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/datasets/hard_small.npz -------------------------------------------------------------------------------- /img/sample_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/img/sample_graph.png -------------------------------------------------------------------------------- /img/sample_graph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/img/sample_graph2.png -------------------------------------------------------------------------------- /make_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FilippoMB/Benchmark_dataset_for_graph_classification/HEAD/make_dataset.py --------------------------------------------------------------------------------