├── README.md ├── dfs.py ├── dijkstra.py ├── enviroment_nobuilds.yml ├── generate_dataset.py ├── generate_dataset_2.py ├── graph_generation.py ├── kahn.py ├── mpnn.py ├── mpnn_2.py ├── papers ├── graph_attention_networks.pdf ├── neural_execution_engines.pdf ├── neural_execution_of_graphs.pdf └── neural_message_passing_networks.pdf ├── requirements.txt ├── tasks.txt ├── training.py └── training_2.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/README.md -------------------------------------------------------------------------------- /dfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/dfs.py -------------------------------------------------------------------------------- /dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/dijkstra.py -------------------------------------------------------------------------------- /enviroment_nobuilds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/enviroment_nobuilds.yml -------------------------------------------------------------------------------- /generate_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/generate_dataset.py -------------------------------------------------------------------------------- /generate_dataset_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/generate_dataset_2.py -------------------------------------------------------------------------------- /graph_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/graph_generation.py -------------------------------------------------------------------------------- /kahn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/kahn.py -------------------------------------------------------------------------------- /mpnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/mpnn.py -------------------------------------------------------------------------------- /mpnn_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/mpnn_2.py -------------------------------------------------------------------------------- /papers/graph_attention_networks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/papers/graph_attention_networks.pdf -------------------------------------------------------------------------------- /papers/neural_execution_engines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/papers/neural_execution_engines.pdf -------------------------------------------------------------------------------- /papers/neural_execution_of_graphs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/papers/neural_execution_of_graphs.pdf -------------------------------------------------------------------------------- /papers/neural_message_passing_networks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/papers/neural_message_passing_networks.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/requirements.txt -------------------------------------------------------------------------------- /tasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/tasks.txt -------------------------------------------------------------------------------- /training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/training.py -------------------------------------------------------------------------------- /training_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbarcik/graphnets/HEAD/training_2.py --------------------------------------------------------------------------------