├── .gitignore ├── CITATION.cff ├── FAQ └── README.rst ├── LICENSE ├── README.rst ├── components ├── README.rst └── identifiers │ └── README.rst ├── datasets └── README.rst ├── images ├── Blockchain_layers.png ├── Downstream_Task.png ├── Ecosystem.png ├── Logo_GUT-AI_text.png ├── Logo_GUT-AI_text.svg ├── ML_Papers.jpg ├── Preprocessing.png ├── Protocol_layers.png └── README.rst ├── model_zoo └── README.rst ├── roadmap └── README.rst ├── simulators └── README.rst ├── software_tools └── README.rst ├── summaries └── README.rst └── use_cases └── README.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/CITATION.cff -------------------------------------------------------------------------------- /FAQ/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/FAQ/README.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/README.rst -------------------------------------------------------------------------------- /components/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/components/README.rst -------------------------------------------------------------------------------- /components/identifiers/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/components/identifiers/README.rst -------------------------------------------------------------------------------- /datasets/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/datasets/README.rst -------------------------------------------------------------------------------- /images/Blockchain_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/images/Blockchain_layers.png -------------------------------------------------------------------------------- /images/Downstream_Task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/images/Downstream_Task.png -------------------------------------------------------------------------------- /images/Ecosystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/images/Ecosystem.png -------------------------------------------------------------------------------- /images/Logo_GUT-AI_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/images/Logo_GUT-AI_text.png -------------------------------------------------------------------------------- /images/Logo_GUT-AI_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/images/Logo_GUT-AI_text.svg -------------------------------------------------------------------------------- /images/ML_Papers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/images/ML_Papers.jpg -------------------------------------------------------------------------------- /images/Preprocessing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/images/Preprocessing.png -------------------------------------------------------------------------------- /images/Protocol_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/images/Protocol_layers.png -------------------------------------------------------------------------------- /images/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/images/README.rst -------------------------------------------------------------------------------- /model_zoo/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/model_zoo/README.rst -------------------------------------------------------------------------------- /roadmap/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/roadmap/README.rst -------------------------------------------------------------------------------- /simulators/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/simulators/README.rst -------------------------------------------------------------------------------- /software_tools/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/software_tools/README.rst -------------------------------------------------------------------------------- /summaries/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/summaries/README.rst -------------------------------------------------------------------------------- /use_cases/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUT-AI/gut-ai/HEAD/use_cases/README.rst --------------------------------------------------------------------------------