Loading repository data…
Loading repository data…
Shmoo137 / repository
The repository contains Jupyter notebooks for hands-on tutorials organized within the Summer School: Machine Learning for Quantum Physics and Chemistry (24th August - 3rd September 2021, Warsaw).
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
DISCLAIMER: The majority of the code prepared within tutorials comes from our great lecturers, i.e., Eliska Greplova, Roman Krems, Giuseppe Carleo, Filippo Vicentini, Florian Marquardt, and their collaborators (see the list of authors in the beginning of every notebook). Moreover, Borja Requena Pozo with Gorka Muñoz Gil prepared the notebook on reinforcement learning. I (Anna Dawid) am responsible only for gathering these materials in one place and adapting to meet the needs of participants of our school (i.e., adding comments, solutions, information on using Google Colaboratory, hyperparameters, comparing Tensorflow and PyTorch, etc.).
Folder "A - Phase Classification (by Eliska Greplova)" contains:
Ising_data with Monte-Carlo generated configurations of Ising spins on a 30x30 lattice with labels as well as configurations of spins from Ising Gauge Theory (IGT) with labels. In particular:
ising_training_configs_30x30.npy contains configurations of Ising spins belonging to the training set,ising_training_labels_30x30.npy contains labels, i.e., temperatures of Monte Carlo samples of Ising spins belonging to the training set,ising_test_configs_30x30.npy contains configurations of Ising spins belonging to the test set,ising_test_labels_30x30.npy contains labels, i.e., temperatures of Monte Carlo samples of Ising spins belonging to the test set,ilgt_training_configs.npy contains configurations of IGT spins belonging to the training set,ilgt_training_labels.npy contains labels, i.e., temperatures of Monte Carlo samples of IGT spins belonging to the training set,ilgt_test_configs.npy contains configurations of IGT spins belonging to the test set,ilgt_test_labels.npy contains labels, i.e., temperatures of Monte Carlo samples of IGT spins belonging to the test set.The folder also contains:
01_Unsupervised_learning.ipynb which aims at clustering states from both models into corresponding phases with Principal Component Analysis (PCA) and t-Stochastic Neighborhood Embedding (t-SNE),02_Supervised_learning.ipynb where we train neural networks to recognise phases in both models and stress the importance of regularization of ML models,03_More_sophisticated_NN_methods.ipynb where we implement "learning by confusion" and "predictive model" to detect phase transition in the Ising model.Folder "B - Gaussian Process Regression (by Roman Krems)" contains:
H3O+.csv with 6D potential energy surface (PES) for the molecule $H_3O^+$ (with six first columns listing the coordinates and the seventh - the energy),Gaussian_process_regression.ipynb with the exemplary code to build Gaussian process (GP) regression of 1D synthetic data with simple kernels, and three tasks:
Folder "C - Neural-Network States (by Giuseppe Carleo)" contains:
00_Introduction_to_JAX.ipynb which is an introductory notebook about Jax, talking a bit about everything and terminating with an example of a linear regression (a useful addition that was not covered during the school in Warsaw).01_Introduction_to_NetKet.ipynb which introduces the syntax of "NetKet 3", a very useful library for studies of many-body quantum systems with neural networks and ML techniques, on the example of the Ising model,02_Dynamics_with_NetKet.ipynb which was the basis of "Filippo Vicentini's lecture".
All notebooks were prepared by Filippo Vicentini and accompanied the lectures of Giuseppe Carleo.Folder "D - Reinforcement Learning (by Florian Marquardt)" contains:
Reinforcement_learning.ipynb which introduces the concepts of Q-table, deel Q-learning, and policy gradient. It was prepared by Borja Requena Pozo and Gorka Muñoz Gil to illustrate the lectures of Florian Marquardt.