diff --git a/_sources/docs/Exercises_ASE_intro.ipynb b/_sources/docs/Exercises_ASE_intro.ipynb
index c29f4da..ac5ea04 100755
--- a/_sources/docs/Exercises_ASE_intro.ipynb
+++ b/_sources/docs/Exercises_ASE_intro.ipynb
@@ -1,148 +1,148 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "d2fe0ce8-b7ef-40d0-8d03-f85630d3ae8d",
- "metadata": {},
- "source": [
- "# Exercises"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "58d1f53d-6a3e-4c47-afd6-f7af64c1bd20",
- "metadata": {},
- "source": [
- "These exercises cover the basic utilities of the Python Atomic Simulation Environment (ASE)."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "2ca9c86a",
- "metadata": {},
- "source": [
- "(ase-intro-ex)=\n",
- "## Exercise 1"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "845c1165-e92b-49ee-a8b1-acfed1ad01d1",
- "metadata": {},
- "source": [
- "## Exercise 1"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "33441ff2",
- "metadata": {},
- "source": [
- "First, be sure you have downloaded ASE using the Anaconda package manager. Import the Atoms and io modules of the ASE package in the code block below."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "69ab41ee",
- "metadata": {},
- "outputs": [],
- "source": [
- "# import statements here\n"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "e9199451",
- "metadata": {},
- "source": [
- "Next, read in the Ca-LTA Crystallographic Information File (CIF) as an Atoms object using ASE. **Note** This file, along with all other data required for completing these exercises can be found in the `resources/data/` folder. Ca-LTA is a zeolite with gas adsorption applications and will be the focus of several exercises throughout this training course."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "ea01a638",
- "metadata": {},
- "outputs": [],
- "source": [
- "# read in structure here"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "80144b04",
- "metadata": {},
- "source": [
- "Using built-in ASE tools, print the number of atoms and each atomic identity."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "4c6d6fbf",
- "metadata": {},
- "outputs": [],
- "source": [
- "# code here\n"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "18ed8de9",
- "metadata": {},
- "source": [
- "Use ASE tools to manually activate periodic boundary conditions in all three directions. This will be important when performing ASE calculations in the next module."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "69d12429",
- "metadata": {},
- "outputs": [],
- "source": [
- "# code here\n"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "5254def4",
- "metadata": {},
- "source": [
- "Lastly, print the unit cell volume to the console."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c570b68f",
- "metadata": {},
- "outputs": [],
- "source": [
- "# code here\n"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python (sparc1.2)",
- "language": "python",
- "name": "my-new-env"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.9.17"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "d2fe0ce8-b7ef-40d0-8d03-f85630d3ae8d",
+ "metadata": {},
+ "source": [
+ "# Exercises"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "58d1f53d-6a3e-4c47-afd6-f7af64c1bd20",
+ "metadata": {},
+ "source": [
+ "These exercises cover the basic utilities of the Python Atomic Simulation Environment (ASE)."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2ca9c86a",
+ "metadata": {},
+ "source": [
+ "(ase-intro-ex)=\n",
+ "## Exercise 1"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "845c1165-e92b-49ee-a8b1-acfed1ad01d1",
+ "metadata": {},
+ "source": [
+ "## Exercise 1"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "33441ff2",
+ "metadata": {},
+ "source": [
+ "First, be sure you have downloaded ASE using the Anaconda package manager. Import the Atoms and io modules of the ASE package in the code block below."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "69ab41ee",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# import statements here\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "e9199451",
+ "metadata": {},
+ "source": [
+ "Next, read in the Ca-LTA Crystallographic Information File (CIF) as an Atoms object using ASE. **Note** This file, along with all other data required for completing these exercises can be found in the `resources/data/` folder. Ca-LTA is a zeolite with gas adsorption applications and will be the focus of several exercises throughout this training course."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "ea01a638",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# read in structure here"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "80144b04",
+ "metadata": {},
+ "source": [
+ "Using built-in ASE tools, print the number of atoms and each atomic identity."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "4c6d6fbf",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# code here\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "18ed8de9",
+ "metadata": {},
+ "source": [
+ "Use ASE tools to manually activate periodic boundary conditions in all three directions. This will be important when performing ASE calculations in the next module."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "69d12429",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# code here\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "5254def4",
+ "metadata": {},
+ "source": [
+ "Lastly, print the unit cell volume to the console."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "c570b68f",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# code here\n"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python (sparc1.2)",
+ "language": "python",
+ "name": "my-new-env"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.9.17"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/_sources/docs/Exercises_DFT_applications.ipynb b/_sources/docs/Exercises_DFT_applications.ipynb
index e8a68d2..bf26602 100755
--- a/_sources/docs/Exercises_DFT_applications.ipynb
+++ b/_sources/docs/Exercises_DFT_applications.ipynb
@@ -1,204 +1,204 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "id": "d2fe0ce8-b7ef-40d0-8d03-f85630d3ae8d",
- "metadata": {},
- "source": [
- "# Exercises"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "845c1165-e92b-49ee-a8b1-acfed1ad01d1",
- "metadata": {},
- "source": [
- "(dft-1-ex)=\n",
- "## Exercise 1"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "33441ff2",
- "metadata": {},
- "source": [
- "One major application of density functional theory is performing structural relaxation (i.e., geometric optimization).
Begin by building a linear CO2 molecule in ASE with a C–O bond length of 1.8 Å."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b3d2476b",
- "metadata": {},
- "outputs": [],
- "source": [
- "from ase import Atoms\n",
- "\n",
- "#Code here"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "03e0c4ba",
- "metadata": {},
- "source": [
- "Next, relax your molecule using SPARC with parameters of your choosing. Confirm that your relaxed C–O bond length matches that from experimentation. Check the manual for the appropriate flags for relaxation."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e7ecc3db",
- "metadata": {},
- "outputs": [],
- "source": [
- "import os\n",
- "from sparc import SPARC\n",
- "from ase.units import Bohr,Hartree,mol,kcal,kJ,eV\n",
- "from ase.io import read, write\n",
- "\n",
- "#Code here"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "db771ffe",
- "metadata": {},
- "source": [
- "(dft-2-ex)=\n",
- "## Exercise 2"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "ba045e75",
- "metadata": {},
- "source": [
- "In this exercise, we will consider the adsorption of an atomic oxygen on Pt(111) surface, instead of O2 molecule.\n",
- "Consider fcc and hcp active sites. Determine the most stable adsorption site of an oxygen atom on Pt(111) surface and the corresponding adsorption energy when the surface is saturated with one monolayer of oxygens (in this case, one O atom for each Pt surface atom)."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c2cf958a",
- "metadata": {},
- "outputs": [],
- "source": [
- "from ase import Atoms, Atom\n",
- "from ase.build import bulk, molecule, surface, add_adsorbate, fcc111, fcc100\n",
- "from ase.constraints import FixAtoms\n",
- "from ase.io import read\n",
- "\n",
- "#Code here"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "7d656717",
- "metadata": {},
- "source": [
- "## Exercise 3"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "54072710",
- "metadata": {},
- "source": [
- "CO2 can adsorb in Ca-LTA in one of three positions shown in the figure below. Note that the large teal atoms are calcium."
- ]
- },
- {
- "cell_type": "markdown",
- "id": "1b693c79-acbe-40c8-b0cd-2fe96d99e2c4",
- "metadata": {},
- "source": [
- "![MOFImage](./image.png)"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "5bacd640",
- "metadata": {},
- "source": [
- "Using a DFT package and calculation parameters of your choice, compute the CO2 adsorption energy for each of the three positions in Ca-LTA. *This exercise requires that you manually add CO2 molecules into the Ca-LTA framework and that you perform several structural relaxations at different geometries. You can fix the atomic positions of Ca-LTA to reduce the computational cost* Comment on which of the active sites is the most stable. Based on the energies, is it reasonable to assume a single active site dominates? How would you expect the results to shift as the active sites become saturated?"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "c13e8f2c",
- "metadata": {},
- "outputs": [],
- "source": [
- "# First, relax the pristine MOF\n",
- "\n",
- "import os\n",
- "from ase import Atoms, io\n",
- "from ase.io import read, write\n",
- "from ase.build import bulk, molecule, surface, add_adsorbate\n",
- "from ase.units import Bohr,Hartree,mol,kcal,kJ,eV\n",
- "#These constraints allow you to fix atoms. See ASE documentation\n",
- "from ase.constraints import FixAtoms\n",
- "from sparc import SPARC\n",
- "\n",
- "#Code here"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a8fb3b7a",
- "metadata": {},
- "outputs": [],
- "source": [
- "# Add CO2 to relaxed pristine structures\n",
- "\n",
- "from sparc import SPARC\n",
- "from ase import Atom\n",
- "from ase.build import bulk, molecule, surface, add_adsorbate\n",
- "from ase.units import Bohr,Hartree,mol,kcal,kJ,eV\n",
- "from ase.io import read, write\n",
- "import numpy as np\n",
- "\n",
- "#Code here"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "78d648bd-6407-43bb-806e-31fc86a96480",
- "metadata": {},
- "source": [
- "**Responses here**"
- ]
- },
- {
- "cell_type": "markdown",
- "id": "65c2db5d-1e54-4119-a4bb-4eea04e65a19",
- "metadata": {},
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.9.16"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "d2fe0ce8-b7ef-40d0-8d03-f85630d3ae8d",
+ "metadata": {},
+ "source": [
+ "# Exercises"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "845c1165-e92b-49ee-a8b1-acfed1ad01d1",
+ "metadata": {},
+ "source": [
+ "(dft-1-ex)=\n",
+ "## Exercise 1"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "33441ff2",
+ "metadata": {},
+ "source": [
+ "One major application of density functional theory is performing structural relaxation (i.e., geometric optimization).
Begin by building a linear CO2 molecule in ASE with a C–O bond length of 1.8 Å."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "b3d2476b",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from ase import Atoms\n",
+ "\n",
+ "#Code here"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "03e0c4ba",
+ "metadata": {},
+ "source": [
+ "Next, relax your molecule using SPARC with parameters of your choosing. Confirm that your relaxed C–O bond length matches that from experimentation. Check the manual for the appropriate flags for relaxation."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "e7ecc3db",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import os\n",
+ "from sparc import SPARC\n",
+ "from ase.units import Bohr,Hartree,mol,kcal,kJ,eV\n",
+ "from ase.io import read, write\n",
+ "\n",
+ "#Code here"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "db771ffe",
+ "metadata": {},
+ "source": [
+ "(dft-2-ex)=\n",
+ "## Exercise 2"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "ba045e75",
+ "metadata": {},
+ "source": [
+ "In this exercise, we will consider the adsorption of an atomic oxygen on Pt(111) surface, instead of O2 molecule.\n",
+ "Consider fcc and hcp active sites. Determine the most stable adsorption site of an oxygen atom on Pt(111) surface and the corresponding adsorption energy when the surface is saturated with one monolayer of oxygens (in this case, one O atom for each Pt surface atom)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "c2cf958a",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from ase import Atoms, Atom\n",
+ "from ase.build import bulk, molecule, surface, add_adsorbate, fcc111, fcc100\n",
+ "from ase.constraints import FixAtoms\n",
+ "from ase.io import read\n",
+ "\n",
+ "#Code here"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "7d656717",
+ "metadata": {},
+ "source": [
+ "## Exercise 3"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "54072710",
+ "metadata": {},
+ "source": [
+ "CO2 can adsorb in Ca-LTA in one of three positions shown in the figure below. Note that the large teal atoms are calcium."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "1b693c79-acbe-40c8-b0cd-2fe96d99e2c4",
+ "metadata": {},
+ "source": [
+ "![MOFImage](./image.png)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "5bacd640",
+ "metadata": {},
+ "source": [
+ "Using a DFT package and calculation parameters of your choice, compute the CO2 adsorption energy for each of the three positions in Ca-LTA. *This exercise requires that you manually add CO2 molecules into the Ca-LTA framework and that you perform several structural relaxations at different geometries. You can fix the atomic positions of Ca-LTA to reduce the computational cost* Comment on which of the active sites is the most stable. Based on the energies, is it reasonable to assume a single active site dominates? How would you expect the results to shift as the active sites become saturated?"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "c13e8f2c",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# First, relax the pristine MOF\n",
+ "\n",
+ "import os\n",
+ "from ase import Atoms, io\n",
+ "from ase.io import read, write\n",
+ "from ase.build import bulk, molecule, surface, add_adsorbate\n",
+ "from ase.units import Bohr,Hartree,mol,kcal,kJ,eV\n",
+ "#These constraints allow you to fix atoms. See ASE documentation\n",
+ "from ase.constraints import FixAtoms\n",
+ "from sparc import SPARC\n",
+ "\n",
+ "#Code here"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "a8fb3b7a",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Add CO2 to relaxed pristine structures\n",
+ "\n",
+ "from sparc import SPARC\n",
+ "from ase import Atom\n",
+ "from ase.build import bulk, molecule, surface, add_adsorbate\n",
+ "from ase.units import Bohr,Hartree,mol,kcal,kJ,eV\n",
+ "from ase.io import read, write\n",
+ "import numpy as np\n",
+ "\n",
+ "#Code here"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "78d648bd-6407-43bb-806e-31fc86a96480",
+ "metadata": {},
+ "source": [
+ "**Responses here**"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "65c2db5d-1e54-4119-a4bb-4eea04e65a19",
+ "metadata": {},
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.9.16"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/_sources/docs/VIP_Overview.ipynb b/_sources/docs/VIP_Overview.ipynb
index 7c43020..fa80022 100755
--- a/_sources/docs/VIP_Overview.ipynb
+++ b/_sources/docs/VIP_Overview.ipynb
@@ -1,236 +1,245 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Big Data & Quantum Mechanics\n",
- " \n",
- "\n",
- "## Overview of Medford Group research\n",
- "\n",
- "![MedfordImg](./medford_group_bg.png)\n",
- "\n"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## About Prof. AJ Medford\n",
- "\n",
- "- Started as a professor (and this VIP course) in Spring 2017.\n",
- "- Experience in developing and contributing to several open-source software packages (CatMAP, ElectroLens, TAPSolver, SPARC, AMPTorch)\n",
- "- Instructor for \"Data Analytics for Chemical Engineers\" and Numerical Methods.\n",
- "- Interest in applying data science techniques to problems in quantum chemistry and physics.\n"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Introductions\n",
- "\n",
- "We will go around the class and introduce ourselves to the everyone. When it is your turn to speak, tell everyone your *preferred name, major, and something **boring** about yourself*."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## How does VIP work?\n",
- "\n",
- "The premise of VIP is teams working on projects. Much like a real-world engineering team, individual members work on different aspects of the project. Team members range from sophomores through graduate students, from first-time participants to students who have been involved for four or more semesters. Some students take the course for one credit, and others take it for two credits; naturally, the bar will be higher for those taking it for two credits.\n"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## How is VIP graded?\n",
- "\n",
- "You will receive a grade for the course based on three criteria:\n",
- "\n",
- "- Documentation (33.3%): Based on biweekly updates of progress on tasks.\n",
- "- Personal Accomplishments (33.3%): Based on how well you achieve your research goals.\n",
- "- Teamwork and Participation (33.3%): Peer evaluations will be used to establish how well you work on a team.\n",
- "\n",
- "Grading process:\n",
- "- Bi-weekly on Thursday: Submit \"bi-weekly update\" and literature review to Canvas. Complete peer grading (instructions in syllabus).\n",
- "\n",
- "- Midterm: Submit personal accomplishment documentation to Canvas. Complete peer evaluations. Complete peer grading. *Note for returning students* This grade **will** be counted towards your final grade in the course.\n",
- "\n",
- "- Final: Identical to midterm. Final grade will be a weighted average of the midterm and final submissions.\n",
- "\n",
- "The following deliverables are expected at the midterm and final evaluations. Note that the \"personal accomplishment\" documentation will be graded using a combination of peer grading and instructor grading, so you will also need to complete the peer grading at each point.\n",
- "\n",
- "- Deliverables: \n",
- " - Compiled bi-weekly update\n",
- " - Personal accomplishment documentation\n",
- " - Peer grading\n",
- " - Peer evaluation\n",
- " - Demonstrated completion of all assigned training materials\n",
- "\n",
- "See [syllabus](VIP_syllabus.md) for more details."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## VIP is not like a regular course \n",
- "\n",
- "Regular courses have a clear direction:\n",
- "\n",
- "![MarioImg](./mario.png)\n",
- "\n",
- "VIP lets you choose your own adventure:\n",
- "\n",
- "![ZeldaImg](./zelda.jpeg)\n"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Group Communication:\n",
- "\n",
- "- Slack group used for all communication, join using [this link](https://join.slack.com/t/slack-ymv5720/shared_invite/zt-21v1xmbap-5FQMR2rgE0B5krwMZPFyBQ)\n",
- "\t- training: discussion related to training project.\n",
- "\t- general: channel for general discussions with the whole group.\n",
- " "
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Team Structure : New Students\n",
- "\n",
- "- Complete training materials. Consists of introductions to computational tools, density functional theory, and machine learning concepts.\n",
- "\n",
- "New students will join the \"Training\" sub-team. You will work individually to complete all the tasks, but should meet regularly with your teammates and graduate advisor to touch base on progress, ask questions, and get help with anything you are stuck on. The training materials should be completed shortly after the midterm. After the training course, you are free to join one of the sub-teams directly, or \"sample\" the available teams each week, but keep in mind that the expectation is that you join just one team by the end of the semester and begin working on a specific project. "
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Team Structure: Returning Students, OMSCS Students, post Training New Students\n",
- "\n",
- "- Returning students will join one of the \"sub-teams\" described below, or work on \"independent study\" projects.\n",
- "- OMSCS students can decide whether to complete the training exercises or join a sub-team (or both)\n",
- "- New students will be expected to join one of the sub-teams after the midterm\n",
- "\n",
- "### Sub-teams\n",
- "- There are several sub-teams, each of which will function as a small research group advised by a graduate mentor\n",
- " * **DFT Modeling of Surface Reactions** - This team will focus on the computational investigation of surface reactions using SPARC DFT code, as well as testing and improving the SPARC code suite.\n",
- " * **Machine Learning for Catalysis** - This team will focus on developing ML tools for catalysis, with a focus on LLMs for both catalysis and DFT workflow automation (ChatDFT).\n",
- " * **Machine Learning for Catalyst Discovery in Waste Sludge Chemistry** - This team will focus on utilizing ML tools to generate surface adsorption energy predictions and data analytics to provide insights for waste sludge chemistry. \n",
- " \n",
- "- Students should work on self-defined individual tasks within the scope of a sub-team\n",
- " * Each student should have a clearly-defined task that they are working independently on. This task should be self-determined and within the scope of the broader goal of the sub-team based on consultations with other sub-team members and the graduate student advisor.\n",
- " * Students may work together on a given task or direction, but should also have individual goals.\n",
- " * Students should regularly communicate with their sub-team to (1) coordinate progress on individual tasks to work toward the larger goal of the team, (2) ask for and provide assistance to other sub-team members, and (3) seek advice from and provide updates to the sub-team graduate mentor.\n",
- " * It is fully expected that the goals of research tasks change throughout the semester. The goals document can be updated at any time up to 2 weeks prior to the end of the semester. Students should revise goals as needed to ensure they are achievable.\n",
- " * Note that the achievements grade is determined by your sub-team advisor. Different advisors may have different expectations and organizational standards. You should be sure to clearly communicate with your subteam advisor to be sure that you are meeting their expectations."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Standard meeting format\n",
- "\n",
- "Subsequent meetings will follow one of three formats. We will start each meeting virtually in this Zoom room regardless of the format.\n",
- "\n",
- "* Lecture meetings: The main lecture will be used to briefly discuss logistics before breaking into sub-groups. All training students should plan on attending the training breakout session for discussion regarding that week's lecture(s), while other subgroups will attend their own breakout rooms. Sub-groups where all (or some) of the students are on campus may elect to meet in person or in a hybrid mode based on the preference of group members.\n",
- "\n",
- "\n",
- "* Update meetings: For midterm and final updates, each team will post a 10-15 minute update presentation to Canvas, and each student will be assigned 3 update presentations to watch and provide peer reviews before class. During the class time, all students are expected to be present, and we will go through each group to field questions and discuss their work. Any remaining time will be used for sub-group meetings. \n",
- "\n",
- "\n",
- "* Workshops: No official lecture topic. The entire lecture will be used as unstructured time to work on projects and interact with mentors and instructors. Training students should use this as an opportunity to join the breakout room of the subteams they are most interested in joining.\n",
- "\n",
- "**Note:** If no member of your sub-team is present for the synchronous lecture, then everyone from the group will lose 1/2 point (out of 5) from the teamwork grade. If you cannot attend please coordinate with your group and confirm with an instructor at least 24 hours ahead of time if nobody from your group will be there."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Lecture schedule and syllabus\n",
- "\n",
- "The course [syllabus](VIP_syllabus.md) is available within this book, and includes a list of all the lecture topics and dates."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Week 1 Assignment\n",
- "\n",
- "- Join the [Slack channel](https://join.slack.com/t/slack-ymv5720/shared_invite/zt-21v1xmbap-5FQMR2rgE0B5krwMZPFyBQ)\n",
- "- Start discussion for selecting your group or sub-team project\n",
- "- Install necessary software following instructions below."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Software Installation:\n",
- "\n",
- "### Install Anaconda3\n",
- "\n",
- "We'll be using Python3 and Jupyter notebooks extenstively in this class. To access this easily, we'll need to install anaconda3. To do that, go to the anaconda website below and simply follow the buttons to download and install it (ensure that you're downloading the correct version for your operating system.)\n",
- "\n",
- "https://www.anaconda.com/distribution/\n",
- "\n",
- "### Ensure you can access a linux/unix prompt\n",
- "\n",
- "#### Windows users:\n",
- "Please install the windows ubuntu subsystem using these instructions:\n",
- "\n",
- "https://docs.microsoft.com/en-us/windows/wsl/install-win10\n",
- "\n",
- "#### Mac users:\n",
- "Be sure you can open a [terminal](https://www.youtube.com/watch?v=zw7Nd67_aFw)"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.8.11"
- },
- "toc": {
- "base_numbering": 1,
- "nav_menu": {},
- "number_sections": true,
- "sideBar": true,
- "skip_h1_title": true,
- "title_cell": "Table of Contents",
- "title_sidebar": "Contents",
- "toc_cell": true,
- "toc_position": {},
- "toc_section_display": true,
- "toc_window_display": false
- }
- },
- "nbformat": 4,
- "nbformat_minor": 4
-}
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Big Data & Quantum Mechanics\n",
+ " \n",
+ "\n",
+ "## Overview of Medford Group research\n",
+ "\n",
+ "![MedfordImg](./medford_group_bg.png)\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## About Prof. AJ Medford\n",
+ "\n",
+ "- Started as a professor (and this VIP course) in Spring 2017.\n",
+ "- Experience in developing and contributing to several open-source software packages (CatMAP, ElectroLens, TAPSolver, SPARC, AMPTorch)\n",
+ "- Instructor for \"Data Analytics for Chemical Engineers\" and Numerical Methods.\n",
+ "- Interest in applying data science techniques to problems in quantum chemistry and physics.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Introductions\n",
+ "\n",
+ "We will go around the class and introduce ourselves to the everyone. When it is your turn to speak, tell everyone your *preferred name, major, and something **random** about yourself*."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## How does VIP work?\n",
+ "\n",
+ "The premise of VIP is teams working on projects. Much like a real-world engineering team, individual members work on different aspects of the project. Team members range from sophomores through graduate students, from first-time participants to students who have been involved for four or more semesters. Some students take the course for one credit, and others take it for two credits; naturally, the bar will be higher for those taking it for two credits.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## How is VIP graded?\n",
+ "\n",
+ "You will receive a grade for the course based on three criteria:\n",
+ "\n",
+ "- Documentation (33.3%): Based on biweekly updates of progress on tasks.\n",
+ "- Personal Accomplishments (33.3%): Based on how well you achieve your research goals.\n",
+ "- Teamwork and Participation (33.3%): Peer evaluations will be used to establish how well you work on a team.\n",
+ "\n",
+ "Grading process:\n",
+ "- Bi-weekly on Thursday: Submit \"bi-weekly update\" and literature review to Canvas. Complete peer grading (instructions in syllabus).\n",
+ "\n",
+ "- Midterm: Submit personal accomplishment documentation to Canvas. Complete peer evaluations. Complete peer grading. *Note for returning students* This grade **will** be counted towards your final grade in the course.\n",
+ "\n",
+ "- Final: Identical to midterm. Final grade will be a weighted average of the midterm and final submissions.\n",
+ "\n",
+ "The following deliverables are expected at the midterm and final evaluations. Note that the \"personal accomplishment\" documentation will be graded using a combination of peer grading and instructor grading, so you will also need to complete the peer grading at each point.\n",
+ "\n",
+ "- Deliverables: \n",
+ " - Compiled bi-weekly update\n",
+ " - Personal accomplishment documentation\n",
+ " - Peer grading\n",
+ " - Peer evaluation\n",
+ " - Demonstrated completion of all assigned training materials\n",
+ "\n",
+ "See [syllabus](VIP_syllabus.md) for more details."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## VIP is not like a regular course \n",
+ "\n",
+ "Regular courses have a clear direction:\n",
+ "\n",
+ "![MarioImg](./mario.png)\n",
+ "\n",
+ "VIP lets you choose your own adventure:\n",
+ "\n",
+ "![ZeldaImg](./zelda.jpeg)\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Group Communication:\n",
+ "\n",
+ "- Slack group used for all communication, join using [this link](https://join.slack.com/t/slack-ymv5720/shared_invite/zt-21v1xmbap-5FQMR2rgE0B5krwMZPFyBQ)\n",
+ "\t- training: discussion related to training project.\n",
+ "\t- general: channel for general discussions with the whole group.\n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Overarching Project: ChatDFT development\n",
+ "\n",
+ "This semester, we are starting to work on a new large-language model (LLM) based tool that we hope will make it easier for students to learn how to do DFT calculations. This is also partially educational research, and we will send out various surveys throughout the semester. The bot, named \"ChatDFT-F24\" will be accessible via Slack, and is based off of ChatGPT. This semester, all projects will involve performing DFT simulations with the aid of ChatDFT to study reproducibility in DFT and how LLMs can assist in performing scientific computing tasks. Note that all converations with ChatDFT will be recorded and may be reviewed and/or used for fine-tuning or development of future versions of ChatDFT. We also appreciate any feedback you have about ChatDFT, including best practices for prompt engineering, ideas about how to improve the architecture, or various failure modes that you experience. The tool is far from perfect, and like any LLM it should not be blindly trusted!\n",
+ "\n",
+ "All subteams will also work with the SPARC DFT code, a recent DFT package developed by Prof. Suryanarayana at Georgia Tech, designed for massively parallel calculations. This code is very powerful, but relatively new, and thus not as familiar for LLM tools. We hope that through this project we can help tailor an LLM interface that allows new users to quickly learn to use SPARC to perform reliable calculations."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Team Structure : New Students\n",
+ "\n",
+ "All new undergraduate students will automatically join the training subteam:\n",
+ "\n",
+ "* **Training (led by Logan Brabson and Sayan Bhowmik)** - All new undergraduate students must complete a training program that involves the basics of high-performance computing, common quantum-mechanical techniques such as Density Function Theory (DFT), and the development and use of machine learning techniques such as neural networks. DFT software packages are well-established, but require the use of supercomputing resources and must be converged with respect to several numerical parameters. The training will cover approximately 10 weeks and is highly represnetative of training programs for new graduate students in this field."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Team Structure: Returning Students, OMSCS Students, post Training New Students\n",
+ "\n",
+ "Returning students will join one of the \"sub-teams\" described below, and OMSCS students can decide whether to complete the training exercises or join a sub-team (or both)\n",
+ "\n",
+ "### Sub-teams\n",
+ "- There are several sub-teams, each of which will function as a small research group advised by a graduate mentor. The main tasks in each sub-team will be calculation of adsorption energies, but each team will focus on different systems and mentors may focus on different aspects (e.g. reproducibility, accuracy at different levels of theory, etc.).\n",
+ " * **Simulation of transition metal surfaces (led by Neung-Kyung Yu)** - Transition metals are some of the most common catalysts, and adsorption on transition metals has been widely studied. However, there are still open questions about the accuracy of these models since adsorption energies are difficult to measure, and the vast literature provides lots of opportunities to study reproducibility. This team will focus on calculating some well-known adsorption energies and evaluating accuracy and reproducibility.\n",
+ " * **Adsorption on electrochemical oxide surfaces (led by Kaylee Tian)** - Electrochemistry and electrocatalysis are promising sustainable alternatives for a wide range of processes including fuel production and waste treatment. However, calculating adsorption energies on oxides can be challenging due to complex electronic structure (magnetism, localized electrons) and the fact that many metal oxides are highly reactive and can change under reaction conditions. This team will focus on the influence of different atomic configurations of oxide surfaces and different DFT settings and initializations on the adsorption energies of intermediates related to electrocatalytric nutrient recovery from waste sludge.\n",
+ " * **Simulations of Nano-porous Materials (led by Lucas Timmerman)** - This team will focus on electronic structure theory (EST) calculations for zeolites and metal organic frameworks. These will primarily consist of adsorption energy calculations for materials and adsorbates of interest for sustainability applications, including direct air capture and biomass conversion. Outcomes include basic proficiency in EST calculations as well as a fundamental understanding of the chemistry and physics concepts underpinning at least one of the materials listed above.\n",
+ " \n",
+ "- Students should work on self-defined individual tasks within the scope of a sub-team\n",
+ " * Each student should have a clearly-defined task that they are working independently on. This task should be self-determined and within the scope of the broader goal of the sub-team based on consultations with other sub-team members and the graduate student advisor.\n",
+ " * Students may work together on a given task or direction, but should also have individual goals.\n",
+ " * Students should regularly communicate with their sub-team to (1) coordinate progress on individual tasks to work toward the larger goal of the team, (2) ask for and provide assistance to other sub-team members, and (3) seek advice from and provide updates to the sub-team graduate mentor.\n",
+ " * It is fully expected that the goals of research tasks change throughout the semester. The goals document can be updated at any time up to 2 weeks prior to the end of the semester. Students should revise goals as needed to ensure they are achievable.\n",
+ " * Note that the achievements grade is determined by your sub-team advisor. Different advisors may have different expectations and organizational standards. You should be sure to clearly communicate with your subteam advisor to be sure that you are meeting their expectations."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Standard meeting format\n",
+ "\n",
+ "Subsequent meetings will follow one of three formats. We will start each meeting virtually in this Zoom room regardless of the format.\n",
+ "\n",
+ "* Lecture meetings: The main lecture will be used to briefly discuss logistics before breaking into sub-groups. All training students should plan on attending the training breakout session for discussion regarding that week's lecture(s), while other subgroups will attend their own breakout rooms. Sub-groups where all (or some) of the students are on campus may elect to meet in person or in a hybrid mode based on the preference of group members.\n",
+ "\n",
+ "\n",
+ "* Update meetings: For midterm and final updates, each team will post a 10-15 minute update presentation to Canvas, and each student will be assigned 3 update presentations to watch and provide peer reviews before class. During the class time, all students are expected to be present, and we will go through each group to field questions and discuss their work. Any remaining time will be used for sub-group meetings. \n",
+ "\n",
+ "\n",
+ "* Workshops: No official lecture topic. The entire lecture will be used as unstructured time to work on projects and interact with mentors and instructors. Training students should use this as an opportunity to join the breakout room of the subteams they are most interested in joining.\n",
+ "\n",
+ "**Note:** If no member of your sub-team is present for the synchronous lecture, then everyone from the group will lose 1/2 point (out of 5) from the teamwork grade. If you cannot attend please coordinate with your group and confirm with an instructor at least 24 hours ahead of time if nobody from your group will be there."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Lecture schedule and syllabus\n",
+ "\n",
+ "The course [syllabus](VIP_syllabus.md) is available within this book, and includes a list of all the lecture topics and dates."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Week 1 Assignment\n",
+ "\n",
+ "- Join the [Slack channel](https://join.slack.com/t/slack-ymv5720/shared_invite/zt-21v1xmbap-5FQMR2rgE0B5krwMZPFyBQ)\n",
+ "- Start discussion for selecting your group or sub-team project\n",
+ "- Install necessary software following instructions below."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Software Installation:\n",
+ "\n",
+ "### Install Anaconda3\n",
+ "\n",
+ "We'll be using Python3 and Jupyter notebooks extenstively in this class. To access this easily, we'll need to install anaconda3. To do that, go to the anaconda website below and simply follow the buttons to download and install it (ensure that you're downloading the correct version for your operating system.)\n",
+ "\n",
+ "https://www.anaconda.com/distribution/\n",
+ "\n",
+ "### Ensure you can access a linux/unix prompt\n",
+ "\n",
+ "#### Windows users:\n",
+ "Please install the windows ubuntu subsystem using these instructions:\n",
+ "\n",
+ "https://docs.microsoft.com/en-us/windows/wsl/install-win10\n",
+ "\n",
+ "#### Mac users:\n",
+ "Be sure you can open a [terminal](https://www.youtube.com/watch?v=zw7Nd67_aFw)"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.10.4"
+ },
+ "toc": {
+ "base_numbering": 1,
+ "nav_menu": {},
+ "number_sections": true,
+ "sideBar": true,
+ "skip_h1_title": true,
+ "title_cell": "Table of Contents",
+ "title_sidebar": "Contents",
+ "toc_cell": true,
+ "toc_position": {},
+ "toc_section_display": true,
+ "toc_window_display": false
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/_sources/docs/VIP_syllabus.md b/_sources/docs/VIP_syllabus.md
index 67cb2ed..10633f5 100755
--- a/_sources/docs/VIP_syllabus.md
+++ b/_sources/docs/VIP_syllabus.md
@@ -68,28 +68,9 @@ expertise from computational and physical sciences, and students from
computer science, electrical engineering, industrial & systems
engineering, chemical engineering, chemistry, physics, and materials
science. The VIP course consists of sub-teams with research topics
-developed by graduate students in the Medford group:
+developed by graduate students in the Medford group. More details of
+subteams are available in the [overview lecture].(https://medford-group.github.io/training-materials/docs/VIP_Overview.html)
-- Training (led by Logan Brabson and Sayan Bhowmik): All new undergraduate students must complete a training program that
- involves the basics of high-performance computing, common quantum-mechanical techniques
- such as Density Function Theory (DFT), and the development and use of machine learning
- techniques such as neural networks. DFT software packages are well-established, but
- require the use of supercomputing resources and must be converged with respect to
- several numerical parameters. The training will cover approximately 10 weeks and is
- highly represnetative of training programs for new graduate students in this field.
-
-- Machine Learning for Catalysis (led by Lucas Timmerman): This team will focus on developing ML tools for catalysis, with a focus on large language models (LLMs) for both catalysis and DFT workflow automation (ChatDFT). Students will develop chat bots for helping new DFT users learn the basics of DFT calculations and for helping existing users improve the reproducibility of their calculations. Familiarity with machine learning and a desire to work with LLMs will be useful. This team will also work on testing models as they are implemented and will involve some DFT work.
-
-- DFT Modeling of Surface Reactions (led by Neung-Kyung Yu): This project involves using Density Functional Theory (DFT) to model and investigate surface reactions. DFT is a widely-used computational approach for simulating atomistic models. The project will employ the [SPARC code](https://www.sparc-x.com/), a recent DFT package developed by Prof. Suryanarayana at Georgia Tech, designed for massive parallel calculations. In this project, we will go beyond the scope of the DFT training materials and apply DFT to study fascinating surface reactions. Prior knowledge of the topics isn't required, but an interest in computational investigation of chemical reactions is needed as the project will involve greater complexity in both DFT and chemistry. Additionally, the project will involve testing new features in SPARC and enhancing its Python API.
-
-- Machine Learning for Catalyst Discovery in Waste Sludge Chemistry (led by Kaylee Tian): This project delves into the intersection of computational cheminformatics and data analytics. The project focuses on utilizing ML tools to generate surface adsorption energy predictions and data analytics to provide insights for waste sludge chemistry. In this project, the students will utilize existing machine learning models published by [The Open Catalyst Project](https://opencatalystproject.org/) to predict adsorption energy of potential chemicals present in a waste sludge. The Open Catalyst Project aims to use machine learning for approximating quantum mechanical simulations (density functional theory) and discovering new catalysts. Then using data analytics and visualization techniques, the students will draw meaningful insights on material's reactivity relations. The students will gain hands on experience in python as well as experience in data analytics. Students with prior experience in python programming will be prefered.
-
-
-Returning VIP students who previously started work on a project may choose to continue
-building on their existing work isntead of joining one of the above subgroups.
-If you are a returning student and are interested in an "independent study" project you should
-contact Dr. Medford as soon as possible to initiate discussions on what is within scope for
-the course and what is feasible given timelines and resources.
Course Logistics
================
@@ -103,9 +84,9 @@ submission of assignments:
assignments and peer grading.
- Slack: The group Slack channel is the preferred method of
- communication with instructors and graduate students. You are
- responsible for anything that is announced in the `vip`
- Slack channel. You can join the Slack channel via [this link]( https://join.slack.com/t/slack-ymv5720/shared_invite/zt-21v1xmbap-5FQMR2rgE0B5krwMZPFyBQ ).
+ communication with instructors and graduate students. To join the channel
+ login to the [GT Slack enterprise account](https://gatech.enterprise.slack.com/),
+ then search for the "Big Data & Quantum Mechanics (VIP)" workspace and ask to join.
Course Objectives
=================
@@ -185,9 +166,6 @@ Personal Accomplishments
Personal accomplishments will be measured by self-defined goals and will be assessed
by each student's respective sub-team mentor.
-Within the **first three weeks** of the semester students will work with their
-sub-team mentor to define midterm and
-semester goals for their specific tasks within their sub-team.
Each goal should have a deliverable
that can be unambiguously evaluated as complete or incomplete (computer
code, report, figure, etc.), and each student should submit a
@@ -251,7 +229,7 @@ assigned.
Course Format
-------------
-The course will by offered in a hybrid format. We have multiple online MS students who work in the course, so it is important to provide a mechanism for remote participation.
+The course will by offered in a primarily virtual format. We have multiple online MS students who work in the course, so it is important to provide a mechanism for remote participation.
The main lecture will take place virtually, but sub-teams can meet in person and/or use hybrid meetings. For the training group, lectures will pre-recorded and posted to Canvas, and the course time time will serve as an opportunity for questions or help with assignments (a "flipped" classroom). The project groups will use the course time to meet and discuss progress on projects.
@@ -290,6 +268,7 @@ Week 15 (11/28): Thanksgiving Break (No Class)
Week 16 (12/4): Reading Day (No Class)
+
Changes to Syllabus
===================
diff --git a/docs/VIP_Overview.html b/docs/VIP_Overview.html
index 047ee26..a37da07 100755
--- a/docs/VIP_Overview.html
+++ b/docs/VIP_Overview.html
@@ -399,6 +399,7 @@ Contents
How is VIP graded?
VIP is not like a regular course
Group Communication:
+Overarching Project: ChatDFT development
Team Structure : New Students
Team Structure: Returning Students, OMSCS Students, post Training New Students
- Sub-teams
@@ -444,7 +445,7 @@ About Prof. AJ Medford
+
+Overarching Project: ChatDFT development
+This semester, we are starting to work on a new large-language model (LLM) based tool that we hope will make it easier for students to learn how to do DFT calculations. This is also partially educational research, and we will send out various surveys throughout the semester. The bot, named “ChatDFT-F24” will be accessible via Slack, and is based off of ChatGPT. This semester, all projects will involve performing DFT simulations with the aid of ChatDFT to study reproducibility in DFT and how LLMs can assist in performing scientific computing tasks. Note that all converations with ChatDFT will be recorded and may be reviewed and/or used for fine-tuning or development of future versions of ChatDFT. We also appreciate any feedback you have about ChatDFT, including best practices for prompt engineering, ideas about how to improve the architecture, or various failure modes that you experience. The tool is far from perfect, and like any LLM it should not be blindly trusted!
+All subteams will also work with the SPARC DFT code, a recent DFT package developed by Prof. Suryanarayana at Georgia Tech, designed for massively parallel calculations. This code is very powerful, but relatively new, and thus not as familiar for LLM tools. We hope that through this project we can help tailor an LLM interface that allows new users to quickly learn to use SPARC to perform reliable calculations.
+
Team Structure : New Students
+All new undergraduate students will automatically join the training subteam:
-Complete training materials. Consists of introductions to computational tools, density functional theory, and machine learning concepts.
+Training (led by Logan Brabson and Sayan Bhowmik) - All new undergraduate students must complete a training program that involves the basics of high-performance computing, common quantum-mechanical techniques such as Density Function Theory (DFT), and the development and use of machine learning techniques such as neural networks. DFT software packages are well-established, but require the use of supercomputing resources and must be converged with respect to several numerical parameters. The training will cover approximately 10 weeks and is highly represnetative of training programs for new graduate students in this field.
-New students will join the “Training” sub-team. You will work individually to complete all the tasks, but should meet regularly with your teammates and graduate advisor to touch base on progress, ask questions, and get help with anything you are stuck on. The training materials should be completed shortly after the midterm. After the training course, you are free to join one of the sub-teams directly, or “sample” the available teams each week, but keep in mind that the expectation is that you join just one team by the end of the semester and begin working on a specific project.
Team Structure: Returning Students, OMSCS Students, post Training New Students
-
-Returning students will join one of the “sub-teams” described below, or work on “independent study” projects.
-OMSCS students can decide whether to complete the training exercises or join a sub-team (or both)
-New students will be expected to join one of the sub-teams after the midterm
-
+Returning students will join one of the “sub-teams” described below, and OMSCS students can decide whether to complete the training exercises or join a sub-team (or both)
Sub-teams
-There are several sub-teams, each of which will function as a small research group advised by a graduate mentor
+There are several sub-teams, each of which will function as a small research group advised by a graduate mentor. The main tasks in each sub-team will be calculation of adsorption energies, but each team will focus on different systems and mentors may focus on different aspects (e.g. reproducibility, accuracy at different levels of theory, etc.).
-DFT Modeling of Surface Reactions - This team will focus on the computational investigation of surface reactions using SPARC DFT code, as well as testing and improving the SPARC code suite.
-Machine Learning for Catalysis - This team will focus on developing ML tools for catalysis, with a focus on LLMs for both catalysis and DFT workflow automation (ChatDFT).
-Machine Learning for Catalyst Discovery in Waste Sludge Chemistry - This team will focus on utilizing ML tools to generate surface adsorption energy predictions and data analytics to provide insights for waste sludge chemistry.
+Simulation of transition metal surfaces (led by Neung-Kyung Yu) - Transition metals are some of the most common catalysts, and adsorption on transition metals has been widely studied. However, there are still open questions about the accuracy of these models since adsorption energies are difficult to measure, and the vast literature provides lots of opportunities to study reproducibility. This team will focus on calculating some well-known adsorption energies and evaluating accuracy and reproducibility.
+Adsorption on electrochemical oxide surfaces (led by Kaylee Tian) - Electrochemistry and electrocatalysis are promising sustainable alternatives for a wide range of processes including fuel production and waste treatment. However, calculating adsorption energies on oxides can be challenging due to complex electronic structure (magnetism, localized electrons) and the fact that many metal oxides are highly reactive and can change under reaction conditions. This team will focus on the influence of different atomic configurations of oxide surfaces and different DFT settings and initializations on the adsorption energies of intermediates related to electrocatalytric nutrient recovery from waste sludge.
+Simulations of Nano-porous Materials (led by Lucas Timmerman) - This team will focus on electronic structure theory (EST) calculations for zeolites and metal organic frameworks. These will primarily consist of adsorption energy calculations for materials and adsorbates of interest for sustainability applications, including direct air capture and biomass conversion. Outcomes include basic proficiency in EST calculations as well as a fundamental understanding of the chemistry and physics concepts underpinning at least one of the materials listed above.
Students should work on self-defined individual tasks within the scope of a sub-team
@@ -647,6 +649,7 @@
- VIP is not like a regular course
- Group Communication:
+- Overarching Project: ChatDFT development
- Team Structure : New Students
- Team Structure: Returning Students, OMSCS Students, post Training New Students
- Sub-teams
diff --git a/docs/VIP_syllabus.html b/docs/VIP_syllabus.html
index f267d98..1923fae 100755
--- a/docs/VIP_syllabus.html
+++ b/docs/VIP_syllabus.html
@@ -474,24 +474,8 @@ About Big Data and Quantum Mechanics
-Returning VIP students who previously started work on a project may choose to continue
-building on their existing work isntead of joining one of the above subgroups.
-If you are a returning student and are interested in an “independent study” project you should
-contact Dr. Medford as soon as possible to initiate discussions on what is within scope for
-the course and what is feasible given timelines and resources.
+developed by graduate students in the Medford group. More details of
+subteams are available in the [overview lecture].(https://medford-group.github.io/training-materials/docs/VIP_Overview.html)
@@ -503,9 +487,9 @@ Course Logisticsthis link.
+communication with instructors and graduate students. To join the channel
+login to the GT Slack enterprise account,
+then search for the “Big Data & Quantum Mechanics (VIP)” workspace and ask to join.
@@ -568,9 +552,6 @@ Documentation
Personal accomplishments will be measured by self-defined goals and will be assessed
by each student’s respective sub-team mentor.
-Within the first three weeks of the semester students will work with their
-sub-team mentor to define midterm and
-semester goals for their specific tasks within their sub-team.
Each goal should have a deliverable
that can be unambiguously evaluated as complete or incomplete (computer
code, report, figure, etc.), and each student should submit a
@@ -627,7 +608,7 @@
Teamwork and Interaction
diff --git a/searchindex.js b/searchindex.js
index 979943a..66c5e6d 100755
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["docs/Adsorption_energy_calculation_in_QE", "docs/Adsorption_energy_calculation_in_SPARC", "docs/Appendix", "docs/Applications_of_Density_Functional_Theory", "docs/Basic_Python_Tools", "docs/Convergence_of_Computational_Parameters", "docs/Create_DFT_Environments", "docs/Exercises_ASE_calcs", "docs/Exercises_ASE_intro", "docs/Exercises_DFT_applications", "docs/Exercises_DFT_basics", "docs/Exercises_ML_basics_Pt1", "docs/Exercises_ML_basics_Pt2", "docs/Exercises_convergence", "docs/Exercises_linux", "docs/Exercises_python", "docs/Gas_formation_energy_calculation_in_SPARC", "docs/Goals", "docs/Intro_to_ASE_Building_Structures", "docs/Intro_to_ASE_Calculators", "docs/Intro_to_Classification_and_Generative_Models", "docs/Intro_to_Density_Functional_Theory", "docs/Intro_to_EST", "docs/Intro_to_Linux_HPC", "docs/Intro_to_Regression_and_High_Dimensional_Data", "docs/Introduction_to_ML_Potentials", "docs/Introduction_to_Machine_Learning", "docs/Introduction_to_Neural_Network_Potentials", "docs/Introduction_to_Python_programming", "docs/Introduction_to_numpy", "docs/Introduction_to_plotting_in_Python", "docs/Introduction_to_scipy", "docs/Literature_Searches", "docs/ML_1_1_Non-parametric_Models", "docs/ML_1_2_Complexity_Optimization", "docs/ML_1_3_High_Dimensional_Data", "docs/ML_1_4_Dimensionality_Reduction", "docs/ML_2_1_Classification_Basics", "docs/ML_2_2_Generalized_Linear_Models", "docs/ML_2_3_Alternate_Classification_Models", "docs/ML_2_4_Clustering", "docs/ML_2_5_Generative_Models", "docs/Machine_Learning_Concepts_and_Tools", "docs/Machine_Learning_Continued", "docs/Manipulating_Atoms_in_Python", "docs/Nuts_and_Bolts_of_DFT_Calculations", "docs/Referencing_Binding_Energies", "docs/Running_Density_Funtional_Theory_on_PACE", "docs/Running_QE_on_PACE", "docs/Running_SPARC_on_PACE", "docs/Training_Neural_Network_Potentials_with_JAX", "docs/VIP_Info", "docs/VIP_Overview", "docs/VIP_syllabus", "docs/index", "docs/new/Adsorption_energy_calculation_in_QE", "docs/new/Adsorption_energy_calculation_in_SPARC", "docs/new/Running_QE_on_PACE", "docs/old/Adsorption_Energy", "docs/old/Python_Basics", "docs/old/Running_DFT_on_PACE", "docs/old/Running_SPARC"], "filenames": ["docs\\Adsorption_energy_calculation_in_QE.ipynb", "docs\\Adsorption_energy_calculation_in_SPARC.ipynb", "docs\\Appendix.md", "docs\\Applications_of_Density_Functional_Theory.md", "docs\\Basic_Python_Tools.md", "docs\\Convergence_of_Computational_Parameters.ipynb", "docs\\Create_DFT_Environments.ipynb", "docs\\Exercises_ASE_calcs.ipynb", "docs\\Exercises_ASE_intro.ipynb", "docs\\Exercises_DFT_applications.ipynb", "docs\\Exercises_DFT_basics.ipynb", "docs\\Exercises_ML_basics_Pt1.ipynb", "docs\\Exercises_ML_basics_Pt2.ipynb", "docs\\Exercises_convergence.ipynb", "docs\\Exercises_linux.ipynb", "docs\\Exercises_python.ipynb", "docs\\Gas_formation_energy_calculation_in_SPARC.ipynb", "docs\\Goals.md", "docs\\Intro_to_ASE_Building_Structures.ipynb", "docs\\Intro_to_ASE_Calculators.ipynb", "docs\\Intro_to_Classification_and_Generative_Models.md", "docs\\Intro_to_Density_Functional_Theory.ipynb", "docs\\Intro_to_EST.md", "docs\\Intro_to_Linux_HPC.md", "docs\\Intro_to_Regression_and_High_Dimensional_Data.md", "docs\\Introduction_to_ML_Potentials.ipynb", "docs\\Introduction_to_Machine_Learning.ipynb", "docs\\Introduction_to_Neural_Network_Potentials.ipynb", "docs\\Introduction_to_Python_programming.ipynb", "docs\\Introduction_to_numpy.ipynb", "docs\\Introduction_to_plotting_in_Python.ipynb", "docs\\Introduction_to_scipy.ipynb", "docs\\Literature_Searches.ipynb", "docs\\ML_1_1_Non-parametric_Models.ipynb", "docs\\ML_1_2_Complexity_Optimization.ipynb", "docs\\ML_1_3_High_Dimensional_Data.ipynb", "docs\\ML_1_4_Dimensionality_Reduction.ipynb", "docs\\ML_2_1_Classification_Basics.ipynb", "docs\\ML_2_2_Generalized_Linear_Models.ipynb", "docs\\ML_2_3_Alternate_Classification_Models.ipynb", "docs\\ML_2_4_Clustering.ipynb", "docs\\ML_2_5_Generative_Models.ipynb", "docs\\Machine_Learning_Concepts_and_Tools.ipynb", "docs\\Machine_Learning_Continued.ipynb", "docs\\Manipulating_Atoms_in_Python.md", "docs\\Nuts_and_Bolts_of_DFT_Calculations.md", "docs\\Referencing_Binding_Energies.ipynb", "docs\\Running_Density_Funtional_Theory_on_PACE.md", "docs\\Running_QE_on_PACE.ipynb", "docs\\Running_SPARC_on_PACE.ipynb", "docs\\Training_Neural_Network_Potentials_with_JAX.ipynb", "docs\\VIP_Info.md", "docs\\VIP_Overview.ipynb", "docs\\VIP_syllabus.md", "docs\\index.md", "docs\\new\\Adsorption_energy_calculation_in_QE.ipynb", "docs\\new\\Adsorption_energy_calculation_in_SPARC.ipynb", "docs\\new\\Running_QE_on_PACE.ipynb", "docs\\old\\Adsorption_Energy.ipynb", "docs\\old\\Python_Basics.ipynb", "docs\\old\\Running_DFT_on_PACE.ipynb", "docs\\old\\Running_SPARC.ipynb"], "titles": ["5.2. Adsorption energy calculation using DFT", "5.3. Adsorption energy from DFT", "Appendix", "5. Applications of Density Functional Theory", "1. Introduction to Basic Python Tools", "Convergence of Computational Parameters", "Create DFT Environments", "2.5. Exercises", "2.4. Exercises", "5.4. Exercises", "Exercises", "6.6. Exercises", "7.7. Exercises", "Exercises", "3.3. Exercises", "1.6. Exercises", "Gas formation energy calculation using DFT", "Development Goals", "2.2. Intro to Building Structures with ASE", "2.3. Intro to ASE Calculators", "7. Intro to Classification and Generative Models", "4. Introduction to Density Functional Theory", "Introduction to Electronic Structure Theory", "3. Introduction to Linux and High-Performance Computing", "6. Intro to Regression and High Dimensional Data", "Introduction to ML Potentials", "Introduction to Machine Learning", "Introduction to Neural Network Potentials (NNP)", "1.2. Introduction to Python programming", "1.3. Numpy - multidimensional data arrays", "1.5. matplotlib - Plotting in Python", "1.4. SciPy - Library of scientific algorithms for Python", "Basics of Searching and Reading Scientific Literature", "6.2. Non-Parametric Models", "6.3. Complexity Optimization", "6.4. High Dimensional Data", "6.5. Dimensionality Reduction", "7.2. Classification Overview", "7.3. Generalized Linear Models", "7.4. Alternate classification methods", "7.5. Clustering", "7.6. Generative Models", "Machine Learning Concepts and Tools", "Machine Learning Continued", "2. Introduction to Manipulating Atoms in Python", "Nuts and Bolts of DFT Calculations", "Referencing Binding Energies", "Running Density Functional Theory on PACE", "Running QE on PACE", "Running a simple DFT calculation on PACE Supercomputer Cluster", "Training NNP", "VIP Materials", "Big Data & Quantum Mechanics", "Course Description", "Medford Group Graduate Training", "Adsorption energy calculation using DFT", "Adsorption energy calculation using DFT", "Running a simple DFT calculation on PACE Supercomputer Cluster", "Adsorption Energy", "Introduction to Python programming", "Running DFT on PACE", "Running SPARC"], "terms": {"refer": [0, 1, 4, 6, 10, 16, 28, 30, 31, 35, 37, 46, 48, 55, 56, 57, 58, 59, 60], "chang": [0, 1, 10, 19, 23, 33, 34, 36, 37, 39, 40, 41, 48, 49, 52, 55, 56, 57, 58, 60], "when": [0, 1, 4, 5, 8, 9, 10, 12, 18, 21, 23, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 40, 48, 49, 50, 52, 55, 56, 57, 58, 59, 60], "an": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 23, 28, 29, 30, 33, 34, 35, 37, 38, 39, 40, 41, 44, 46, 48, 49, 52, 53, 55, 56, 57, 58, 60, 61], "adsorb": [0, 1, 9, 18, 55, 56, 58], "attach": [0, 1, 6, 7, 11, 16, 18, 19, 48, 55, 56, 57, 58, 60], "surfac": [0, 1, 9, 10, 13, 16, 19, 27, 32, 46, 49, 50, 52, 53, 61], "delta": [0, 1, 16, 35, 40, 46, 55, 56, 58], "e_": [0, 1, 16, 19, 21, 27, 46, 55, 56, 58], "can": [0, 1, 6, 8, 9, 10, 11, 12, 14, 16, 18, 19, 21, 23, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 45, 46, 48, 49, 50, 53, 55, 56, 57, 58, 59, 60, 61], "obtain": [0, 1, 16, 33, 36, 46, 48, 55, 56, 57, 58, 60], "differ": [0, 1, 5, 9, 11, 13, 16, 18, 19, 21, 27, 28, 29, 30, 32, 33, 34, 35, 38, 39, 40, 41, 46, 47, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 60], "between": [0, 1, 5, 7, 15, 16, 19, 28, 29, 32, 33, 34, 35, 36, 38, 39, 40, 41, 46, 47, 53, 55, 56, 58, 59], "sum": [0, 1, 7, 28, 33, 34, 36, 37, 38, 40, 55, 56, 58, 59], "each": [0, 1, 8, 9, 12, 14, 15, 18, 19, 28, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 46, 47, 48, 49, 52, 53, 55, 56, 57, 58, 59, 60, 61], "structur": [0, 1, 6, 7, 8, 9, 10, 13, 16, 19, 20, 28, 36, 38, 39, 40, 47, 49, 50, 55, 56, 58, 59, 61], "compos": [0, 1, 41, 55, 56, 58], "ad": [0, 1, 11, 18, 30, 32, 34, 35, 36, 38, 40, 41, 46, 49, 55, 56, 58, 61], "slab": [0, 1, 18, 55, 56, 58], "consid": [0, 1, 9, 15, 21, 27, 28, 29, 33, 34, 35, 36, 40, 46, 59], "o": [0, 1, 6, 7, 9, 16, 18, 19, 27, 30, 33, 34, 40, 46, 48, 49, 55, 56, 57, 58, 60], "2": [0, 1, 5, 6, 16, 18, 21, 24, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 46, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61], "platinum": [0, 1, 49, 61], "pt": [0, 1, 7, 9, 40, 46], "constrain": [0, 1, 32], "atom": [0, 1, 3, 5, 6, 7, 8, 9, 10, 13, 16, 19, 21, 27, 35, 47, 48, 49, 50, 51, 57, 60, 61], "posit": [0, 1, 9, 10, 15, 16, 18, 19, 28, 30, 32, 33, 35, 41, 46, 48, 49, 50, 57, 59, 60], "For": [0, 1, 5, 11, 12, 13, 16, 18, 21, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 48, 49, 52, 53, 55, 56, 57, 58, 59, 60, 61], "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 40, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "situat": [0, 1, 55, 56, 58], "we": [0, 1, 3, 4, 5, 9, 10, 13, 16, 18, 19, 20, 21, 23, 24, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 39, 41, 44, 45, 46, 47, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 60, 61], "first": [0, 1, 8, 9, 11, 14, 15, 18, 24, 27, 28, 31, 32, 34, 35, 36, 37, 38, 40, 41, 45, 46, 48, 49, 52, 53, 55, 56, 57, 58, 59, 60], "build": [0, 1, 6, 9, 10, 12, 13, 16, 19, 31, 40, 46, 48, 49, 50, 53, 57, 59, 60, 61], "object": [0, 1, 6, 7, 8, 10, 16, 19, 28, 31, 36, 37, 38, 39, 48, 55, 56, 57, 58, 60], "oxygen": [0, 1, 5, 9, 21, 55, 56, 58], "molecul": [0, 1, 6, 9, 10, 13, 16, 19, 21, 33, 46, 48, 49, 50, 55, 56, 57, 58, 60, 61], "In": [0, 1, 5, 7, 9, 14, 15, 16, 18, 19, 20, 21, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 49, 53, 55, 56, 57, 58, 59, 60, 61], "follow": [0, 1, 5, 6, 7, 10, 15, 16, 18, 21, 27, 28, 29, 30, 33, 34, 37, 38, 39, 40, 41, 46, 48, 49, 52, 53, 55, 56, 57, 58, 59, 60, 61], "script": [0, 1, 6, 14, 15, 16, 27, 48, 49, 50, 55, 56, 57, 58, 60, 61], "creat": [0, 1, 10, 11, 12, 14, 15, 18, 23, 30, 31, 33, 34, 35, 36, 37, 38, 40, 49, 50, 55, 56, 58, 61], "The": [0, 1, 5, 6, 16, 19, 21, 22, 28, 29, 31, 32, 33, 34, 36, 37, 39, 40, 41, 44, 45, 46, 48, 49, 52, 53, 54, 55, 56, 57, 58, 60, 61], "bottom": [0, 1, 18, 30, 39, 55, 56, 58, 59], "two": [0, 1, 11, 14, 15, 16, 18, 19, 20, 21, 24, 27, 28, 29, 30, 31, 32, 33, 35, 36, 38, 40, 41, 47, 48, 49, 52, 53, 55, 56, 57, 58, 59, 60], "layer": [0, 1, 18, 36, 38, 55, 56, 58], "z": [0, 1, 18, 28, 29, 30, 35, 37, 38, 39, 40, 49, 55, 56, 58, 59, 61], "direct": [0, 1, 5, 8, 18, 28, 36, 46, 48, 52, 55, 56, 57, 58, 59, 60], "ar": [0, 1, 3, 4, 5, 7, 9, 11, 12, 15, 16, 18, 19, 20, 21, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 35, 38, 40, 41, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "fix": [0, 1, 5, 9, 18, 33, 44, 50, 55, 56, 58], "exact": [0, 1, 21, 28, 36, 55, 56, 58, 59], "divid": [0, 1, 15, 27, 29, 37, 55, 56, 58, 59], "determin": [0, 1, 9, 13, 28, 29, 33, 34, 35, 36, 37, 38, 39, 40, 41, 52, 53, 55, 56, 58, 59], "visual": [0, 1, 7, 12, 14, 18, 19, 23, 24, 32, 35, 38, 39, 40, 41, 48, 53, 55, 56, 57, 58, 60], "input": [0, 1, 3, 7, 11, 18, 27, 28, 29, 33, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 53, 55, 56, 57, 58, 59, 60, 61], "traj": [0, 1, 6, 7, 48, 50, 55, 56, 57, 58, 60], "file": [0, 1, 6, 7, 8, 11, 14, 15, 16, 18, 28, 30, 31, 32, 47, 48, 49, 50, 53, 55, 56, 57, 58, 60, 61], "ase": [0, 1, 6, 7, 9, 10, 13, 16, 18, 19, 48, 49, 55, 56, 57, 58, 60, 61], "gui": [0, 1, 55, 56, 58], "command": [0, 1, 6, 14, 18, 48, 49, 55, 56, 57, 58, 60, 61], "By": [0, 1, 3, 35, 38, 40, 48, 53, 55, 56, 57, 58, 60], "click": [0, 1, 55, 56, 58], "pop": [0, 1, 18, 28, 55, 56, 58, 59], "out": [0, 1, 14, 15, 16, 19, 33, 34, 35, 38, 40, 41, 44, 48, 49, 52, 55, 56, 57, 58, 60, 61], "window": [0, 1, 18, 23, 40, 55, 56, 58], "within": [0, 1, 6, 27, 37, 40, 48, 52, 53, 55, 56, 57, 58, 60], "cell": [0, 1, 5, 8, 10, 13, 18, 40, 49, 50, 55, 56, 58, 61], "displai": [0, 1, 15, 23, 39, 46, 55, 56, 58, 59], "after": [0, 1, 6, 7, 16, 18, 19, 28, 35, 40, 41, 45, 48, 49, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61], "appli": [0, 1, 11, 27, 29, 34, 35, 36, 37, 38, 40, 46, 52, 53, 54, 55, 56, 58, 59], "constraint": [0, 1, 9, 13, 33, 36, 38, 55, 56, 58], "system": [0, 1, 5, 12, 13, 18, 19, 21, 23, 27, 28, 32, 46, 48, 49, 50, 52, 53, 55, 56, 57, 58, 60], "you": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 23, 28, 29, 30, 31, 33, 34, 35, 36, 37, 40, 41, 44, 45, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59, 60, 61], "should": [0, 1, 3, 4, 5, 6, 14, 15, 18, 21, 24, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 44, 45, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 60, 61], "abl": [0, 1, 3, 18, 32, 38, 39, 40, 55, 56, 58], "see": [0, 1, 9, 18, 19, 23, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 49, 52, 53, 55, 56, 58, 59, 61], "have": [0, 1, 4, 5, 6, 8, 12, 16, 18, 19, 21, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 45, 46, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 60, 61], "cross": [0, 1, 11, 24, 32, 34, 38, 55, 56, 58], "them": [0, 1, 4, 7, 18, 19, 23, 28, 29, 30, 32, 33, 34, 36, 38, 39, 40, 44, 53, 55, 56, 58, 59], "indic": [0, 1, 18, 28, 29, 36, 39, 49, 55, 56, 58, 59], "thei": [0, 1, 18, 19, 21, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 44, 45, 46, 52, 53, 55, 56, 58, 59], "anoth": [0, 1, 27, 28, 30, 33, 34, 35, 36, 37, 40, 55, 56, 58, 59], "wai": [0, 1, 4, 5, 18, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 53, 55, 56, 58, 59], "check": [0, 1, 6, 9, 14, 15, 28, 29, 31, 34, 35, 39, 40, 41, 48, 49, 50, 55, 56, 57, 58, 59, 60, 61], "manipul": [0, 1, 4, 10, 18, 51, 55, 56, 58], "poscar": [0, 1, 55, 56, 58], "where": [0, 1, 12, 18, 23, 27, 28, 31, 33, 34, 35, 36, 38, 39, 40, 41, 46, 48, 49, 52, 55, 56, 57, 58, 59, 60, 61], "list": [0, 1, 4, 6, 16, 18, 19, 23, 29, 30, 32, 34, 36, 39, 40, 46, 48, 49, 50, 52, 55, 56, 57, 58, 60], "all": [0, 1, 5, 6, 7, 8, 11, 12, 14, 18, 23, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61], "from": [0, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 27, 29, 30, 31, 33, 34, 35, 37, 39, 41, 44, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61], "import": [0, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 23, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 45, 46, 48, 50, 53, 55, 56, 57, 58, 60], "bulk": [0, 1, 9, 10, 13, 16, 49, 55, 56, 58, 61], "add_adsorb": [0, 1, 9, 10, 13, 18, 55, 56, 58], "fixatom": [0, 1, 9, 13, 18, 55, 56, 58], "io": [0, 1, 6, 7, 8, 9, 10, 13, 16, 18, 30, 31, 39, 48, 50, 55, 56, 57, 58, 59, 60], "read": [0, 1, 7, 8, 9, 10, 13, 15, 16, 18, 29, 31, 35, 48, 50, 53, 55, 56, 57, 58, 60], "miller_indic": [0, 1, 55, 56, 58], "1": [0, 1, 5, 6, 16, 18, 19, 21, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 46, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59, 60, 61], "4": [0, 1, 5, 6, 10, 16, 18, 19, 21, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 49, 50, 51, 53, 55, 57, 58, 59, 60], "vacuum": [0, 1, 6, 18, 48, 50, 55, 56, 57, 58, 60], "10": [0, 1, 6, 11, 12, 15, 16, 18, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 40, 41, 46, 48, 50, 52, 53, 55, 56, 57, 58, 59, 60], "write": [0, 1, 6, 7, 9, 10, 14, 15, 16, 18, 23, 29, 32, 33, 37, 38, 40, 41, 48, 49, 55, 56, 57, 58, 59, 60, 61], "librari": [0, 1, 6, 12, 28, 29, 32, 35, 55, 56, 58], "data": [0, 1, 4, 6, 8, 11, 12, 15, 16, 18, 20, 23, 28, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 46, 48, 49, 50, 51, 55, 56, 57, 58, 60, 61], "pubchem": [0, 1, 18, 55, 56, 58], "pubchem_atoms_search": [0, 1, 18, 55, 56, 58], "numpi": [0, 1, 6, 9, 12, 13, 15, 16, 18, 19, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 48, 50, 55, 56, 57, 58, 60], "np": [0, 1, 6, 7, 9, 12, 13, 15, 16, 19, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 50, 55, 56, 57, 58, 59, 60, 61], "shutil": [0, 1, 55, 56, 58], "copi": [0, 1, 19, 28, 35, 40, 41, 49, 53, 55, 56, 58, 61], "os": [0, 1, 6, 7, 9, 10, 13, 15, 16, 23, 55, 56, 58], "o2": [0, 1, 6, 16, 18, 19, 55, 56, 58], "max_po": [0, 1, 55, 56, 58], "amax": [0, 1, 55, 56, 58], "get_posit": [0, 1, 50, 55, 56, 58], "axi": [0, 1, 5, 12, 15, 18, 29, 35, 36, 40, 41, 55, 56, 58], "0": [0, 1, 5, 7, 11, 12, 13, 15, 16, 18, 19, 21, 27, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40, 46, 48, 49, 50, 53, 55, 56, 57, 58, 59, 60, 61], "set_cel": [0, 1, 6, 16, 18, 48, 50, 55, 56, 57, 58, 60], "arrai": [0, 1, 16, 17, 18, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 50, 55, 56, 58], "center": [0, 1, 6, 11, 16, 18, 35, 37, 38, 39, 40, 48, 49, 55, 56, 57, 58, 60, 61], "height": [0, 1, 30, 40, 41, 55, 56, 58, 59], "5": [0, 1, 5, 6, 7, 11, 12, 14, 16, 18, 19, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 46, 49, 50, 51, 52, 53, 55, 56, 58, 59, 61], "3": [0, 1, 5, 6, 7, 16, 18, 19, 21, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61], "c": [0, 1, 7, 9, 11, 12, 18, 23, 27, 28, 29, 35, 36, 37, 39, 40, 41, 46, 47, 53, 55, 56, 58, 59], "index": [0, 1, 15, 18, 27, 28, 30, 31, 35, 36, 39, 40, 41, 46, 50, 55, 56, 58], "14": [0, 1, 13, 18, 27, 28, 29, 30, 35, 36, 39, 46, 50, 53, 55, 56, 58, 59], "set_constraint": [0, 1, 18, 55, 56, 58], "slab_ad": [0, 1, 55, 56, 58], "defin": [0, 1, 5, 7, 16, 19, 21, 28, 29, 30, 31, 33, 34, 36, 38, 40, 41, 46, 48, 52, 53, 55, 56, 57, 58, 59, 60], "sparc": [0, 3, 5, 9, 10, 13, 44, 45, 47, 48, 52, 53, 57, 60], "so": [0, 1, 5, 7, 16, 18, 19, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 47, 48, 52, 53, 55, 56, 57, 58, 59, 60], "know": [0, 1, 5, 16, 21, 28, 33, 34, 35, 37, 39, 40, 41, 48, 49, 55, 56, 57, 58, 59, 60], "how": [0, 1, 4, 9, 10, 11, 12, 16, 18, 19, 21, 28, 29, 30, 31, 33, 34, 35, 37, 39, 41, 48, 49, 55, 56, 57, 58, 59, 60, 61], "get": [0, 1, 6, 10, 16, 18, 21, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 44, 47, 48, 50, 52, 55, 56, 57, 58, 59, 60], "run": [0, 1, 3, 5, 6, 14, 15, 16, 18, 19, 40, 55, 56, 58], "potenti": [0, 1, 6, 7, 10, 16, 19, 21, 40, 48, 49, 50, 53, 55, 56, 57, 58, 60, 61], "method": [0, 1, 5, 12, 16, 18, 19, 27, 28, 29, 30, 31, 32, 33, 36, 37, 38, 40, 41, 46, 47, 48, 52, 53, 55, 56, 57, 58, 59, 60], "get_potential_energi": [0, 1, 6, 16, 19, 48, 49, 50, 55, 56, 57, 58, 60, 61], "result": [0, 1, 3, 7, 9, 10, 12, 14, 15, 16, 27, 28, 32, 33, 34, 37, 38, 40, 41, 45, 47, 48, 50, 53, 54, 55, 56, 57, 58, 59, 60], "store": [0, 1, 16, 18, 19, 29, 31, 32, 36, 55, 56, 58, 59], "text": [0, 1, 11, 16, 27, 33, 38, 49, 53, 55, 56, 58], "e": [0, 1, 6, 9, 10, 15, 16, 21, 23, 28, 31, 33, 36, 37, 38, 39, 40, 44, 46, 48, 49, 53, 55, 56, 57, 58, 59, 60], "g": [0, 1, 6, 11, 16, 23, 27, 28, 30, 31, 33, 36, 37, 38, 39, 40, 46, 49, 50, 53, 55, 56, 58, 59], "txt": [0, 1, 16, 23, 55, 56, 58], "detail": [0, 1, 3, 5, 16, 28, 30, 31, 32, 33, 34, 36, 39, 40, 44, 45, 47, 48, 50, 52, 53, 55, 56, 57, 58, 59, 60], "submit": [0, 1, 14, 16, 44, 47, 48, 52, 53, 55, 56, 57, 58, 60], "seen": [0, 1, 16, 35, 37, 38, 41, 55, 56, 58], "lectur": [0, 1, 16, 27, 28, 30, 31, 33, 34, 37, 38, 39, 40, 48, 49, 50, 53, 54, 55, 57, 58, 59, 60, 61], "running_sparc_on_q": 0, "clean": [0, 1, 49, 55, 56, 58, 61], "optim": [0, 1, 3, 6, 7, 9, 13, 16, 18, 19, 30, 32, 33, 36, 37, 39, 40, 41, 47, 48, 49, 50, 55, 56, 57, 58, 60], "bfgslinesearch": [0, 1, 6, 7, 16, 19, 48, 55, 56, 57, 58, 60], "espresso": [0, 5, 19, 47, 50, 55, 58], "iespresso": [0, 6, 48, 55, 57, 58, 60], "imag": [0, 1, 6, 10, 12, 16, 18, 28, 31, 33, 35, 36, 39, 48, 50, 55, 56, 57, 58, 60], "setup": [0, 1, 49, 55, 56, 58], "paramet": [0, 1, 3, 9, 10, 12, 13, 16, 28, 33, 36, 38, 39, 40, 41, 45, 48, 49, 50, 53, 55, 56, 57, 58, 59, 60, 61], "dict": [0, 1, 16, 28, 30, 49, 55, 56, 58, 59], "xc": [0, 6, 19, 21, 48, 50, 55, 57, 58, 60], "beef": [0, 6, 48, 55, 57, 58, 60], "vdw": [0, 6, 46, 48, 55, 57, 58, 60], "kpt": [0, 1, 19, 45, 48, 49, 50, 55, 56, 57, 58, 60], "onli": [0, 1, 11, 12, 14, 16, 18, 28, 29, 31, 32, 34, 35, 36, 37, 38, 40, 41, 46, 49, 51, 53, 55, 56, 58, 59], "need": [0, 1, 4, 5, 6, 10, 11, 14, 16, 18, 19, 21, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 49, 52, 53, 55, 57, 58, 59, 60, 61], "pw": [0, 6, 48, 55, 57, 58, 60], "400": [0, 50, 55, 58], "dw": [0, 55, 58], "4000": [0, 55, 58], "spinpol": [0, 48, 55, 57, 58, 60], "fals": [0, 1, 18, 28, 29, 31, 32, 34, 35, 40, 41, 46, 48, 50, 55, 57, 58, 59, 60], "converg": [0, 1, 13, 15, 16, 40, 45, 47, 48, 49, 53, 55, 56, 57, 58, 60, 61], "1e": [0, 1, 5, 16, 28, 34, 38, 49, 50, 55, 56, 58, 59, 61], "6": [0, 1, 5, 6, 7, 12, 15, 18, 28, 29, 30, 34, 35, 36, 37, 38, 39, 40, 46, 48, 50, 51, 53, 55, 57, 58, 59, 60, 61], "mix": [0, 40, 48, 49, 53, 55, 57, 58, 60, 61], "05": [0, 19, 30, 40, 48, 49, 50, 55, 56, 57, 58, 59, 60], "maxstep": [0, 48, 55, 57, 58, 60], "1000": [0, 13, 29, 31, 33, 36, 38, 41, 50, 55, 58, 59], "diag": [0, 48, 55, 57, 58, 60], "david": [0, 5, 48, 55, 57, 58, 60], "startingwfc": [0, 55, 58], "smear": [0, 19, 48, 55, 57, 58, 60], "fd": [0, 5, 55, 58], "fermi": [0, 55, 58], "dirac": [0, 22, 55, 58], "electron": [0, 5, 21, 27, 47, 48, 49, 55, 57, 58, 60, 61], "sigma": [0, 11, 19, 33, 34, 38, 40, 41, 48, 50, 55, 57, 58, 60], "width": [0, 11, 30, 33, 34, 38, 41, 55, 58, 59], "dipol": [0, 48, 55, 57, 58, 60], "statu": [0, 14, 38, 48, 55, 57, 58, 60], "true": [0, 1, 5, 10, 12, 18, 28, 29, 31, 35, 36, 37, 38, 39, 40, 41, 48, 50, 55, 57, 58, 59, 60], "correct": [0, 1, 6, 10, 16, 21, 37, 39, 40, 46, 48, 49, 52, 55, 56, 57, 58, 60], "turn": [0, 20, 21, 29, 33, 34, 37, 38, 52, 55, 58, 59], "outdir": [0, 55, 58], "esp": [0, 48, 55, 57, 58, 60], "log": [0, 5, 6, 7, 14, 28, 29, 30, 34, 38, 40, 41, 48, 49, 50, 55, 56, 57, 58, 59, 60], "calc": [0, 1, 6, 16, 19, 48, 49, 55, 56, 57, 58, 60, 61], "set_calcul": [0, 1, 16, 19, 49, 50, 55, 56, 58, 61], "relax": [0, 1, 3, 7, 9, 10, 16, 18, 19, 48, 49, 55, 56, 57, 58, 60], "trajectori": [0, 6, 7, 48, 50, 55, 56, 57, 58, 60], "opt": [0, 7, 18, 28, 29, 37, 39, 55, 56, 58, 59], "logfil": [0, 6, 48, 55, 56, 57, 58, 60], "restart": [0, 55, 56, 58], "pckl": [0, 55, 56, 58], "fmax": [0, 6, 19, 48, 55, 56, 57, 58, 60], "eng": [0, 1, 16, 19, 55, 56, 58], "open": [0, 1, 16, 23, 37, 44, 47, 49, 52, 53, 55, 56, 58], "slab_energi": [0, 1, 55, 56, 58], "w": [0, 1, 6, 7, 16, 32, 33, 34, 37, 38, 40, 41, 53, 55, 56, 58], "f": [0, 1, 7, 10, 16, 18, 23, 28, 29, 31, 33, 34, 37, 46, 55, 56, 58, 59], "str": [0, 1, 11, 12, 16, 28, 33, 36, 55, 56, 58, 59], "close": [0, 6, 16, 28, 33, 35, 37, 38, 40, 48, 55, 57, 58, 59, 60], "slab_ads_energi": [0, 1, 55, 56, 58], "ga": [0, 1, 7, 8, 10, 21, 55, 56, 58], "o2_energi": [0, 1, 16, 55, 56, 58], "analysi": [0, 1, 11, 32, 35, 40, 46, 53, 55, 56, 58], "def": [0, 1, 6, 10, 11, 12, 15, 16, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 55, 56, 58, 59], "readfil": [0, 1, 10, 16, 55, 56, 58], "path": [0, 1, 6, 10, 14, 16, 23, 44, 48, 49, 55, 56, 57, 58, 60, 61], "r": [0, 1, 11, 16, 19, 21, 23, 27, 28, 29, 30, 31, 33, 34, 39, 40, 46, 55, 56, 58, 59], "content": [0, 1, 10, 16, 51, 55, 56, 58], "readlin": [0, 1, 16, 55, 56, 58], "return": [0, 1, 6, 10, 12, 15, 16, 19, 21, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 51, 53, 55, 56, 58, 59], "read_energi": [0, 1, 10, 16, 55, 56, 58], "float": [0, 1, 12, 16, 28, 35, 40, 41, 55, 56, 58, 59], "e_slab": [0, 1, 55, 56, 58], "e_slab_ad": [0, 1, 55, 56, 58], "e_o2": [0, 1, 16, 19, 55, 56, 58], "e_adsorpt": [0, 1, 55, 56, 58], "print": [0, 1, 6, 7, 8, 10, 14, 15, 16, 18, 19, 23, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 48, 49, 50, 55, 56, 57, 58, 60, 61], "3f": [0, 1, 16, 34, 55, 56, 58], "ev": [0, 1, 7, 9, 10, 13, 16, 19, 46, 48, 49, 50, 55, 56, 57, 58, 60], "format": [0, 1, 6, 10, 11, 29, 30, 31, 33, 34, 35, 36, 38, 40, 41, 46, 48, 55, 56, 57, 58, 60], "fcc111": [1, 9, 18], "fcc100": [1, 9], "repeat": [1, 10, 11, 12, 13, 15, 18, 32, 37, 39, 40, 53, 56], "There": [1, 12, 14, 18, 19, 21, 23, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 46, 47, 49, 52, 59, 61], "gener": [1, 2, 4, 5, 10, 11, 12, 18, 19, 21, 22, 27, 28, 29, 32, 33, 34, 35, 39, 40, 47, 48, 50, 52, 53, 54, 57, 59, 60], "matplotlib": [1, 12, 13, 18, 19, 28, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 50], "pyplot": [1, 12, 13, 18, 19, 28, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 50, 59], "plt": [1, 11, 12, 13, 15, 18, 19, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 50, 59], "plot": [1, 5, 10, 11, 12, 13, 15, 18, 19, 28, 31, 33, 34, 36, 37, 39, 41, 46], "plot_atom": [1, 18], "slab_fcc111": 1, "size": [1, 18, 29, 31, 36, 38, 39, 40, 41, 50], "fig": [1, 12, 18, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 59], "ax": [1, 12, 18, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41], "subplot": [1, 12, 18, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 59], "figsiz": [1, 18, 30, 31, 34, 35, 36, 37, 38, 39, 40, 41, 59], "rotat": [1, 18, 27, 36], "120x": 1, "0y": 1, "0z": 1, "poscar_1": 1, "poscar_2": 1, "get_all_dist": 1, "mic": 1, "ident": [1, 8, 11, 18, 29, 36, 41, 46, 52, 59], "us": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 20, 21, 24, 27, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 44, 45, 46, 47, 48, 52, 53, 57, 60], "386": [1, 50, 56], "800": [1, 16, 56], "running_sparc_on_pac": [1, 16], "unit": [1, 5, 7, 8, 9, 10, 13, 16, 18, 19, 30, 36, 40, 49, 56, 59], "bohr": [1, 5, 7, 9, 10, 13, 16, 49, 56], "hartre": [1, 7, 9, 10, 13, 16, 49, 56], "mol": [1, 7, 9, 10, 13, 16, 19, 49, 56], "kcal": [1, 7, 9, 10, 13, 16, 49, 56], "kj": [1, 7, 9, 10, 13, 16, 19, 49, 56], "set": [1, 3, 6, 7, 10, 11, 12, 14, 15, 16, 19, 21, 28, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 46, 47, 48, 50, 53, 56, 57, 60], "up": [1, 3, 4, 6, 21, 23, 30, 32, 35, 36, 40, 46, 47, 48, 50, 52, 53, 56, 57, 59, 60], "here": [1, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 19, 20, 27, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 47, 48, 49, 50, 51, 56, 57, 59, 60, 61], "rel": [1, 16, 27, 28, 30, 35, 36, 37, 39, 40, 41, 49, 56, 59, 61], "low": [1, 29, 31, 36, 40, 41, 56, 59], "valu": [1, 5, 10, 12, 13, 16, 19, 28, 29, 31, 33, 34, 35, 36, 37, 38, 40, 41, 46, 49, 56, 59, 61], "kpoint_grid": [1, 16, 49, 56, 61], "ecut": [1, 5, 13, 16, 49, 56], "did": [1, 32, 33, 36, 40, 49, 56, 61], "spin": [1, 10, 16, 48, 49, 56, 57, 60], "polar": [1, 10, 16, 48, 49, 56, 57, 60], "finish": [1, 40, 56], "faster": [1, 10, 34, 40, 56], "lead": [1, 5, 28, 32, 33, 35, 37, 56, 59], "unreason": [1, 56], "exchange_correl": [1, 16, 49, 56, 61], "gga_pb": [1, 16, 49, 56, 61], "d3_flag": [1, 16, 49, 56], "grimm": [1, 16, 49, 56], "d3": [1, 10, 16, 30, 49, 56, 59], "dispers": [1, 10, 16, 49, 56], "spin_typ": [1, 16, 49, 56], "non": [1, 11, 28, 32, 34, 36, 37, 40, 44, 46, 49, 51, 56, 59], "500": [1, 6, 13, 15, 33, 46, 48, 49, 50, 56, 57, 60], "h": [1, 5, 7, 13, 15, 16, 18, 19, 27, 28, 40, 46, 49, 56, 59, 61], "angstrom": [1, 5, 16, 18, 48, 49, 56, 57, 60], "15": [1, 5, 7, 11, 15, 16, 18, 29, 30, 34, 35, 36, 37, 38, 39, 40, 41, 46, 49, 50, 52, 53, 56, 59], "tol_scf": [1, 16, 49, 56, 61], "relax_flag": [1, 5, 16, 49, 56, 61], "do": [1, 4, 7, 10, 11, 14, 16, 18, 19, 23, 28, 29, 31, 32, 34, 36, 37, 40, 41, 44, 47, 48, 50, 52, 53, 57, 59, 60], "tol_relax": [1, 16], "00e": [1, 16], "03": [1, 29, 36, 39, 40, 59], "criteria": [1, 16, 36, 39, 40, 49, 52, 53, 61], "maximum": [1, 7, 16, 19, 28, 34, 35, 37, 38, 40, 48, 49, 57, 59, 60], "forc": [1, 6, 7, 16, 19, 27, 33, 34, 36, 48, 49, 50, 57, 60, 61], "ha": [1, 5, 11, 16, 18, 19, 21, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 48, 49, 53, 57, 59, 60, 61], "print_forc": [1, 16, 49, 56, 61], "print_relaxout": [1, 16, 49, 56, 61], "directori": [1, 6, 14, 16, 48, 49, 57, 60, 61], "converged_slab": 1, "step": [1, 5, 7, 10, 16, 28, 29, 30, 31, 32, 33, 38, 45, 46, 48, 49, 50, 57, 59, 60], "converged_slab_ad": 1, "7": [1, 5, 15, 18, 28, 29, 30, 35, 36, 37, 39, 40, 41, 46, 50, 53, 59], "8": [1, 5, 6, 9, 12, 18, 28, 29, 30, 35, 38, 39, 40, 41, 46, 48, 49, 50, 53, 57, 59, 60], "9": [1, 12, 15, 16, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 39, 40, 41, 46, 49, 50, 53, 59], "11": [1, 15, 18, 27, 28, 29, 30, 31, 35, 37, 40, 46, 50, 53, 59], "12": [1, 6, 15, 18, 28, 29, 30, 36, 40, 41, 46, 50, 53, 59, 60], "13": [1, 18, 29, 30, 40, 46, 50, 53, 59], "16": [1, 15, 27, 28, 29, 35, 36, 46, 50, 53, 59], "17": [1, 7, 18, 29, 37, 40, 46, 50, 59], "18": [1, 18, 28, 29, 30, 35, 38, 40, 41, 46, 50, 53, 59], "19": [1, 6, 18, 29, 36, 46, 50, 59, 61], "20": [1, 6, 7, 10, 12, 18, 28, 29, 31, 34, 36, 38, 39, 40, 41, 46, 48, 50, 53, 57, 59, 60, 61], "21": [1, 29, 35, 40, 46, 50, 53, 59], "22": [1, 28, 37, 38, 39, 46, 50, 59], "23": [1, 15, 18, 32, 36, 40, 46, 50, 53], "24": [1, 15, 28, 37, 38, 39, 46, 48, 49, 50, 52, 57, 59, 60], "25": [1, 5, 28, 29, 30, 34, 40, 41, 46, 50, 53, 59], "26": [1, 28, 46, 50, 59], "27": [1, 15, 29, 35, 40, 46, 50, 59], "28": [1, 7, 28, 29, 35, 46, 50, 53, 59], "29": [1, 7, 46, 50], "30": [1, 7, 28, 32, 34, 36, 37, 38, 41, 50, 53, 59], "31": [1, 7, 46, 50], "32": [1, 27, 40, 46, 50], "33": [1, 7, 36, 39, 46, 50, 52, 53], "34": [1, 46, 50], "35": [1, 5, 7, 15, 34, 46, 50], "36": [1, 35, 46, 50], "37": [1, 35, 40, 46, 50], "38": [1, 7, 46, 50], "39": [1, 7, 35, 46, 50], "40": [1, 7, 30, 34, 35, 39, 40, 41, 46, 50, 53, 59], "41": [1, 7, 18, 34, 35, 40, 46, 50], "42": [1, 12, 35, 40, 50], "43": [1, 7, 29, 35, 50, 59], "44": [1, 7, 50], "45": [1, 35, 50], "46": [1, 29, 50, 59], "47": [1, 50], "48": [1, 35, 50], "49": [1, 50], "singl": [1, 5, 6, 9, 10, 13, 16, 18, 21, 27, 29, 31, 33, 35, 37, 38, 39, 40, 41, 48, 49, 50, 53, 56, 57, 59, 60, 61], "converged_o2": 1, "831": 1, "contain": [2, 7, 18, 28, 29, 31, 33, 35, 40, 48, 49, 50, 53, 54, 57, 59, 60], "miscellan": 2, "addit": [2, 28, 31, 36, 37, 38, 40, 51, 53, 59], "inform": [2, 8, 16, 17, 18, 19, 21, 27, 29, 32, 33, 35, 37, 39, 40, 48, 49, 50, 51, 53, 57, 60, 61], "regard": [2, 52], "dft": [2, 3, 5, 9, 10, 18, 19, 21, 32, 44, 47, 48, 51, 52, 53], "ml": [2, 11, 12, 20, 24, 38, 49, 52, 53], "navig": [2, 14, 23, 32], "hpc": [2, 17, 53], "environ": [2, 3, 8, 18, 21, 27, 40, 44, 47, 48, 49, 57, 60, 61], "mai": [2, 7, 11, 16, 18, 28, 31, 32, 33, 34, 35, 36, 38, 39, 40, 44, 51, 52, 53, 59], "student": [2, 4, 14, 21, 24, 44, 53, 54], "section": [3, 4, 17, 19, 21, 22, 24, 33, 44, 45, 46, 47, 50], "introduc": [3, 20, 21, 22, 24, 27, 32, 34, 36, 37, 38, 39, 40, 44, 45, 47, 50, 52, 54], "some": [3, 4, 5, 6, 7, 16, 18, 19, 20, 21, 24, 28, 29, 30, 32, 33, 34, 35, 36, 38, 39, 40, 41, 45, 47, 48, 49, 52, 53, 57, 59, 60, 61], "focu": [3, 8, 12, 24, 34, 35, 36, 37, 47, 52, 53], "most": [3, 4, 9, 23, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 44, 48, 52, 57, 59, 60], "relev": [3, 7, 24, 45, 53], "our": [3, 4, 6, 16, 18, 19, 20, 23, 24, 28, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 48, 49, 53, 57, 59, 60, 61], "research": [3, 4, 23, 24, 27, 36, 50, 53, 54], "group": [3, 6, 19, 20, 23, 24, 27, 32, 40, 44, 48, 49, 50, 51, 53, 57, 60], "name": [3, 6, 10, 15, 18, 23, 29, 32, 34, 35, 36, 44, 47, 48, 49, 52, 53, 57, 60, 61], "geometri": [3, 9, 18, 46, 47, 48, 57, 60], "also": [3, 4, 5, 12, 15, 18, 19, 21, 24, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 45, 47, 48, 49, 52, 53, 57, 59, 60, 61], "term": [3, 11, 13, 21, 32, 33, 34, 36, 37, 38, 41, 53], "adsorpt": [3, 8, 9, 19, 45, 47, 51, 52, 53], "energi": [3, 5, 6, 7, 9, 10, 13, 18, 21, 27, 32, 47, 48, 49, 50, 51, 52, 53, 57, 60, 61], "calcul": [3, 5, 7, 8, 9, 10, 12, 18, 21, 31, 32, 35, 37, 39, 40, 47, 48, 53], "tool": [3, 8, 11, 18, 19, 24, 30, 32, 34, 35, 37, 44, 51, 52, 53, 59], "analyz": [3, 18, 20, 24, 30, 47, 53, 59], "api": [3, 5, 37, 38, 39, 44, 47, 49, 53, 61], "simul": [3, 6, 8, 18, 27, 31, 32, 44, 47, 53, 59], "ASE": [3, 5, 6, 7, 8, 9, 10, 47, 48, 49, 53, 57, 60, 61], "end": [3, 6, 14, 29, 33, 37, 40, 46, 52, 53, 59], "feel": [3, 4, 35, 38], "comfort": [3, 4], "pace": [3, 6, 14, 23, 61], "understand": [3, 20, 32, 37, 38, 39, 40, 41, 48, 54, 57, 60], "basic": [3, 8, 11, 12, 14, 15, 19, 22, 23, 24, 27, 28, 30, 33, 40, 41, 47, 50, 51, 53, 59], "well": [3, 5, 29, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 52, 53, 59], "adsropt": 3, "These": [3, 4, 5, 7, 8, 9, 11, 12, 14, 15, 19, 21, 24, 28, 32, 36, 37, 38, 40, 41, 44, 48, 49, 54, 57, 59, 60, 61], "concept": [3, 20, 22, 24, 35, 36, 37, 38, 39, 40, 41, 45, 52, 54], "critic": [3, 24, 32, 34], "studi": [3, 13, 32, 39, 45, 52, 53], "heterogen": [3, 44], "catalysi": [3, 19, 32, 44, 52, 53, 54], "provid": [4, 7, 18, 19, 21, 24, 27, 28, 29, 30, 31, 33, 34, 35, 36, 40, 41, 45, 50, 51, 52, 53, 54, 59], "specif": [4, 6, 18, 19, 28, 30, 31, 32, 38, 40, 46, 49, 50, 52, 53, 59, 61], "comput": [4, 9, 10, 12, 13, 15, 19, 27, 28, 32, 34, 36, 37, 38, 40, 41, 44, 45, 46, 51, 52, 53, 54, 59], "chemistri": [4, 17, 19, 20, 27, 32, 44, 45, 52, 53], "includ": [4, 6, 11, 12, 17, 18, 21, 22, 28, 29, 30, 32, 33, 34, 36, 37, 40, 46, 47, 52, 53, 59], "frequent": 4, "exhaust": [4, 24], "encourag": [4, 44], "explor": [4, 11, 14, 33, 37, 38, 40, 41, 51, 53], "document": [4, 9, 11, 12, 14, 18, 31, 35, 36, 49, 52, 61], "other": [4, 8, 23, 28, 29, 30, 31, 32, 33, 34, 35, 38, 39, 40, 46, 48, 49, 50, 52, 53, 57, 59, 60], "resourc": [4, 8, 23, 44, 48, 49, 53, 57, 60], "learn": [4, 5, 11, 12, 14, 15, 18, 19, 21, 23, 24, 27, 30, 34, 35, 37, 38, 39, 40, 48, 49, 51, 52, 53, 54, 57, 59, 60, 61], "more": [4, 5, 13, 14, 18, 21, 23, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 44, 47, 48, 49, 51, 52, 57, 59, 60, 61], "about": [4, 5, 18, 21, 23, 28, 29, 32, 34, 35, 36, 40, 48, 49, 57, 59, 60, 61], "avail": [4, 6, 18, 19, 23, 30, 31, 32, 36, 37, 39, 40, 41, 44, 48, 49, 52, 57, 59, 60, 61], "intend": [4, 53], "purpos": [4, 23, 32, 48, 49, 57, 60, 61], "spend": [4, 32], "too": [4, 31, 41, 59], "much": [4, 16, 19, 23, 29, 30, 34, 35, 36, 40, 41, 52, 59], "time": [4, 6, 7, 10, 13, 16, 27, 32, 33, 34, 35, 37, 38, 39, 40, 41, 46, 48, 49, 52, 53, 57, 60], "best": [4, 11, 12, 28, 34, 36, 37, 39, 40, 41, 53, 59], "practic": [4, 19, 28, 32, 34, 35, 39, 40, 41, 53, 59], "proce": [4, 32], "exercis": [4, 19, 44, 45, 52, 54], "soon": [4, 53], "look": [4, 5, 18, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 48, 49, 57, 59, 60, 61], "someth": [4, 23, 28, 32, 38, 41, 48, 49, 52, 53, 57, 59, 60], "fantast": 4, "stack": 4, "overflow": 4, "chatgpt": [4, 32], "access": [4, 6, 18, 23, 28, 29, 48, 49, 50, 53, 57, 59, 60], "recommend": [4, 13, 28, 29, 30, 32, 49, 59], "instal": [4, 6, 18, 28, 29, 49, 59, 61], "github": [4, 6, 27, 30, 31, 49, 53, 59, 61], "copilot": 4, "vscode": 4, "As": [4, 5, 7, 14, 15, 27, 36, 38, 41, 48, 49, 50, 57, 60], "georgia": [4, 27, 48, 49, 50, 53, 57, 60], "tech": [4, 27, 48, 49, 50, 53, 57, 60], "note": [4, 5, 8, 9, 11, 12, 13, 15, 18, 19, 21, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 40, 41, 48, 52, 53, 57, 59, 60], "wa": [4, 21, 32, 38, 39, 41, 44], "written": [4, 21, 34, 35, 36, 41], "assist": [4, 52, 53], "pleas": [4, 23, 27, 44, 49, 52], "ai": 4, "respons": [4, 9, 12, 32, 39, 53], "goal": [4, 21, 22, 33, 34, 36, 37, 38, 40, 45, 52, 53, 54], "materi": [4, 17, 21, 22, 27, 32, 44, 50, 52, 53], "simpli": [4, 11, 18, 28, 32, 35, 36, 37, 52, 59], "complet": [4, 8, 31, 32, 40, 45, 46, 50, 51, 52, 53, 59], "far": [5, 34, 36, 37, 41], "learnt": [5, 48, 57, 60], "specifi": [5, 14, 16, 18, 28, 29, 34, 40, 48, 49, 50, 57, 59, 60, 61], "haven": [5, 35, 36], "t": [5, 6, 10, 18, 23, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 48, 49, 53, 57, 59, 60, 61], "standard": [5, 6, 28, 29, 30, 34, 38, 39, 40, 41, 44, 48, 57, 59, 60], "procedur": [5, 33, 37, 41], "choos": [5, 9, 30, 34, 36, 38, 40, 46, 49, 52, 53, 59], "solv": [5, 21, 29, 33, 37, 38, 40, 46, 49, 53, 61], "kohn": [5, 21], "sham": [5, 21], "ks": [5, 21], "equat": [5, 10, 21, 22, 27, 32, 33, 34, 37, 49, 61], "requir": [5, 8, 9, 13, 15, 16, 18, 19, 28, 29, 31, 33, 36, 37, 40, 41, 47, 48, 49, 50, 53, 57, 59, 60, 61], "multipl": [5, 16, 28, 29, 30, 33, 40, 49, 53, 59], "iter": [5, 15, 21, 28, 32, 34, 36, 37, 38, 40, 41, 49, 59, 61], "initi": [5, 15, 21, 28, 29, 31, 33, 36, 38, 48, 49, 50, 53, 57, 59, 60, 61], "guess": [5, 15, 18, 21, 31, 34, 36, 37, 38, 48, 49, 57, 59, 60, 61], "densiti": [5, 9, 12, 18, 19, 32, 48, 49, 51, 52, 53, 57, 60, 61], "alwai": [5, 23, 28, 30, 31, 32, 34, 35, 36, 37, 40, 41, 59], "verifi": [5, 10, 18, 31, 32, 33, 48, 57, 59, 60], "solut": [5, 19, 21, 27, 33, 36, 37, 38, 40], "accur": [5, 19, 21, 28, 31, 33, 40, 49, 59, 61], "approxim": [5, 10, 19, 21, 27, 32, 34, 36, 37, 38, 41, 49, 53, 61], "mathemat": [5, 15, 27, 28, 31, 32, 35, 37, 38, 40, 41, 59], "formul": [5, 27, 29, 50, 59], "lesson": [5, 18, 19, 21, 36, 48, 49, 57, 60, 61], "what": [5, 10, 11, 12, 18, 23, 29, 36, 48, 53, 57, 59, 60], "perform": [5, 7, 8, 9, 10, 11, 12, 15, 18, 19, 21, 24, 28, 29, 33, 34, 37, 39, 40, 46, 49, 51, 53, 59, 61], "test": [5, 11, 12, 13, 14, 15, 19, 28, 33, 34, 37, 39, 45, 47, 49, 50, 52, 53, 61], "select": [5, 12, 30, 33, 34, 35, 36, 38, 40, 41, 48, 52, 59], "planewav": [5, 13, 45, 47, 50], "code": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 28, 29, 30, 36, 37, 44, 45, 47, 48, 52, 53, 57, 59, 60, 61], "vasp": [5, 19], "quantum": [5, 17, 18, 19, 27, 32, 47, 55, 58], "k": [5, 7, 12, 13, 19, 27, 30, 31, 32, 33, 34, 36, 38, 41, 48, 49, 57, 59, 60, 61], "point": [5, 6, 10, 11, 12, 13, 19, 21, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 48, 49, 50, 52, 53, 57, 59, 60, 61], "schroding": [5, 22, 49, 61], "period": [5, 7, 8, 10, 18, 50], "usual": [5, 23, 29, 33, 36, 39, 40, 48, 49, 57, 59, 60], "conveni": [5, 28, 31, 35, 48, 49, 57, 59, 60], "space": [5, 13, 21, 28, 29, 32, 34, 35, 36, 37, 38, 39, 40, 41, 45, 46, 47, 49, 59, 61], "reciproc": 5, "becaus": [5, 11, 16, 19, 23, 27, 28, 30, 32, 33, 35, 36, 38, 39, 40, 41, 48, 49, 57, 59, 60], "integr": [5, 28, 53], "evalu": [5, 24, 28, 34, 36, 37, 38, 40, 52, 53, 59], "total": [5, 13, 16, 18, 21, 34, 35, 36, 37, 39, 40, 48, 49, 53, 57, 60], "larger": [5, 29, 32, 34, 35, 38, 46, 52, 53, 59], "number": [5, 8, 11, 12, 15, 16, 18, 19, 21, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 41, 46, 47, 49, 59, 61], "tend": [5, 33, 35, 36, 37], "computation": [5, 19, 21, 27, 36, 40], "expens": [5, 19, 21, 27, 39], "henc": [5, 36, 40, 48, 49, 57, 60], "respect": [5, 7, 13, 33, 37, 38, 40, 48, 49, 53, 57, 60], "error": [5, 11, 15, 19, 28, 31, 32, 33, 34, 36, 37, 38, 40, 48, 49, 50, 57, 59, 60], "goe": [5, 11, 12, 29, 33, 36, 38, 59], "below": [5, 7, 8, 9, 11, 13, 14, 15, 18, 19, 28, 32, 35, 37, 38, 39, 40, 41, 46, 48, 49, 52, 53, 57, 59, 60, 61], "numer": [5, 21, 33, 34, 36, 38, 52, 53], "accuraci": [5, 12, 13, 27, 32, 36, 41, 45, 49, 61], "cut": [5, 39, 48, 57, 60], "off": [5, 12, 35, 37], "while": [5, 18, 21, 27, 28, 32, 33, 36, 37, 39, 40, 49, 52, 53, 59, 61], "same": [5, 11, 12, 21, 28, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 49, 59], "A": [5, 6, 12, 19, 21, 27, 28, 29, 30, 31, 36, 37, 39, 40, 44, 48, 49, 50, 53, 57, 59, 60, 61], "higher": [5, 16, 31, 33, 35, 36, 37, 38, 40, 49, 52, 61], "give": [5, 6, 19, 23, 28, 30, 32, 35, 36, 37, 39, 40, 48, 49, 57, 59, 60], "becom": [5, 7, 9, 15, 20, 35, 36, 39, 44, 49], "which": [5, 6, 7, 9, 10, 11, 12, 15, 16, 18, 19, 21, 23, 24, 28, 29, 30, 31, 32, 33, 34, 35, 36, 45, 46, 48, 49, 50, 52, 53, 57, 59, 60, 61], "chosen": [5, 32], "finit": 5, "mesh": [5, 13, 16, 45, 49, 61], "grid": [5, 11, 12, 16, 29, 34, 35, 38, 49, 59, 61], "equival": [5, 28, 33, 34, 38, 59], "qe": [5, 6, 13, 45, 47, 49, 57, 60, 61], "finer": 5, "s": [5, 6, 7, 11, 15, 16, 18, 19, 21, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 48, 49, 50, 52, 53, 54, 57, 59, 60, 61], "crystal": [5, 49, 61], "copper": [5, 13], "fcc": [5, 9, 13, 18], "curv": [5, 30, 31, 59], "absolut": [5, 11, 28, 30, 31, 33, 34, 46, 59], "given": [5, 19, 21, 27, 28, 31, 33, 35, 36, 37, 38, 39, 41, 46, 48, 49, 52, 53, 57, 59, 60], "finest": 5, "y": [5, 7, 15, 18, 28, 29, 30, 31, 33, 34, 35, 37, 38, 39, 40, 41, 59], "x": [5, 6, 7, 12, 15, 18, 23, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 49, 59, 61], "scale": [5, 10, 11, 30, 35, 36, 38, 40, 41, 50, 53, 59], "4x4x4": 5, "three": [5, 8, 9, 12, 48, 52, 53, 57, 60], "highest": [5, 32, 33, 35, 36, 40, 54], "reaction": [5, 52, 53], "hydrogen": [5, 18], "convert": [5, 28, 34, 35, 37, 38, 41, 53, 59], "water": [5, 6, 10, 16, 18, 19, 27, 48, 57, 60], "vari": [5, 28, 33, 34, 35, 48, 50, 57, 59, 60], "take": [5, 15, 18, 19, 23, 27, 28, 29, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 48, 52, 53, 57, 59, 60], "default": [5, 23, 27, 29, 30, 31, 33, 36, 38, 39, 40, 48, 49, 50, 57, 60, 61], "length": [5, 9, 28, 35, 40, 59], "To": [5, 6, 18, 19, 21, 27, 30, 31, 38, 40, 41, 46, 48, 49, 52, 57, 59, 60], "chapter": [5, 21], "nut": 5, "bolt": 5, "dr": [5, 21, 53], "sholl": 5, "book": [5, 17, 21, 28, 52, 53, 54, 59], "function": [5, 6, 9, 10, 11, 12, 15, 18, 19, 23, 27, 30, 31, 32, 33, 34, 35, 36, 39, 41, 46, 48, 49, 51, 52, 53, 57, 60, 61], "theori": [5, 9, 18, 19, 32, 38, 39, 51, 52, 53], "explain": [5, 10, 11, 13, 36, 53], "brillouin": 5, "zone": [5, 38], "gabriel": [6, 46], "gusm\u00e3o": [6, 46], "mar": 6, "2022": [6, 27, 48, 49, 50], "gusmaogabriel": [6, 46], "gmail": [6, 46], "com": [6, 28, 31, 32, 41, 46, 49, 52, 59, 61], "gatech": [6, 14, 23, 46, 53], "edu": [6, 14, 23, 46, 53], "fortran": [6, 47], "mpi": 6, "git": [6, 49, 61], "pb": [6, 7, 60, 61], "slurm": [6, 48, 49, 57], "torq": 6, "i": [6, 7, 9, 11, 15, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 46, 53], "packag": [6, 8, 9, 11, 12, 15, 16, 18, 19, 29, 37, 38, 39, 41, 47, 49, 52, 53, 59, 61], "ii": [6, 37, 53], "modifi": [6, 11, 27, 29, 30, 37, 41, 49, 61], "class": [6, 12, 18, 19, 29, 30, 33, 36, 38, 39, 40, 52, 53], "enabl": [6, 18, 28, 41, 53, 59], "interact": [6, 15, 21, 27, 29, 46, 48, 49, 52, 57, 59, 60], "live": [6, 23, 35], "session": [6, 52], "pi": [6, 28, 30, 40, 48, 49, 57, 59, 60], "socket": 6, "natur": [6, 28, 32, 36, 37, 52, 59], "iii": 6, "itself": [6, 28, 33, 39, 59], "assum": [6, 9, 28, 31, 34, 35, 38, 39, 41, 49, 59], "root_dir": 6, "share": [6, 23, 27, 28, 32, 48, 57, 59, 60], "user": [6, 14, 18, 19, 21, 23, 28, 30, 37, 38, 39, 40, 48, 49, 53, 57, 59, 60], "arbitrari": [6, 31, 37, 38, 41, 59], "make": [6, 16, 18, 19, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 49, 53, 61], "ones": [6, 29, 37, 38, 40, 59], "clone": [6, 49, 61], "qef": 6, "q": [6, 23, 29, 48, 49, 53, 57, 59, 60], "appropri": [6, 9, 19, 44, 53], "flag": [6, 9], "load": [6, 11, 46, 48, 49, 50, 57, 60, 61], "modul": [6, 8, 11, 12, 18, 29, 30, 31, 33, 34, 35, 37, 38, 39, 48, 49, 57, 60, 61], "bash": [6, 14, 15, 23, 47, 48, 49, 57, 60], "ggusmao_build": 6, "ssh": 6, "sh": [6, 18, 23, 48, 49, 57, 60, 61], "root": [6, 14, 15, 23, 28, 31, 34, 59], "folder": [6, 8, 14, 15, 23, 48, 49, 57, 60], "purg": [6, 61], "intel": [6, 49, 61], "mvapich2": [6, 49], "gcc": [6, 49], "compat": [6, 27, 30, 48, 57, 59, 60], "netlib": 6, "scalapack": 6, "mva2": 6, "anaconda3": [6, 18, 28, 29, 37, 38, 39, 48, 49, 57, 59, 60, 61], "export": [6, 49, 61], "cc": 6, "icc": 6, "cxx": 6, "icpc": 6, "fc": 6, "mpif90": 6, "f77": 6, "ifort": 6, "f90": 6, "mpivers": 6, "compilervers": 6, "veryclean": 6, "configur": [6, 19, 21, 36], "prefix": [6, 18, 49, 61], "pwd": [6, 14, 23], "beef_lib": 6, "l": [6, 13, 23, 28, 34, 35, 41, 46, 59, 60], "libbeef": 6, "src": [6, 49, 61], "lbeef": 6, "parallel": [6, 37, 53], "ye": 6, "scalapack_lib": 6, "mklroot": 6, "lib": [6, 16, 18, 28, 29, 37, 38, 39, 49, 59, 61], "intel64": 6, "libmkl_scalapack_lp64": 6, "lmkl_blacs_intelmpi_lp64": 6, "blas_lib": 6, "lmkl_gf_lp64": 6, "lmkl_sequenti": 6, "lmkl_core": 6, "lpthread": 6, "lapack_lib": 6, "lmkl_lapack95_lp64": 6, "lmkl_scalapack_lp64": 6, "fcl": 6, "mkl": 6, "sequenti": 6, "lstdc": 6, "fflag": 6, "byterecl": 6, "cflag": [6, 49], "o3": [6, 18], "free": [6, 28, 38, 50, 52, 59], "lowercas": 6, "fftmpiw": 6, "fftmpi_map": 6, "fft3dlib": 6, "fftw3d": 6, "j12": 6, "dev": [6, 28, 59], "latest": [6, 48, 57, 60], "gitlab": [6, 61], "ggusmao": 6, "handl": [6, 15, 28, 31, 38, 59], "pseudopotenti": [6, 48], "pseudos_modul": 6, "pseudo": [6, 46, 48, 57, 60, 61], "env": [6, 38, 48, 57, 60], "getpseudo": [6, 48, 57, 60], "py": [6, 14, 16, 18, 28, 37, 38, 39, 48, 49, 57, 59, 60, 61], "scrape": 6, "current": [6, 14, 22, 23, 32, 48, 49, 57, 60], "re": [6, 7, 10, 13, 19, 23, 28, 33, 34, 35, 36, 37, 38, 39, 40, 52, 53, 59], "sy": [6, 18, 40], "pseudos_dir": 6, "join": [6, 51, 52, 53], "medford_shar": 6, "curdir": 6, "getcwd": 6, "chdir": 6, "pseudo_path": 6, "replac": [6, 21, 28, 50, 59], "_": [6, 16, 28, 34, 36, 46, 50, 59], "dirpath": 6, "dirnam": 6, "filenam": [6, 23, 30, 48, 49, 57, 59, 60], "ani": [6, 7, 14, 15, 18, 28, 29, 32, 33, 35, 36, 37, 39, 40, 44, 45, 49, 52, 53, 59], "filter": 6, "lambda": [6, 31, 33], "lower": [6, 7, 21, 29, 30, 31, 34, 35, 40, 41, 46, 59], "endswith": 6, "upf": [6, 48, 57, 60], "psp8": [6, 48, 57, 60], "pot": 6, "listdir": 6, "esp_pseudo": 6, "els": [6, 11, 28, 29, 35, 37, 40, 41, 49, 59, 61], "rais": [6, 28, 34, 44, 59], "except": [6, 15, 31], "pseudo_not_found": 6, "n": [6, 7, 11, 15, 18, 21, 27, 28, 29, 31, 33, 34, 35, 36, 40, 41, 48, 49, 50, 57, 59, 60], "fail": [6, 32, 33, 36], "navail": 6, "setpseudo": [6, 48, 57, 60], "defint": 6, "argv": 6, "stdout": [6, 60], "exit": [6, 23], "psp": [6, 48, 57, 60], "successfulli": [6, 16, 38], "python": [6, 7, 8, 11, 12, 13, 14, 15, 18, 19, 23, 29, 34, 37, 41, 48, 51, 53, 57, 60], "esp_psp_path": 6, "current_path": 6, "sparc_psp_path": [6, 49, 61], "echo": 6, "sourc": [6, 23, 28, 30, 44, 47, 48, 49, 52, 57, 59, 60, 61], "download": [6, 8, 15, 49, 52], "pseudojodo": 6, "sssp": [6, 48, 57, 60], "etc": [6, 18, 21, 23, 27, 29, 30, 33, 35, 40, 53, 59], "quantum_espresso": 6, "your": [6, 9, 10, 11, 12, 14, 15, 16, 18, 19, 23, 29, 33, 34, 45, 48, 49, 51, 52, 53, 57, 59, 60, 61], "befor": [6, 7, 32, 33, 35, 37, 38, 39, 41, 44, 52], "wide": [6, 23, 27, 36, 53], "pip": [6, 18, 28, 29, 49, 59], "hostlist": 6, "cd": [6, 7, 48, 49, 57, 60, 61], "home": [6, 16, 23, 49, 61], "root_directory_path": 6, "espresso_esp": 6, "old": [6, 40], "redefin": 6, "pp": 6, "accordingli": 6, "scratch": [6, 14], "base": [6, 9, 11, 12, 19, 23, 27, 28, 29, 32, 33, 35, 36, 37, 39, 48, 49, 50, 52, 53, 57, 59, 60], "program": [6, 19, 23, 30, 49, 53, 61], "pythonpath": [6, 23, 49, 61], "spglib": 6, "option": [6, 23, 28, 30, 31, 35, 39, 40, 48, 49, 57, 59, 60], "bin": [6, 23, 30, 31, 41, 46, 48, 49, 57, 59, 60, 61], "ase_latest": 6, "hive": [6, 14, 48, 49, 57, 60], "node": [6, 14, 48, 49, 57, 60], "ppn": [6, 60], "pmem": [6, 60], "3gb": [6, 60], "walltim": [6, 48, 49, 57, 60], "00": [6, 29, 30, 36, 40, 48, 49, 53, 57, 59, 60], "gt": [6, 14, 46, 48, 49, 57, 60], "amedford6": [6, 48, 49, 57, 60], "stderr": [6, 60], "pbs_o_workdir": [6, 60], "bashrc": [6, 23, 48, 49, 57, 60], "storag": [6, 14, 48, 49, 57, 60, 61], "coda1": [6, 48, 57, 60], "p": [6, 7, 18, 28, 29, 30, 31, 36, 37, 38, 39, 40, 41, 48, 57, 59, 60], "rich_project_chb": [6, 48, 57, 60], "medford": [6, 27, 32, 48, 49, 50, 51, 53, 57, 60], "7max": [6, 48, 57, 60], "ipi": [6, 48, 57, 60], "experi": [6, 32, 40, 52, 53], "bfg": [6, 31, 48, 57, 59, 60], "t0": [6, 48, 57, 60], "h2o": [6, 16, 18, 19, 46, 48, 49, 50, 57, 60, 61], "set_pbc": [6, 48, 50, 57, 60], "just": [6, 10, 18, 19, 22, 33, 34, 35, 36, 38, 39, 40, 41, 48, 49, 50, 52, 57, 60, 61], "scf": [6, 48, 49, 57, 60, 61], "pbe": [6, 10, 21, 46, 48, 50, 57, 60, 61], "retriev": [6, 48, 57, 60], "stress": [6, 19, 36, 48, 57, 60], "rattl": [6, 48, 57, 60], "0001": [6, 11, 48, 57, 60], "1st": [6, 40, 48, 57, 60], "get_forc": [6, 19, 48, 50, 57, 60], "get_stress": [6, 19, 48, 57, 60], "t1": [6, 48, 57, 60], "sec": [6, 36, 48, 57, 60], "dyn": [6, 19, 48, 57, 60], "opt_pb": [6, 48, 57, 60], "h2o_pbe_optim": [6, 48, 57, 60], "005": [6, 48, 50, 57, 60], "t2": [6, 48, 57, 60], "350": [6, 48, 50, 57, 60], "2nd": [6, 27, 40, 48, 57, 60], "e_ensembl": [6, 48, 57, 60], "get_ensemble_energi": [6, 48, 57, 60], "ensembl": [6, 32, 37, 39, 48, 57, 60], "mean": [6, 10, 11, 18, 19, 24, 29, 31, 34, 36, 37, 38, 39, 41, 44, 46, 48, 49, 50, 57, 59, 60], "std": [6, 29, 31, 34, 35, 39, 40, 41, 48, 57, 59, 60], "opt_beef": [6, 48, 57, 60], "h2o_beef_optim": [6, 48, 57, 60], "extxyz": 6, "totol": [6, 48, 57, 60], "begin": [6, 9, 10, 11, 12, 15, 21, 49, 52, 61], "zip": [6, 7, 38, 40, 41, 46, 53], "libxc": 6, "qe_7": 6, "libxc_6": 6, "wget": 6, "http": [6, 11, 12, 14, 15, 23, 27, 28, 30, 31, 32, 41, 49, 50, 52, 59, 61], "archiv": 6, "It": [6, 12, 14, 18, 21, 23, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 46, 48, 49, 50, 52, 57, 59, 60, 61], "appear": [6, 16, 28, 37, 44, 49, 53], "automat": [6, 11, 28, 38, 40, 59], "later": [6, 18, 19, 31, 34, 35, 36, 40, 47, 59], "job": [6, 14, 17, 48, 49, 53, 57, 60], "lrt_build": 6, "autoreconf": 6, "TO": 6, "processor": [6, 48, 49, 57, 60], "either": [6, 18, 19, 40, 46], "continu": [6, 11, 12, 15, 22, 28, 33, 35, 37, 39, 41, 53, 59], "j": [6, 21, 23, 27, 28, 29, 32, 33, 34, 35, 36, 40, 48, 49, 53, 57, 59], "cover": [7, 8, 11, 12, 14, 15, 18, 19, 21, 27, 29, 30, 31, 33, 38, 40, 53, 59], "previou": [7, 10, 11, 12, 32, 33, 34, 46, 48, 57, 60], "ca": [7, 8, 9, 10], "lta": [7, 8, 9, 10], "boundari": [7, 8, 10, 12, 31, 37, 39, 40, 50, 59], "condit": [7, 8, 10, 15, 23, 28, 50], "acajiz": 7, "instead": [7, 9, 14, 18, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 59], "emt": [7, 19, 49, 50, 61], "than": [7, 11, 21, 23, 28, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 51, 59], "ang": [7, 18], "algorithm": [7, 36, 37, 39], "repsectivlei": 7, "conta": 7, "metal": [7, 18, 19, 21, 46], "organ": [7, 32, 35], "framework": [7, 9, 10, 27, 31, 34, 59], "mof": [7, 9], "were": [7, 11, 14, 38, 41, 46], "dervi": 7, "experiment": [7, 9, 10, 16, 32], "overlap": [7, 36, 48, 57, 60], "due": [7, 21, 39, 46, 53], "inaccur": [7, 27], "rai": 7, "powder": 7, "diffract": 7, "pair": [7, 19, 28, 59], "distanc": [7, 19, 28, 35, 38, 39, 50, 59], "less": [7, 28, 33, 36, 37, 40, 59], "half": [7, 28, 30, 59], "radii": 7, "dictionari": 7, "identifi": [7, 11, 20, 32, 37, 40, 41, 50], "letter": [7, 53], "csd": 7, "defect": 7, "consol": [7, 8, 15], "task": [7, 11, 12, 18, 52, 53], "li": [7, 18, 33], "86": [7, 46, 50], "Be": [7, 10, 11, 12, 18, 28, 52, 59], "53": [7, 38, 40, 50], "b": [7, 18, 28, 29, 30, 31, 32, 34, 37, 38, 39, 40, 53, 59, 61], "01": [7, 11, 13, 29, 30, 34, 36, 39, 40, 46, 50, 59], "88": [7, 50], "89": [7, 50], "82": [7, 28, 35, 40, 50, 59], "na": [7, 18], "mg": 7, "al": [7, 18], "si": [7, 18], "cl": [7, 18], "sc": 7, "62": [7, 28, 35, 50, 59], "ti": [7, 12, 39, 40, 41], "65": [7, 40, 50], "v": [7, 10, 21, 29, 32, 59], "51": [7, 46, 50], "cr": 7, "mn": 7, "fe": [7, 18], "co": [7, 9, 18, 28, 30, 50, 59], "ni": [7, 37], "cu": [7, 18, 46], "zn": 7, "ge": 7, "se": 7, "br": 7, "rb": 7, "sr": 7, "84": [7, 50], "zr": 7, "73": [7, 50], "nb": [7, 39, 41], "66": [7, 35, 50], "mo": 7, "57": [7, 35, 50], "ru": 7, "58": [7, 15, 50], "rh": [7, 46], "63": [7, 28, 50, 59], "pd": [7, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46], "68": [7, 29, 50, 59], "ag": [7, 46], "56": [7, 16, 40, 49, 50], "sn": [7, 35, 41], "64": [7, 12, 35, 36, 41, 50], "sb": 7, "te": 7, "cs": [7, 18, 27, 38, 50], "85": [7, 32, 50], "ba": 7, "52": [7, 35, 50], "la": [7, 31, 59], "91": [7, 41, 46, 50], "ce": 7, "98": [7, 50], "pr": 7, "75": [7, 18, 35, 46, 50], "nd": 7, "92": [7, 41, 50], "sm": 7, "eu": 7, "83": [7, 40, 50], "gd": 7, "79": [7, 50], "tb": 7, "dy": [7, 28, 59], "ho": 7, "er": 7, "80": [7, 12, 50], "tm": 7, "yb": 7, "lu": 7, "hf": [7, 18], "ir": [7, 11, 33], "50": [7, 15, 19, 30, 31, 32, 33, 35, 38, 41, 50, 53, 59], "au": [7, 46], "hg": 7, "72": [7, 28, 46, 50, 59], "bi": [7, 32, 52, 53], "th": [7, 21, 31, 59], "97": [7, 41, 50], "u": [7, 14, 32, 41, 46], "76": [7, 46, 50], "pu": 7, "71": [7, 50], "util": [8, 11, 16, 18, 36, 37, 38, 39, 40, 49, 52, 53], "sure": [8, 10, 11, 12, 14, 23, 37, 38, 39, 52], "anaconda": [8, 15, 48, 49, 52, 57, 60], "manag": [8, 15, 23, 53], "block": [8, 14, 18, 35, 39, 40, 41, 48, 49, 57, 60, 61], "statement": [8, 15, 28, 29, 59], "next": [8, 9, 10, 11, 12, 14, 15, 18, 19, 32, 40, 48, 49, 53, 57, 60, 61], "crystallograph": 8, "cif": [8, 10], "along": [8, 32, 35, 36, 40], "found": [8, 11, 12, 19, 27, 28, 32, 36, 40, 48, 49, 50, 57, 59, 60, 61], "exercise_nam": 8, "zeolit": 8, "applic": [8, 9, 23, 36, 40, 53], "sever": [8, 9, 23, 27, 35, 36, 44, 49, 52, 53], "throughout": [8, 32, 52], "train": [8, 11, 12, 14, 15, 22, 27, 32, 33, 34, 35, 36, 37, 38, 40, 41, 49, 51, 61], "cours": [8, 32, 33, 34, 36, 37, 40, 44, 48, 49, 57, 60, 61], "built": [8, 14, 18, 27, 28, 29, 32, 34, 35, 40, 41, 59], "manual": [8, 9, 23, 32, 40, 49, 61], "activ": [8, 9, 38, 44, 46, 49, 50], "lastli": [8, 11, 14, 15], "volum": [8, 10, 30, 35, 59], "One": [9, 27, 34, 35, 36, 37, 38, 40, 41, 50], "major": [9, 12, 37, 40, 52], "geometr": [9, 38, 48, 57, 60], "linear": [9, 22, 28, 34, 36, 37, 39, 40, 46], "bond": [9, 21, 32], "\u00e5": [9, 13], "confirm": [9, 46, 52], "match": [9, 28, 30, 33, 41, 59], "111": [9, 18, 35, 46, 50], "hcp": 9, "site": [9, 14, 16, 18, 29, 32, 37, 38, 39, 46, 49, 53, 59], "stabl": [9, 11, 12], "correspond": [9, 12, 15, 18, 31, 33, 34, 35, 37, 38, 39, 40, 49, 53, 59], "satur": 9, "one": [9, 10, 12, 14, 16, 18, 19, 23, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 40, 41, 45, 49, 50, 52, 53, 59, 61], "monolay": 9, "case": [9, 12, 28, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 48, 49, 57, 59, 60, 61], "shown": [9, 18, 21, 27, 38], "figur": [9, 40, 44, 46, 53], "larg": [9, 16, 29, 30, 31, 32, 34, 35, 36, 39, 40, 46, 48, 53, 57, 59, 60], "teal": 9, "calcium": 9, "choic": [9, 12, 14, 36, 40], "add": [9, 15, 18, 21, 22, 28, 29, 33, 36, 37, 38, 40, 49, 59], "reduc": [9, 12, 34, 36, 41], "cost": [9, 13, 27, 37, 40], "comment": [9, 11, 12, 13, 53], "reason": [9, 12, 19, 23, 28, 32, 33, 35, 36, 41, 44, 53, 59], "domin": 9, "would": [9, 15, 18, 32, 34, 35, 38, 40], "expect": [9, 29, 31, 37, 46, 51, 52, 53, 59], "shift": [9, 18, 37], "pristin": 9, "allow": [9, 16, 18, 19, 23, 28, 30, 31, 32, 37, 38, 40, 41, 46, 50, 53, 59], "co2": [9, 18, 46], "phase": [10, 46], "carbon": [10, 13], "dioxid": 10, "ammonia": 10, "common": [10, 18, 21, 23, 28, 30, 31, 33, 34, 36, 37, 40, 47, 53], "perdew": [10, 21], "burk": 10, "ernzerhof": 10, "gradient": [10, 21], "gga": [10, 21, 46, 48, 57, 60], "graphit": 10, "compar": [10, 11, 12, 21, 29, 31, 34, 35, 36, 39, 40, 41, 49, 53, 59, 61], "those": [10, 11, 46, 52], "notic": [10, 11, 16, 40, 46, 49], "json": [10, 13, 46], "get_e_form": 10, "e_form": 10, "abov": [10, 11, 12, 18, 28, 29, 32, 34, 37, 38, 40, 41, 53, 59], "b3lyp": [10, 21], "hydrid": 10, "doe": [10, 11, 12, 18, 23, 27, 28, 29, 33, 36, 40, 41, 53, 59], "why": [10, 11, 13, 32], "revisit": [10, 33, 35, 36, 41], "prior": [10, 37, 39, 40, 49, 52, 53, 61], "empti": [10, 15, 28, 40, 59], "report": [10, 11, 13, 30, 48, 49, 53, 57, 59, 60], "both": [10, 14, 20, 27, 28, 31, 33, 34, 35, 36, 45, 46, 47, 48, 50, 52, 53, 57, 59, 60], "answer": [10, 19, 29, 31, 32, 40, 44, 59], "But": [10, 18], "lih5c5n2o5": 10, "pbc": [10, 18, 50], "len": [10, 28, 31, 33, 34, 35, 36, 37, 40, 46, 50, 59], "don": [10, 28, 32, 33, 35, 36, 38, 39, 41, 48, 49, 57, 59, 60, 61], "origin": [10, 11, 18, 28, 33, 34, 35, 36, 37, 38, 39, 40, 41, 59], "adjust": 10, "lattic": [10, 13, 18, 32], "fluctuat": 10, "equidist": 10, "fit": [10, 11, 12, 33, 34, 36, 37, 38, 39, 40, 41], "cubic": [10, 13, 18, 31, 59], "state": [10, 16, 21, 27, 32, 40, 46, 48, 57, 60], "poli": 10, "order": [10, 15, 33, 34, 36, 50], "find": [10, 19, 28, 32, 33, 34, 37, 38, 39, 41, 46, 48, 49, 51, 53, 57, 60, 61], "constant": [10, 13, 18, 27, 32, 33, 37, 53], "minim": [10, 13, 28, 31, 32, 33, 36, 37, 38, 40, 48, 49, 57, 59, 60, 61], "recal": [10, 12, 38, 40], "vec": [10, 27, 33, 34, 36, 37, 38, 39, 40], "v_1": 10, "cdot": [10, 16], "v_2": 10, "v_3": 10, "correpond": 10, "unmanipul": 10, "strategi": [11, 12, 21, 34, 36, 37, 38, 40, 41, 48], "regress": [11, 27, 34, 35, 36, 37], "interpol": [11, 30, 41], "hyperparamet": [11, 12, 33, 36, 40], "tune": [11, 12, 36, 37, 39, 40], "dimension": [11, 12, 20, 21, 27, 31, 38, 39, 40, 41, 51], "reduct": [11, 40, 41, 51], "small": [11, 12, 28, 38, 40, 52, 59], "sampl": [11, 12, 27, 31, 35, 37, 38, 39, 40, 41, 49, 50, 52, 59, 61], "techniqu": [11, 12, 32, 35, 36, 37, 40, 52, 53], "implement": [11, 12, 19, 28, 29, 32, 34, 36, 37, 38, 39, 40, 41, 48, 50, 53, 57, 59, 60], "scikit": [11, 12, 15, 33, 34, 35, 36, 37, 38, 39, 40], "org": [11, 12, 15, 27, 28, 30, 31, 32, 50, 59], "spectrum": [11, 34], "ethanol": 11, "panda": [11, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46], "excel": [11, 18, 33], "csv": [11, 29, 33, 34, 59], "datafram": [11, 35, 41, 46], "radial": [11, 12, 27, 33, 36, 50], "basi": [11, 12, 33, 34, 36, 49, 61], "kernel": [11, 12, 34, 37, 40], "parametr": [11, 34, 51], "model": [11, 12, 21, 24, 27, 31, 32, 51, 52, 53, 59], "intepol": 11, "gaussian": [11, 12, 27, 33, 34, 35, 38, 39, 50], "100": [11, 13, 29, 30, 31, 32, 33, 35, 36, 40, 41, 46, 50, 59], "mae": [11, 15, 50], "color": [11, 12, 36, 38, 39, 40], "part": [11, 20, 28, 29, 33, 37, 38, 40, 48, 49, 51, 57, 59, 60], "everi": [11, 15, 27, 32, 33, 37, 40, 41, 44, 46, 50], "third": [11, 28, 38, 40, 59], "happen": [11, 12, 28, 38, 39, 48, 57, 59, 60], "observ": [11, 48, 53, 57, 60], "dataset": [11, 12, 29, 33, 34, 36, 39, 41, 59], "ridg": [11, 34, 38], "krr": [11, 34], "l2": [11, 34], "regular": [11, 32, 33, 38], "control": [11, 29, 33, 34, 38, 53], "smooth": [11, 38, 39], "strength": [11, 34, 38], "alpha": [11, 30, 37, 39, 40, 41, 46, 49, 59], "infin": [11, 12, 28, 31, 38, 59], "try": [11, 28, 31, 34, 36, 39, 40, 41, 59], "l1": [11, 34], "lasso": 11, "place": [11, 13, 29, 30, 31, 53, 59], "unlik": [11, 28, 35, 38, 40, 59], "remov": [11, 16, 18, 37, 38, 39], "unnecessari": 11, "featur": [11, 27, 28, 31, 33, 34, 36, 37, 38, 39, 40, 41, 53, 59], "entir": [11, 21, 28, 29, 31, 37, 40, 52, 59], "sklearn": [11, 12, 33, 34, 35, 36, 37, 38, 39, 40, 41], "gridsearchcv": [11, 34], "fold": [11, 34], "valid": [11, 16, 18, 24, 32, 34, 38, 45, 49], "rang": [11, 28, 29, 30, 31, 33, 34, 35, 36, 37, 40, 41, 46, 50, 52, 59], "001": 11, "happend": 11, "increas": [11, 27, 35, 36, 38, 40, 41], "princip": [11, 40, 41], "compon": [11, 12, 16, 21, 27, 41, 53], "unsupervis": [11, 12, 36, 40, 41], "diabet": 11, "toi": [11, 12, 19, 35, 38, 39, 40, 47], "predict": [11, 12, 20, 27, 33, 34, 38, 40, 41, 52, 53], "patient": 11, "suscept": 11, "ten": [11, 12], "onc": [11, 19, 23, 28, 29, 30, 32, 37, 39, 40, 41, 44, 49, 59, 61], "normal": [11, 29, 31, 34, 38, 40, 49, 50, 59, 61], "stanadrd": 11, "scaler": 11, "load_diabet": 11, "html": [11, 12, 28, 30, 31, 59], "preprocess": [11, 46], "standardscal": 11, "pca": [11, 12, 41], "work": [11, 12, 14, 18, 23, 24, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 49, 53, 57, 59, 60], "orthogon": 11, "greatest": [11, 28, 59], "amount": [11, 36], "varianc": [11, 29, 31, 40, 41, 59], "keep": [11, 32, 33, 36, 41, 44, 51, 52], "covari": [11, 12, 35, 40, 41], "matrix": [11, 12, 27, 31, 34, 37, 38, 40, 41], "minimum": [11, 12, 18, 40, 41, 44], "captur": [11, 21, 36, 40], "90": [11, 12, 32, 50], "done": [11, 18, 19, 23, 30, 33, 34, 35, 38, 59], "weight": [11, 27, 38, 40, 50, 52, 53], "behav": [11, 28, 29, 31, 44, 59], "therefor": [11, 23, 27, 33, 35, 36, 37, 38, 39, 46, 48, 49, 57, 60], "redund": [11, 28, 59], "hint": [11, 34, 36], "components_": 11, "routin": 11, "custom": [11, 30, 59], "made": [11, 32, 38, 49, 53, 61], "myplot": 11, "score": [11, 12, 33, 34, 41, 53], "coeff": [11, 34], "label": [11, 12, 31, 35, 36, 37, 38, 39, 40, 50], "none": [11, 12, 28, 33, 34, 35, 36, 38, 40, 41, 59], "xs": 11, "ys": 11, "shape": [11, 29, 30, 33, 35, 36, 37, 38, 39, 40, 41, 46, 50, 59], "scalex": 11, "max": [11, 29, 30, 33, 34, 35, 37, 39, 40, 41, 59], "min": [11, 29, 30, 33, 34, 35, 37, 39, 40, 41, 59], "scalei": 11, "scatter": [11, 36, 37, 38, 39, 40, 41, 50], "y1": 11, "arrow": [11, 30, 59], "var": [11, 29, 31, 59], "va": 11, "xlim": [11, 38, 39], "ylim": [11, 38, 39], "xlabel": [11, 30, 50, 59], "pc": [11, 36], "ylabel": [11, 30, 50, 59], "call": [11, 12, 14, 15, 18, 19, 28, 29, 31, 33, 34, 36, 38, 47, 48, 49, 57, 59, 60, 61], "classif": [12, 36, 38, 40], "supper": 12, "vector": [12, 29, 30, 31, 33, 34, 35, 39, 40, 46, 59], "machin": [12, 18, 24, 27, 32, 34, 35, 39, 51, 52, 53, 54], "moon": [12, 36, 37], "200": [12, 31, 35, 36, 37, 38, 39, 50, 59], "nois": [12, 31, 36, 37, 38, 39, 40, 59], "make_moon": [12, 36, 37, 38, 39], "accord": [12, 27, 28, 59], "its": [12, 15, 16, 19, 23, 27, 29, 30, 31, 36, 37, 38, 39, 40, 48, 53, 57, 59, 60], "assign": [12, 21, 28, 29, 37, 39, 40, 53, 59], "mpl": 12, "inlin": [12, 13, 19, 28, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 50, 59], "support": [12, 28, 30, 39, 40, 50, 53, 59], "rbf": [12, 33, 34, 36, 38, 40], "discrimin": [12, 36, 39], "gamma": [12, 28, 33, 34, 36, 40, 48, 50, 57, 59, 60], "achiev": [12, 29, 33, 34, 35, 38, 52, 53, 59], "split": [12, 39, 46], "show": [12, 18, 21, 23, 30, 33, 35, 36, 37, 38, 39, 40, 48, 57, 59, 60], "svm": [12, 37, 38], "decis": [12, 32, 37], "precis": [12, 28, 40, 59], "model_select": [12, 34, 39, 41], "train_test_split": [12, 34, 39, 41], "svc": [12, 37, 38], "metric": [12, 32, 34, 36, 38, 39, 41, 50], "accuracy_scor": [12, 41], "precision_scor": 12, "recall_scor": 12, "create_and_train_model": 12, "x_data": 12, "tupl": [12, 29, 50], "y_data": 12, "random_st": [12, 35, 36, 40, 41], "int": [12, 21, 28, 29, 35, 40, 59], "get_scor": 12, "x_test": [12, 33, 34, 39, 41], "y_test": [12, 34, 39, 41], "diminish": 12, "improv": [12, 21, 36, 37, 38, 40, 52, 53], "remain": [12, 15, 27, 52], "confus": [12, 28, 40, 53, 59], "confusion_matrix": [12, 41], "confusionmatrixdisplai": 12, "random": [12, 29, 31, 34, 35, 36, 37, 38, 39, 40, 59], "nearest": [12, 28, 40, 59], "neighbor": [12, 35, 36, 40, 41], "knn": [12, 37, 40], "laslti": 12, "discuss": [12, 27, 30, 31, 32, 45, 52, 53, 59], "loss": [12, 28, 33, 34, 39, 50, 59], "Is": 12, "supervis": [12, 36, 40, 41], "un": 12, "kneighborsclassifi": [12, 39], "via": [12, 18, 28, 36, 53, 59], "democrat": 12, "vote": [12, 39], "known": [12, 18, 21, 31, 35, 39, 40, 46, 48, 53, 57, 59, 60], "simpl": [12, 13, 15, 18, 19, 27, 28, 30, 31, 37, 39, 40, 46, 48, 59, 60], "win": 12, "dealt": 12, "decreas": [12, 36, 39, 41], "until": [12, 15, 19, 39, 40], "tie": [12, 39], "broken": [12, 39], "still": [12, 28, 32, 35, 36, 37, 39, 41, 46, 49, 59, 61], "count": [12, 28, 34, 41, 52, 53, 59], "sinc": [12, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 57, 59, 60], "target": [12, 35, 36, 41, 53], "multi": [12, 27, 29, 31, 36, 39, 40, 50, 59], "make_blob": [12, 35, 37, 38, 39], "150": [12, 40, 50], "cluster": [12, 36, 41, 48, 60], "decomposit": [12, 36, 40, 41, 46], "tree": [12, 40], "necessari": [12, 21, 32, 35, 38, 40, 41, 45, 48, 52, 53, 57, 60], "decid": [12, 30, 33, 39, 40, 48, 52, 57, 59, 60], "extent": [12, 30, 59], "decisiontreeclassifi": [12, 39], "classifi": [12, 37, 38, 39, 41], "train_tre": 12, "x_train": [12, 33, 34, 39, 41], "y_train": [12, 33, 34, 39, 41], "max_depth": 12, "naiv": 12, "naive_bay": [12, 39, 41], "gaussiannb": [12, 39, 41], "bay": [12, 37], "train_gnb": 12, "focus": [12, 20, 53], "new": [12, 14, 21, 23, 24, 28, 29, 33, 34, 35, 36, 37, 38, 40, 49, 53, 54, 59, 61], "pattern": [12, 36, 40], "exist": [12, 21, 28, 32, 41, 49, 53, 59], "digit": [12, 15, 35, 36], "mnist": [12, 36, 41], "high": [12, 20, 27, 32, 36, 39, 40, 48, 51, 53, 57, 60], "consist": [12, 21, 33, 35, 37, 46, 48, 49, 52, 53, 57, 60, 61], "hand": [12, 35, 36, 41, 48, 49, 53, 57, 60], "drawn": [12, 39, 41], "commonli": [12, 23, 32, 33, 34, 37, 39, 40], "process": [12, 31, 32, 35, 38, 39, 40, 52, 53], "797": [12, 35], "present": [12, 15, 27, 41, 48, 52, 53, 57, 60], "pixel": [12, 35, 36], "thu": [12, 49], "load_digit": [12, 35, 36, 41], "mixtur": 12, "gmm": 12, "exampl": [12, 13, 14, 15, 16, 18, 21, 27, 28, 29, 30, 33, 34, 39, 48, 49, 50, 57, 59, 60, 61], "y_mnist": [12, 35, 36, 41], "variabl": [12, 23, 29, 30, 31, 33, 35, 37, 38, 39, 40, 41, 49, 61], "quickli": [12, 41], "subset": [12, 29, 39, 41, 59], "spheric": [12, 40, 41], "convinc": [12, 32, 37], "synthet": [12, 37, 41], "gaussianmixtur": [12, 40, 41], "train_gmm": 12, "n_compon": [12, 36, 40, 41], "8x8": [12, 35, 36], "plot_imag": 12, "imshow": [12, 30, 35, 36, 41, 59], "reshap": [12, 34, 35, 36, 37, 38, 39, 40, 41], "cmap": [12, 30, 35, 36, 38, 39, 41, 59], "grai": [12, 30, 59], "estim": [12, 32, 37, 39, 40, 46], "kde": 12, "bandwidth": [12, 40, 41], "kerneldens": [12, 41], "train_kde_model": 12, "start": [13, 19, 21, 23, 28, 29, 30, 32, 37, 38, 40, 46, 48, 49, 52, 53, 57, 59, 60, 61], "isol": [13, 48, 57, 60], "box": [13, 18, 19, 45, 48, 57, 60], "dimens": [13, 27, 28, 29, 30, 33, 35, 36, 39, 40, 46, 59], "interv": 13, "increment": 13, "against": [13, 35], "matplolib": 13, "convent": [13, 27, 28, 50, 59], "per": [13, 27, 48, 49, 53, 57, 60, 61], "cpu": [13, 40, 48, 49, 57], "cutoff": [13, 27, 37, 40, 45, 48, 50, 57, 60], "versu": 13, "behavior": [13, 28, 34, 38, 44, 59], "diamond": 13, "smaller": [13, 28, 36, 38, 40, 59], "dens": [13, 40], "linux": [14, 49, 51, 61], "skill": [14, 15, 32, 53], "ic": [14, 23, 48, 49, 57, 60], "vip": [14, 27, 28, 48, 49, 50, 57, 59, 60, 61], "grad": [14, 44], "gtid": 14, "termin": [14, 38, 48, 49, 52, 57, 60, 61], "cheat": 14, "microsoft": [14, 52], "studio": 14, "phrase": 14, "hello": [14, 28, 29, 59], "world": [14, 28, 35, 52, 53, 59], "schedul": 14, "explicitli": [14, 21, 29, 30, 33, 40, 41, 53, 59], "alloc": [14, 46], "core": [14, 18, 19, 21], "minut": [14, 32, 52], "output": [14, 15, 28, 30, 31, 33, 35, 36, 37, 38, 39, 40, 41, 48, 49, 53, 57, 59, 60, 61], "save": [14, 15, 23, 48, 49, 50, 57, 60, 61], "sbatch": [14, 48, 49, 57], "remind": [14, 29, 44, 59], "squeue": 14, "usernam": [14, 23, 49], "subdirectori": 14, "move": [14, 33, 35, 36, 40, 41, 48, 49, 57, 60, 61], "view": [14, 18, 19, 29, 35, 36, 59], "delet": 14, "ensur": [14, 32, 37, 38, 39, 40, 53], "success": [14, 32, 33, 36, 38, 53], "individu": [14, 18, 34, 40, 52, 53], "loop": [14, 15, 23], "locat": [15, 18, 28, 30, 48, 49, 57, 59, 60], "repo": [15, 27], "version": [15, 28, 36, 37, 38, 39, 40, 41, 46, 48, 49, 52, 57, 60], "pylab": [15, 30, 59], "collatz": 15, "conjectur": 15, "famou": [15, 32, 35], "unsolv": 15, "problem": [15, 21, 22, 28, 31, 32, 33, 35, 36, 38, 39, 52, 53, 59], "ask": [15, 32, 49, 52, 61], "whether": [15, 28, 35, 40, 52, 59], "arithmet": [15, 28, 29, 59], "oper": [15, 22, 23, 28, 34, 39, 52, 53], "eventu": 15, "transform": [15, 31, 33, 36, 38, 41, 59], "integ": [15, 28, 29, 37, 59], "argument": [15, 19, 29, 30, 31, 38, 40, 48, 49, 57, 60, 61], "If": [15, 18, 19, 23, 28, 29, 30, 32, 33, 34, 35, 36, 37, 40, 44, 48, 49, 50, 52, 53, 57, 59, 60, 61], "even": [15, 19, 28, 29, 32, 35, 36, 39, 40, 41, 46, 59], "odd": 15, "multipli": [15, 29, 37, 38, 59], "number_i": 15, "n_iter": [15, 36], "init": [15, 36], "collatz_exercis": 15, "png": [15, 18, 30, 59], "string": [15, 50], "charact": [15, 28, 32, 59], "pass": [15, 28, 31, 40, 59], "being": [15, 21, 28, 33, 34, 35, 36, 40, 41, 59], "print_even": 15, "string_in": 15, "gojacket": 15, "me": 15, "ishmael": 15, "ilovechb": 15, "incom": 15, "tax": 15, "salari": 15, "scheme": [15, 37, 46], "000": 15, "rate": [15, 37, 53], "get_tax": 15, "58500": 15, "revers": [15, 28, 36, 59], "6572": 15, "2756": [15, 50], "658": 15, "2940": 15, "44112": 15, "print_revers": 15, "number_revers": 15, "mean_absolute_error": 15, "calcualt": [15, 27], "describ": [16, 27, 28, 31, 32, 34, 35, 37, 40, 41, 52, 59], "releas": 16, "chemic": [16, 18, 19, 27, 40, 48, 50, 52, 53, 57, 60], "speci": [16, 18, 40], "raw": [16, 33], "typic": [16, 33, 34, 35, 36, 37, 39, 40], "quit": [16, 18, 23, 37], "often": [16, 28, 29, 30, 33, 34, 35, 37, 39, 40, 45, 59], "inconveni": [16, 28, 30, 59], "own": [16, 28, 34, 36, 38, 46, 49, 52, 59, 61], "form": [16, 19, 21, 23, 31, 33, 34, 36, 37, 38, 40, 59], "h_": [16, 48, 57, 60], "o_": 16, "equal": [16, 28, 31, 33, 34, 35, 37, 38, 40, 41, 46, 59], "uniqu": [16, 21, 40, 53, 54], "element": [16, 27, 36, 37, 40, 50], "h2": [16, 18, 19], "kpoint": 16, "04": [16, 36, 40, 46, 50], "regist": 16, "hice1": [16, 49], "nyu49": [16, 49, 53], "local": [16, 18, 21, 27, 30, 36, 40, 49, 59], "python3": [16, 18, 28, 29, 37, 38, 39, 49, 52, 59], "471": [16, 50], "userwarn": [16, 49], "fd_grid": 16, "mesh_spac": 16, "convers": [16, 49], "ignor": [16, 40, 49], "warn": [16, 37, 38, 39, 49, 61], "sparc_pars": [16, 49], "kei": [16, 22, 27, 28, 32, 33, 34, 36, 37, 38, 39, 40, 49, 53, 59], "poisson_solv": [16, 49], "verbos": [16, 49, 50], "h2_energi": 16, "h2o_energi": 16, "108": [16, 49, 50], "mass": [16, 31, 49, 59], "outputfil": [16, 49], "final": [16, 21, 28, 33, 36, 40, 41, 46, 52, 53, 59], "e_h2o": [16, 19], "e_h2": [16, 19], "e_f": 16, "462": [16, 50], "712": 16, "theoret": 17, "est": 17, "draw": [17, 30, 41, 53, 59], "insprir": 17, "szabo": 17, "ostlund": 17, "intro": [17, 53], "modern": 17, "fall": [17, 22, 40], "2024": [17, 22], "reformul": 17, "chbe": 17, "6745": 17, "jupyt": [17, 18, 28, 52, 53, 54, 59], "atomist": [18, 50, 53], "extrem": [18, 23, 35, 36, 41], "power": [18, 23, 28, 30, 34, 36, 37, 38, 39, 59], "remot": [18, 23, 53], "nglview": [18, 19], "through": [18, 19, 28, 32, 33, 34, 36, 40, 41, 46, 48, 49, 52, 53, 57, 59, 60, 61], "notebook": [18, 27, 50, 52], "nbextens": 18, "might": [18, 29, 32, 46, 48, 49, 57, 59, 60, 61], "alreadi": [18, 28, 29, 33, 34, 35, 36, 41, 48, 49, 57, 59, 60], "satisfi": [18, 29, 59], "scipi": [18, 30, 36, 37, 38, 39, 40, 41], "cycler": 18, "kiwisolv": 18, "pypars": 18, "dateutil": 18, "six": 18, "setuptool": 18, "ipywidget": 18, "nbformat": 18, "ipykernel": 18, "ipython": [18, 27, 28, 29, 39, 50, 59], "python_vers": 18, "traitlet": 18, "widgetsnbextens": 18, "jsonschema": 18, "genutil": 18, "tornado": 18, "client": 18, "pexpect": 18, "sys_platform": 18, "win32": 18, "jedi": 18, "decor": 18, "pygment": 18, "backcal": 18, "appnop": 18, "darwin": [18, 28, 59], "prompt": 18, "toolkit": [18, 30, 59], "pickleshar": 18, "pyrsist": 18, "attr": 18, "pyzmq": 18, "ptyprocess": 18, "parso": 18, "wcwidth": 18, "terminado": 18, "send2trash": 18, "prometheu": 18, "nbconvert": 18, "jinja2": 18, "testpath": 18, "bleach": 18, "pandocfilt": 18, "mistun": 18, "entrypoint": 18, "defusedxml": 18, "markupsaf": 18, "webencod": 18, "extens": [18, 30, 39, 59], "js": 18, "widget": 18, "32mok": 18, "0m": [18, 50], "like": [18, 19, 23, 27, 28, 31, 32, 33, 35, 37, 38, 39, 41, 48, 49, 50, 57, 60, 61], "programit": 18, "pretti": [18, 29, 41, 59], "abstract": [18, 32, 40], "symbol": [18, 30, 50, 59], "hh": 18, "_2": [18, 19, 34, 36, 38, 46, 55, 56, 58], "now": [18, 28, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 49, 50, 57, 59, 60, 61], "interest": [18, 27, 36, 38, 52, 53], "let": [18, 19, 23, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 48, 49, 52, 57, 59, 60, 61], "sai": 18, "want": [18, 19, 23, 28, 29, 30, 33, 35, 37, 40, 48, 49, 57, 59, 60, 61], "second": [18, 28, 34, 38, 59], "awai": [18, 38], "h4": 18, "though": [18, 35, 36, 40], "viewer": [18, 19], "ngl": 18, "backend": 18, "project": [18, 30, 35, 36, 52, 53, 59], "10x": 18, "20y": 18, "2z": 18, "savefig": [18, 30, 59], "cell_exampl": 18, "svg": [18, 30, 59], "_subplot": 18, "axessubplot": 18, "0x7f8796493690": 18, "repres": [18, 27, 28, 33, 35, 36, 37, 40, 41, 46, 59], "collect": 18, "involv": [18, 21, 28, 29, 31, 33, 40, 46, 52, 53, 59], "oxid": 18, "put": [18, 30, 33, 48, 57, 59, 60], "almost": [18, 31, 41, 59], "type": [18, 19, 21, 23, 27, 29, 30, 31, 33, 38, 39, 46, 47, 50], "imagin": 18, "0x7f8796542550": 18, "2_hydrogen": 18, "xyz": 18, "h2_2": 18, "lot": [18, 30, 34, 35, 37, 38, 39, 41, 49, 59, 61], "thing": [18, 23, 28, 29, 30, 33, 34, 35, 36, 37, 40, 49, 59, 61], "oner": 18, "luckili": [18, 40, 41], "databas": [18, 32], "miller": 18, "hold": [18, 34, 40], "similarli": [18, 28, 31, 35, 36, 59], "ton": [18, 19], "ll": [18, 19, 23, 52], "littl": [18, 28, 30, 38, 40, 41, 53, 59], "oh2": [18, 50], "119262": 18, "763239": 18, "477047": 18, "0x7f8796cb5450": 18, "g2": [18, 50], "ph3": 18, "p2": [18, 28, 59], "ch3cho": 18, "h2coh": 18, "ochcho": 18, "c3h9c": 18, "ch3cof": 18, "ch3ch2och3": 18, "hcooh": [18, 46], "hccl3": 18, "hocl": 18, "sh2": 18, "c2h2": 18, "c4h4nh": 18, "ch3sch3": 18, "sih2_s3b1d": 18, "ch3sh": 18, "ch3co": 18, "clf3": 18, "sih4": 18, "c2h6choh": 18, "ch2nhch2": 18, "isobuten": 18, "hco": [18, 46], "bicyclobutan": 18, "lif": 18, "c2h6": 18, "cn": 18, "clno": 18, "sif4": 18, "h3cnh2": 18, "methylenecyclopropan": 18, "ch3ch2oh": 18, "nacl": 18, "ch3cl": 18, "ch3sih3": 18, "alf3": 18, "c2h3": 18, "clf": 18, "pf3": 18, "ph2": 18, "ch3cn": 18, "cyclobuten": 18, "ch3ono": 18, "sih3": 18, "c3h6_d3h": 18, "NO": 18, "tran": 18, "butan": 18, "h2cchcl": 18, "lih": 18, "nh2": 18, "ch": [18, 38], "ch2och2": 18, "c6h6": 18, "ch3conh2": 18, "cyclobutan": 18, "h2cchcn": 18, "butadien": 18, "h2co": 18, "ch3cooh": 18, "hcf3": 18, "ch3": 18, "cs2": 18, "sih2_s1a1d": 18, "c4h4": 18, "n2h4": 18, "oh": [18, 46], "ch3och3": 18, "c5h5n": 18, "hcl": 18, "ch2_s1a1d": 18, "ch3ch2sh": 18, "ch3no2": 18, "bcl3": 18, "c4h4o": 18, "ch3o": [18, 46], "ch3oh": [18, 46], "c3h7cl": 18, "isobutan": 18, "ccl4": 18, "ch3ch2o": 18, "h2cchf": 18, "c3h7": 18, "c2h4": 18, "nccn": 18, "s2": [18, 28, 59], "alcl3": 18, "sicl4": 18, "sio": 18, "c3h4_d2d": 18, "cof2": 18, "butyn": 18, "c2h5": 18, "bf3": 18, "n2o": 18, "f2o": 18, "so2": 18, "h2ccl2": 18, "cf3cn": 18, "hcn": 18, "c2h6nh": 18, "oc": 18, "clo": 18, "c3h8": 18, "nh": 18, "c2f4": 18, "nf3": 18, "ch2_s3b1d": 18, "ch3ch2cl": 18, "ch3cocl": 18, "nh3": 18, "c3h9n": 18, "cf4": 18, "c3h6_c": 18, "si2h6": 18, "hcooch3": [18, 46], "cch": 18, "si2": 18, "c2h6so": 18, "c5h8": 18, "h2cf2": 18, "li2": 18, "ch2sch2": 18, "c2cl4": 18, "c3h4_c3v": 18, "ch3coch3": 18, "f2": [18, 28, 59], "ch4": 18, "h2cco": 18, "ch3ch2nh2": 18, "n2": 18, "cl2": 18, "h2o2": 18, "na2": 18, "beh": 18, "c3h4_c2v": 18, "no2": 18, "orthorhomb": 18, "iron": [18, 21], "fe2": 18, "87": [18, 46, 50], "435": [18, 50], "0x7f8796d676d0": 18, "0x7f8796ea14d0": 18, "cu_orthorhomb": 18, "0x7f8797230f50": 18, "cu_cub": 18, "0x7f879736ea50": 18, "mani": [18, 21, 23, 28, 30, 31, 32, 33, 34, 36, 38, 39, 40, 41, 49, 53, 59, 61], "easier": [18, 28, 30, 34, 35, 36, 38, 39, 40, 49, 59, 61], "few": [18, 19, 23, 29, 31, 32, 34, 35, 36, 37, 38, 40, 48, 57, 59, 60], "side": [18, 38], "1z": 18, "0x7f879984ee10": 18, "2x2x3": 18, "possibl": [18, 28, 30, 32, 36, 37, 40, 49, 53, 59], "twice": [18, 28, 33, 53, 59], "thrice": 18, "top": [18, 31, 32, 39, 49, 59, 61], "ontop": 18, "90x": 18, "0x7f879aa51050": 18, "tag": [18, 48, 49, 57, 60], "go": [18, 19, 32, 34, 36, 39, 40, 41, 46, 48, 49, 52, 53, 57, 60, 61], "been": [18, 19, 34, 35, 37, 40, 46, 48, 49, 52, 53, 57, 60], "summaris": 18, "mechan": [18, 19, 32, 40, 46], "dynam": [18, 47], "degre": [18, 28, 41, 46, 59], "freedom": [18, 46], "directli": [18, 27, 28, 30, 35, 36, 37, 38, 41, 46, 52, 59], "freez": 18, "atoms_obj": 18, "mask": [18, 39], "won": [18, 38, 39], "similar": [18, 28, 29, 33, 34, 36, 37, 38, 39, 40, 41, 48, 57, 59, 60], "fixbonglength": 18, "fixedlin": 18, "fixedplan": 18, "come": [18, 21, 34, 35, 36, 41, 49, 53, 61], "handi": 18, "molecular": [18, 21, 47], "graphic": [18, 30, 40, 59], "interfac": [18, 44], "line": [18, 28, 30, 33, 34, 48, 49, 57, 59, 60, 61], "beyond": [18, 34, 36, 39, 40, 41, 53], "scope": [18, 34, 39, 40, 52, 53], "help": [18, 23, 28, 32, 34, 35, 37, 40, 41, 51, 52, 53, 59], "abil": [19, 41, 53, 54], "At": [19, 32, 44, 49, 61], "fundament": [19, 39], "level": [19, 28, 31, 35, 38, 39, 46, 59], "That": [19, 28, 46, 59], "classic": [19, 27], "leonard": 19, "jone": 19, "implment": 19, "act": [19, 33], "black": [19, 30, 59], "instanc": [19, 28, 33, 34, 59], "quatum": 19, "abinit": 19, "primari": [19, 35], "lowest": 19, "rs": 19, "linspac": [19, 29, 30, 31, 33, 34, 38, 39, 41, 50, 59], "set_dist": [19, 50], "append": [19, 28, 34, 35, 36, 37, 38, 39, 40, 41, 50, 59], "scienc": [19, 20, 24, 31, 32, 35, 41, 44, 52, 53, 59], "meant": [19, 50], "combin": [19, 23, 29, 32, 36, 40, 41, 52, 59], "separ": [19, 29, 35, 36, 37, 38, 39, 40, 46, 59], "rxn": [19, 46], "product": [19, 31, 59], "reactant": 19, "chanc": 19, "quasinewton": 19, "nice": [19, 34, 35, 40], "e_rxn": 19, "veri": [19, 28, 29, 31, 32, 34, 35, 36, 37, 38, 39, 41, 45, 48, 49, 53, 57, 59, 60, 61], "real": [19, 28, 31, 32, 34, 35, 40, 41, 45, 47, 52, 53, 59], "285": [19, 50], "8261": 19, "physic": [19, 27, 32, 35, 52, 53], "howev": [19, 24, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 46, 47, 53, 59], "fast": [19, 23, 29, 36, 59], "principl": [19, 21, 36, 37, 39, 41], "behind": [19, 33, 34], "supercomput": [19, 48, 53, 60], "futur": [19, 21, 24, 48, 53, 57, 60], "true_valu": 19, "varieti": [19, 36], "nativ": 19, "keyword": [19, 29, 30, 32, 40, 49, 61], "pars": 19, "exchang": [19, 32, 48, 49, 57, 60, 61], "correl": [19, 32, 39, 40, 48, 49, 57, 60, 61], "nband": [19, 48, 57, 60], "properti": [19, 27, 29, 30, 48, 57, 59, 60], "membership": [20, 40], "qualit": [20, 40], "increasingli": [20, 35], "popular": [20, 21, 36], "context": [20, 32, 53], "llm": [20, 52, 53], "speech": 20, "simpler": 20, "difficulti": 21, "topic": [21, 24, 28, 32, 45, 52, 53, 59], "kitchin": [21, 27], "hohenberg": 21, "ground": [21, 27, 48, 57, 60], "variat": [21, 46], "3n": 21, "trial": 21, "wave": [21, 48, 57, 60], "extern": [21, 27, 28, 53, 59], "map": [21, 30, 36, 37, 40, 59], "noninteract": 21, "effect": [21, 27, 32, 38, 45], "led": [21, 53], "develop": [21, 23, 32, 44, 52, 53], "self": [21, 28, 48, 49, 52, 53, 57, 59, 60, 61], "particl": 21, "frac": [21, 33, 34, 36, 37, 38, 39, 40, 41], "triangledown": 21, "v_": 21, "eff": 21, "epsilon_j": 21, "phi_j": [21, 40], "mid": 21, "depend": [21, 27, 33, 34, 36, 37, 38, 39, 40], "eq": 21, "orbit": 21, "sum_": [21, 27, 36, 40], "till": 21, "epsilon": [21, 33, 38, 40], "literatur": [21, 34, 52, 53], "across": [21, 27, 29, 49, 53, 59, 61], "lda": [21, 49, 61], "analog": 21, "jacob": 21, "ladder": 21, "trend": 21, "nonloc": 21, "systemat": [21, 37], "deloc": 21, "uniform": [21, 29, 30, 59], "fa": 21, "rpbe": 21, "revpb": 21, "meta": 21, "upon": 21, "kinet": 21, "hybrid": [21, 52, 53], "semiloc": 21, "fulli": [21, 52], "pbe0": 21, "hse06": 21, "john": [21, 34], "deal": [21, 28, 35, 37, 39, 40, 41, 59], "highli": [21, 28, 30, 32, 36, 37, 39, 40, 53, 59], "contribut": [21, 32, 33, 52, 53], "neglig": 21, "valenc": 21, "kind": [21, 31, 35, 36, 37, 59], "norm": [21, 31, 34, 36, 38, 39, 40, 41, 59], "conserv": 21, "vanderbilt": 21, "ultrasoft": [21, 48, 57, 60], "constitut": 21, "cobalt": 21, "nickel": 21, "down": [21, 49, 53, 61], "vice": [21, 37], "versa": [21, 37], "unpair": 21, "singlet": 21, "triplet": 21, "moment": 21, "sensit": [21, 40, 41], "essenti": [21, 28, 33, 35, 39, 40, 48, 49, 57, 59, 60], "serv": [22, 53], "algebra": [22, 28, 37], "notat": 22, "eigenvalu": [22, 36], "eigenvector": [22, 36], "hamiltonian": 22, "placehold": 22, "linu": 23, "torvald": 23, "unix": 23, "maco": 23, "internet": [23, 32], "freeli": 23, "issu": [23, 27, 36, 38, 41, 44, 49, 53, 61], "complic": [23, 31, 59], "master": [23, 28, 59], "edit": [23, 27, 30, 50, 59], "stand": [23, 48, 57, 60], "insid": [23, 49, 61], "beneath": 23, "kept": 23, "slash": 23, "tmp": 23, "man": 23, "press": 23, "doesn": [23, 28, 34, 39, 48, 57, 59, 60], "hidden": [23, 30, 36, 37, 59], "tidl": 23, "backup": 23, "mkdir": [23, 49, 61], "thesi": 23, "nano": [23, 49], "draft": 23, "ctrl": 23, "question": [23, 44, 52, 53], "care": [23, 28, 38, 59], "recycl": [23, 35, 53], "rm": 23, "shell": 23, "fish": 23, "strung": 23, "togeth": [23, 28, 30, 33, 52, 59], "rc": 23, "tell": [23, 28, 32, 34, 35, 37, 38, 40, 49, 52, 59, 61], "shortcut": 23, "secur": 23, "putti": 23, "sent": 23, "connect": [23, 32, 36, 40], "big": [23, 28, 32, 37, 59], "visit": 23, "instruct": [23, 27, 49, 51, 52, 53, 61], "educ": 23, "compris": 24, "field": [24, 27, 31, 32, 36, 48, 49, 52, 53, 54, 57, 59, 60, 61], "rapidli": 24, "evolv": [24, 35], "overfit": [24, 34, 39], "underfit": [24, 34], "orient": [24, 28, 44], "languag": [24, 28, 32, 53, 59], "foundat": [24, 33], "area": [24, 30, 32, 37, 53, 59], "hu": [27, 50], "updat": [27, 40, 49, 50, 52, 53], "02": [27, 36, 40, 46, 50, 61], "nnff": 27, "bdqm": [27, 28, 50, 59], "symmetri": 27, "finger": [27, 50], "behler": [27, 50], "parrnello": [27, 50], "nn": [27, 50], "pole": [27, 50], "singlenn": 27, "paper": [27, 46, 50, 53], "gmp": 27, "arxiv": [27, 32, 50], "ab": [27, 28, 30, 34, 40, 47, 50, 59], "2102": [27, 50], "02390": [27, 50], "utm_sourc": [27, 50], "feedburn": [27, 50], "utm_medium": [27, 50], "feed": [27, 32, 35, 50], "utm_campaign": [27, 50], "253a": [27, 50], "252fqsxk": [27, 50], "2528excitingad": [27, 50], "2521": [27, 50], "2529": [27, 50], "electorn": 27, "viabl": 27, "overcom": [27, 37, 38, 39], "yet": [27, 36], "univers": [27, 35], "proven": 27, "parrinello": 27, "engin": [27, 29, 35, 40, 52, 53, 59], "2015": 27, "construct": [27, 33, 36, 37, 38, 40], "tutori": [27, 30, 59], "review": [27, 31, 44, 52, 59], "intern": 27, "journal": [27, 45], "115": [27, 50], "1032": [27, 50], "1050": [27, 50], "doi": [27, 32], "1002": [27, 50], "qua": 27, "24890": 27, "born": 27, "oppenheim": 27, "dictat": 27, "nuclear": 27, "coordin": [27, 28, 50, 52, 59], "charg": 27, "mathbf": 27, "main": [27, 30, 36, 38, 40, 41, 49, 52, 53, 59, 61], "assumpt": [27, 34, 35, 38, 39, 40], "partit": 27, "design": [27, 30, 44, 53, 54, 59], "breifli": 27, "sf": 27, "mainli": [27, 28, 59], "lei": 27, "2021": [27, 46], "translat": [27, 28, 59], "euclidean": [27, 28, 36, 39, 40, 59], "undesir": 27, "resolv": 27, "invari": 27, "permut": 27, "bodi": 27, "radiu": [27, 40], "describv": 27, "angular": [27, 50], "express": [27, 29, 31, 36, 59], "account": [27, 35, 36, 38, 46, 48, 49, 50, 53, 57, 60, 61], "among": 27, "column": [27, 29, 31, 32, 34, 35, 36, 40, 41, 46, 59], "whose": [27, 28, 48, 57, 59, 60], "regardless": [27, 28, 52, 59], "probe": [27, 54], "mcsh": [27, 50], "expans": 27, "mu_": 27, "abc": 27, "hat": [27, 41], "rho": 27, "s_": 27, "g_": [27, 38], "substack": 27, "den": 27, "surroud": 27, "central": [27, 54], "g_i": 27, "gen": 27, "bias": [27, 50], "molcul": 27, "schemat": [27, 34], "liu": 27, "m": [27, 28, 29, 30, 33, 36, 37, 38, 40, 46, 49, 59], "2020": [27, 61], "transfer": 27, "124": [27, 50], "17811": 27, "17818": 27, "1021": 27, "ac": [27, 46], "jpcc": 27, "0c04225": 27, "magic": [28, 59], "pytext": [28, 59], "nlp": [28, 59], "special": [28, 31, 37, 59], "math": [28, 33, 38, 59], "everyth": [28, 59], "namespac": [28, 59], "collis": [28, 59], "sin": [28, 30, 31, 50, 59], "gluttoni": [28, 59], "alias": [28, 59], "allevi": [28, 38, 59], "isn": [28, 37, 40, 41, 53, 59], "dir": [28, 59], "__doc__": [28, 59], "__file__": [28, 59], "__loader__": [28, 59], "__name__": [28, 59], "__package__": [28, 59], "__spec__": [28, 59], "aco": [28, 59], "acosh": [28, 59], "asin": [28, 59], "asinh": [28, 59], "atan": [28, 59], "atan2": [28, 59], "atanh": [28, 59], "ceil": [28, 59], "copysign": [28, 59], "cosh": [28, 59], "erf": [28, 59], "erfc": [28, 59], "exp": [28, 31, 33, 34, 36, 38, 39, 40, 41, 59], "expm1": [28, 59], "fab": [28, 59], "factori": [28, 59], "floor": [28, 59], "fmod": [28, 59], "frexp": [28, 59], "fsum": [28, 59], "gcd": [28, 59], "hypot": [28, 59], "inf": [28, 31, 59], "isclos": [28, 34, 50, 59], "isfinit": [28, 35, 40, 41, 59], "isinf": [28, 59], "isnan": [28, 59], "ldexp": [28, 59], "lgamma": [28, 59], "log10": [28, 29, 50, 59], "log1p": [28, 59], "log2": [28, 59], "modf": [28, 59], "nan": [28, 59], "pow": [28, 59], "radian": [28, 59], "remaind": [28, 59], "sinh": [28, 59], "sqrt": [28, 34, 35, 36, 40, 41, 59], "tan": [28, 59], "tanh": [28, 50, 59], "tau": [28, 59], "trunc": [28, 59], "doc": [28, 30, 31, 52, 59], "incomplet": [28, 53, 59], "incorrect": [28, 37, 40, 59], "doubt": [28, 59], "consult": [28, 52, 59], "descript": [28, 40, 59], "arc": [28, 59], "cosin": [28, 59], "measur": [28, 31, 32, 33, 40, 53, 59], "invers": [28, 29, 36, 37, 38, 41, 46, 49, 59, 61], "hyperbol": [28, 59], "sine": [28, 59], "tangent": [28, 36, 59], "sign": [28, 37, 59], "smallest": [28, 36, 59], "magnitud": [28, 59], "On": [28, 59], "platform": [28, 32, 59], "zero": [28, 29, 33, 34, 35, 37, 38, 40, 46, 59], "angl": [28, 41, 50, 59], "complementari": [28, 59], "avoid": [28, 32, 35, 59], "valueerror": [28, 29, 59], "neg": [28, 59], "largest": [28, 34, 35, 36, 59], "mantissa": [28, 59], "expon": [28, 59], "seq": [28, 59], "ieee": [28, 59], "754": [28, 59], "divisor": [28, 59], "rel_tol": [28, 59], "09": [28, 46, 59], "abs_tol": [28, 59], "otherwis": [28, 59], "must": [28, 29, 33, 38, 46, 50, 51, 53, 59], "least": [28, 29, 32, 34, 36, 38, 49, 52, 53, 59], "toler": [28, 40, 59], "anyth": [28, 37, 38, 39, 52, 53, 59], "themselv": [28, 33, 59], "neither": [28, 59], "nor": [28, 59], "logarithm": [28, 59], "fraction": [28, 36, 59], "carri": [28, 59], "closest": [28, 36, 38, 39, 40, 59], "exactli": [28, 29, 33, 37, 39, 40, 41, 59], "halfwai": [28, 59], "squar": [28, 29, 33, 34, 36, 38, 59], "truncat": [28, 40, 59], "toward": [28, 40, 44, 52, 53, 59], "__trunc__": [28, 59], "718281828459045": [28, 59], "141592653589793": [28, 59], "283185307179586": [28, 59], "dynload": [28, 59], "cpython": [28, 59], "37m": [28, 59], "docstr": [28, 59], "unhelp": [28, 59], "__abs__": [28, 59], "__add__": [28, 59], "__bool__": [28, 59], "__divmod__": [28, 59], "divmod": [28, 59], "__eq__": [28, 59], "__float__": [28, 59], "__floordiv__": [28, 59], "__format__": [28, 59], "format_spec": [28, 59], "__ge__": [28, 59], "__getattribute__": [28, 59], "getattr": [28, 59], "__getnewargs__": [28, 59], "__gt__": [28, 59], "__hash__": [28, 59], "hash": [28, 59], "__int__": [28, 59], "__le__": [28, 59], "__lt__": [28, 59], "__mod__": [28, 59], "__mul__": [28, 59], "__ne__": [28, 59], "__neg__": [28, 59], "__pos__": [28, 59], "__pow__": [28, 59], "mod": [28, 59], "__radd__": [28, 59], "__rdivmod__": [28, 59], "__repr__": [28, 59], "repr": [28, 59], "__rfloordiv__": [28, 59], "__rmod__": [28, 59], "__rmul__": [28, 59], "__round__": [28, 59], "ndigit": [28, 59], "round": [28, 39, 59], "__rpow__": [28, 59], "__rsub__": [28, 59], "__rtruediv__": [28, 59], "__str__": [28, 59], "__sub__": [28, 59], "__truediv__": [28, 59], "as_integer_ratio": [28, 59], "ratio": [28, 36, 40], "denomin": [28, 59], "overflowerror": [28, 59], "conjug": [28, 59], "complex": [28, 29, 33, 35, 38, 39, 40, 41, 53, 59], "hex": [28, 30, 59], "hexadecim": [28, 59], "represent": [28, 36, 40, 46, 59], "0x1": [28, 59], "999999999999ap": [28, 59], "14159": [28, 59], "921f9f01b866ep": [28, 59], "is_integ": [28, 59], "__getformat__": [28, 59], "typestr": [28, 59], "builtin": [28, 59], "probabl": [28, 31, 34, 37, 38, 39, 40, 41, 59], "doubl": [28, 31, 59], "suit": [28, 35, 36, 52, 59], "whichev": [28, 39, 59], "unknown": [28, 59], "endian": [28, 59], "__set_format__": [28, 59], "fmt": [28, 35, 59], "latter": [28, 59], "underli": [28, 39, 40, 41, 59], "realiti": [28, 59], "overrid": [28, 59], "affect": [28, 32, 34, 59], "binari": [28, 35, 36, 37, 41, 59], "fromhex": [28, 59], "ffffp10": [28, 59], "2047": [28, 59], "984375": [28, 59], "0x1p": [28, 59], "1074": [28, 59], "5e": [28, 59], "324": [28, 50, 59], "static": [28, 59], "__new__": [28, 59], "arg": [28, 31, 38, 59], "kwarg": [28, 41, 59], "signatur": [28, 59], "descriptor": [28, 50, 59], "imaginari": [28, 59], "cannot": [28, 33, 35, 37, 38, 39, 40, 44, 52, 59], "assert": [28, 59], "break": [28, 32, 39, 44, 49, 52, 53, 59, 61], "del": [28, 59], "elif": [28, 35, 37, 40, 41, 59], "exec": [28, 59], "global": [28, 30, 36, 59], "yield": [28, 32, 33, 34, 59], "awar": [28, 36, 45, 59], "boolean": [28, 29, 59], "b1": [28, 59], "b2": [28, 59], "bool": [28, 59], "0j": [28, 59], "substr": [28, 59], "rld": [28, 59], "str1": [28, 59], "str2": [28, 59], "str3": [28, 59], "concaten": [28, 59], "1j": [28, 59], "without": [28, 29, 34, 36, 38, 40, 49, 59], "str1str2str3": [28, 59], "altern": [28, 38, 41, 59], "intuit": [28, 34, 35, 36, 37, 39, 40, 59], "s3": [28, 59], "value1": [28, 59], "value2": [28, 59], "1415": [28, 59], "syntax": [28, 29, 30, 59], "nest": [28, 29, 50, 59], "nested_list": [28, 59], "stop": [28, 29, 59], "d": [28, 29, 32, 35, 36, 40, 50, 53, 59], "technic": [28, 32, 33, 36, 44, 47, 53, 59], "jargon": [28, 32, 59], "mutabl": [28, 59], "immut": [28, 59], "typeerror": [28, 59], "traceback": [28, 29, 59], "recent": [28, 29, 32, 53, 59], "last": [28, 29, 33, 35, 38, 40, 41, 59], "9734b1daa940": [28, 59], "item": [28, 59], "two_numb": [28, 59], "key1": [28, 59], "param": [28, 59], "parameter1": [28, 59], "parameter2": [28, 59], "parameter3": [28, 59], "entri": [28, 35, 36, 40, 59], "parameter4": [28, 59], "subdict_kei": [28, 59], "val": [28, 31, 59], "__________": [28, 59], "scwp": [28, 59], "scientif": [28, 30], "word": [28, 36, 53, 59], "sometim": [28, 29, 30, 33, 34, 35, 37, 40, 41, 49, 59, 61], "over": [28, 34, 36, 37, 38, 39], "enumer": [28, 35, 37, 38, 39, 40, 51, 59], "idx": [28, 59], "id_x": [28, 59], "compact": [28, 59], "xx": [28, 37, 39, 59], "x0": [28, 59], "xi": [28, 29, 37, 38, 39, 40, 59], "definit": [28, 36, 37, 38, 40, 59], "indent": [28, 59], "func0": [28, 59], "func1": [28, 59], "__main__": [28, 59], "xsquar": [28, 59], "myfunc": [28, 59], "debug": [28, 44, 50, 59], "343": [28, 50, 59], "advanc": [28, 31, 40, 59], "multiarg": [28, 59], "matlab": [28, 29], "suck": [28, 59], "rule": [28, 29, 31, 37, 59], "thank": [28, 59], "f1": [28, 59], "attribut": [28, 34, 59], "denot": [28, 59], "underscor": [28, 59], "__init__": [28, 59], "invok": [28, 59], "datamodel": [28, 59], "cartesian": [28, 59], "dx": [28, 31, 59], "2d": [28, 38, 41, 59], "p1": [28, 59], "000000": [28, 30, 46, 59], "250000": [28, 59], "500000": [28, 59], "expert": [28, 44, 59], "encount": [28, 40, 44, 59], "pointlist": [28, 59], "unneccesarili": [28, 59], "pin": [28, 59], "IT": [28, 59], "__class__": [28, 59], "__delattr__": [28, 59], "__dict__": [28, 59], "__dir__": [28, 59], "__init_subclass__": [28, 59], "__module__": [28, 59], "__reduce__": [28, 59], "__reduce_ex__": [28, 59], "__setattr__": [28, 59], "__sizeof__": [28, 59], "__subclasshook__": [28, 59], "__weakref__": [28, 59], "__contains__": [28, 59], "__delitem__": [28, 59], "__getitem__": [28, 59], "__iadd__": [28, 59], "__imul__": [28, 59], "__iter__": [28, 59], "__len__": [28, 59], "__reversed__": [28, 59], "__setitem__": [28, 59], "clear": [28, 36, 40, 41, 52, 53, 59], "extend": [28, 39, 46, 59], "sort": [28, 32, 36, 39, 59], "pl1": [28, 59], "unexpectedli": [28, 44, 59], "wise": 28, "good": [28, 30, 32, 33, 34, 35, 36, 40, 59], "wrong": [28, 46, 59], "easili": [28, 29, 31, 34, 35, 36, 37, 39, 40, 41, 52, 59], "better": [28, 30, 35, 36, 38, 41, 59], "readabl": [28, 59], "maintan": [28, 59], "troubleshoot": [28, 59], "mymodul": [28, 59], "my_vari": [28, 59], "my_funct": [28, 59], "myclass": [28, 59], "set_vari": [28, 59], "new_valu": [28, 59], "get_vari": [28, 59], "overwrit": [28, 59], "weak": [28, 36, 40, 59], "jagritisahoo": [28, 59], "coursework": [28, 59], "third_sem": [28, 59], "python_intro": [28, 59], "myvar": [28, 59], "my_class": [28, 59], "81": [28, 46, 50, 59], "c32f93e4dfa0": [28, 59], "keyerror": [28, 59], "6494c0fd3f22": [28, 59], "abort": [28, 59], "occur": [28, 35, 53, 59], "myfunct": [28, 59], "int_arg": [28, 59], "67483f723860": [28, 59], "61": [28, 36, 50, 59], "728ee3a9d065": [28, 59], "catch": [28, 59], "notdefin": [28, 59], "caught": [28, 59], "nameerror": [28, 59], "9b2d40d19c87": [28, 59], "jrjohansson": [28, 30, 59], "www": [28, 30, 41, 52, 59], "offici": [28, 30, 52, 59], "web": [28, 30, 32, 59], "page": [28, 30, 59], "pep": [28, 59], "0008": [28, 59], "style": [28, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 59], "guid": [28, 30, 59], "greenteapress": [28, 59], "thinkpython": [28, 59], "back": [29, 34, 35, 36, 40, 41, 59], "dedic": [29, 59], "arang": [29, 30, 31, 37, 39, 40, 41, 59], "ndarrai": [29, 50, 59], "e1f336250f69": [29, 59], "invalid": [29, 59], "liter": [29, 35, 59], "dtype": [29, 35, 40, 41, 50, 59], "effici": [29, 36, 37, 39, 40, 41, 59], "endpoint": [29, 50, 59], "logspac": [29, 50, 59], "mgrid": [29, 59], "meshgrid": [29, 30, 37, 38, 39, 59], "rand": [29, 31, 59], "distribut": [29, 31, 34, 36, 37, 38, 39, 40, 52, 59], "randn": [29, 31, 59], "ey": [29, 46, 59], "71428571": [29, 59], "42857143": [29, 59], "14285714": [29, 59], "85714286": [29, 59], "57142857": [29, 59], "28571429": [29, 59], "15443469": [29, 59], "64158883": [29, 59], "5443469": [29, 59], "41588834": [29, 59], "215": [29, 50, 59], "443469": [29, 59], "464": [29, 50, 59], "15888336": [29, 59], "33333333333333337": [29, 59], "6666666666666666": [29, 59], "3333333333333333": [29, 59], "6666666666666665": [29, 59], "333333333333333": [29, 59], "rand_uniform": [29, 59], "rand_norm": [29, 59], "48012987": [29, 59], "47237413": [29, 59], "69472084": [29, 59], "96773638": [29, 59], "90948751": [29, 59], "98234481": [29, 59], "04180248": [29, 59], "35583907": [29, 59], "86649923": [29, 59], "74037594": [29, 59], "44313288": [29, 59], "1305822": [29, 59], "27459825": [29, 59], "6022369": [29, 59], "80975182": [29, 59], "92298721": [29, 59], "21303185": [29, 59], "75858636": [29, 59], "annoi": [29, 59], "inconsist": [29, 40, 53, 59], "tsv": [29, 59], "tab": [29, 59], "head": [29, 35, 46, 59], "stockholm_td_adj": [29, 59], "dat": [29, 59], "1800": [29, 59], "genfromtxt": [29, 59], "77431": [29, 59], "savetxt": [29, 59], "m1": [29, 59], "certain": [29, 48, 49, 57, 59, 60], "bracket": [29, 59], "ommit": [29, 59], "whole": [29, 39, 40, 52, 59], "row": [29, 33, 34, 35, 40, 41, 46, 59], "48592621526273416": [29, 59], "39320197": [29, 59], "48592622": [29, 59], "36324379": [29, 59], "01187931": [29, 59], "16797644": [29, 59], "59601437": [29, 59], "00146124": [29, 59], "63602386": [29, 59], "34178976": [29, 59], "26215253": [29, 59], "90135028": [29, 59], "65320253": [29, 59], "53819379": [29, 59], "85305548": [29, 59], "15992202": [29, 59], "12604362": [29, 59], "87630864": [29, 59], "81996614": [29, 59], "84820733": [29, 59], "83141949": [29, 59], "86420059": [29, 59], "24237393": [29, 59], "82042579": [29, 59], "46236983": [29, 59], "72346029": [29, 59], "15369664": [29, 59], "290678": [29, 59], "70923425": [29, 59], "72081884": [29, 59], "79705541": [29, 59], "41168725": [29, 59], "8154973": [29, 59], "22475208": [29, 59], "32129672": [29, 59], "36781922": [29, 59], "upper": [29, 30, 31, 59], "extract": [29, 36, 40, 41, 59], "usag": [29, 50, 59], "subr": [29, 59], "58999857": [29, 59], "72976466": [29, 59], "56025706": [29, 59], "03397562": [29, 59], "33914918": [29, 59], "33279598": [29, 59], "row_indic": [29, 59], "66063383": [29, 59], "78185722": [29, 59], "08538858": [29, 59], "50967112": [29, 59], "96025493": [29, 59], "9992953": [29, 59], "81209343": [29, 59], "64494647": [29, 59], "88079298": [29, 59], "35600591": [29, 59], "59912385": [29, 59], "27916972": [29, 59], "0380985": [29, 59], "52180105": [29, 59], "84137092": [29, 59], "99267959": [29, 59], "col_indic": [29, 59], "rememb": [29, 32, 36, 44, 59], "skinni": [29, 59], "fat": [29, 59], "8828413": [29, 59], "95798832": [29, 59], "63045611": [29, 59], "16988725": [29, 59], "00438886": [29, 59], "78269257": [29, 59], "55362746": [29, 59], "00678702": [29, 59], "92757275": [29, 59], "74391061": [29, 59], "26054478": [29, 59], "94333052": [29, 59], "27704329": [29, 59], "62743922": [29, 59], "59401807": [29, 59], "54693468": [29, 59], "briefli": [29, 36, 37, 52, 59], "subtract": [29, 59], "v1": [29, 48, 57, 59, 60], "matric": [29, 31, 33, 36, 40, 59], "80135151": [29, 59], "98493697": [29, 59], "87576621": [29, 59], "15106052": [29, 59], "60270302": [29, 59], "96987393": [29, 59], "75153243": [29, 59], "30212105": [29, 59], "behaviour": [29, 59], "mutipl": [29, 59], "dot": [29, 31, 36, 37, 38, 46, 59], "inv": [29, 59], "det": [29, 59], "linalg": [29, 31, 36, 38, 39, 40, 41, 46, 59], "000000000000001": [29, 59], "statist": [29, 34, 36, 40], "stockholm": [29, 59], "temperatur": [29, 35, 59], "tempeatur": [29, 59], "avg": [29, 40, 59], "hi": [29, 34, 59], "loc": [29, 30, 31, 59], "deviat": [29, 34, 38, 39, 40, 41, 59], "meaningless": [29, 59], "278": [29, 50, 59], "0810699664401": [29, 59], "197109684751585": [29, 59], "stdev": [29, 35, 39, 59], "282271621340573": [29, 59], "59602320966341": [29, 59], "90550041e": [29, 59], "52304633e": [29, 59], "57292945e": [29, 59], "19710968e": [29, 59], "83217058e": [29, 59], "78546190e": [29, 59], "00000000e": [29, 36, 40, 59], "5852023410024356": [29, 59], "495667": [29, 59], "53786811": [29, 59], "62776447": [29, 59], "5308831": [29, 59], "65776438": [29, 59], "5564225": [29, 59], "67219267": [29, 59], "55226669": [29, 59], "63599215": [29, 59], "20205199": [29, 59], "43400518": [29, 59], "85094382": [29, 59], "90902935": [29, 59], "53537367": [29, 59], "16920129": [29, 59], "86653719": [29, 59], "18185072": [29, 59], "8349055": [29, 59], "65254124": [29, 59], "02925621": [29, 59], "91085185": [29, 59], "53407727": [29, 59], "9578823": [29, 59], "48133358": [29, 59], "54450772": [29, 59], "94190815": [29, 59], "18285163": [29, 59], "68145727": [29, 59], "80588745": [29, 59], "52923329": [29, 59], "07569367": [29, 59], "87914578": [29, 59], "70196062": [29, 59], "11497311": [29, 59], "95688812": [29, 59], "83611522": [29, 59], "underlai": [29, 59], "govern": [29, 59], "flatten": [29, 59], "pitfal": [29, 59], "20205199044075084": [29, 59], "9090293527816719": [29, 59], "4340051832902998": [29, 59], "realli": [29, 30, 38, 41, 59], "acopi": [29, 59], "ambigu": [29, 59], "member": [29, 40, 48, 49, 52, 53, 57, 59, 60], "advantag": [30, 34, 36, 37, 40, 59], "easi": [30, 33, 35, 36, 39, 40, 41, 59], "latex": [30, 59], "pdf": [30, 31, 41, 59], "ep": [30, 40, 59], "pgf": [30, 59], "galleri": [30, 59], "programmat": [30, 59], "bless": [30, 40, 41, 59], "curs": [30, 59], "plotli": [30, 59], "bokeh": [30, 59], "workhors": [30, 59], "oreint": [30, 59], "harder": [30, 59], "easiest": [30, 59], "familiar": [30, 32, 34, 35, 36, 53, 59], "relat": [30, 31, 35, 38, 40, 48, 52, 53, 57, 59, 60], "limit": [30, 31, 33, 40, 59], "implicitli": [30, 40, 59], "add_ax": [30, 59], "left": [30, 33, 34, 36, 38, 39, 40, 46, 59], "set_xlabel": [30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 59], "set_ylabel": [30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 59], "set_titl": [30, 33, 34, 36, 37, 38, 39, 40, 41, 59], "axes1": [30, 59], "axes2": [30, 59], "inset": [30, 59], "insert": 30, "life": [30, 59], "nrow": [30, 59], "ncol": [30, 59], "tight_layout": [30, 35, 40, 59], "ration": [30, 59], "resolut": [30, 33, 35, 59], "plan": [30, 52, 53, 59], "manuscript": [30, 59], "worthwhil": [30, 40, 59], "OR": [30, 59], "raster": [30, 59], "jpg": [30, 59], "great": [30, 34, 40, 59], "afterward": [30, 59], "inkscap": [30, 59], "adob": [30, 59], "illustr": [30, 40, 59], "300": [30, 33, 34, 38, 50, 59], "curve1": [30, 59], "curve2": [30, 59], "right": [30, 33, 34, 36, 38, 39, 40, 41, 46, 53, 59], "corner": [30, 35, 59], "transpar": [30, 59], "marker": [30, 33, 34, 40, 59], "linestyl": [30, 38, 59], "ls": [30, 37, 38, 39, 59], "lw": [30, 31, 46, 59], "red": [30, 59], "1155dd": [30, 59], "rgb": [30, 59], "bluish": [30, 59], "15cc55": [30, 59], "greenish": [30, 59], "dash": [30, 59], "blue": [30, 39, 59], "triangl": [30, 59], "ok": [30, 59], "circl": [30, 37, 38, 59], "linestyp": [30, 59], "green": [30, 59], "purpl": [30, 59], "markers": [30, 40, 59], "markerfacecolor": [30, 33, 34, 59], "yellow": [30, 59], "markeredgewidth": [30, 59], "markeredgecolor": [30, 40, 59], "set_xlim": [30, 33, 35, 38, 39, 59], "set_ylim": [30, 38, 39, 59], "tight": [30, 59], "automaticlli": [30, 59], "tighten": [30, 59], "tick": [30, 59], "onlin": [30, 53, 59], "dual": [30, 35, 59], "twinx": [30, 59], "twini": [30, 59], "ax1": [30, 59], "fontsiz": [30, 35, 59], "get_yticklabel": [30, 59], "set_color": [30, 59], "ax2": [30, 59], "xy": [30, 36, 38, 59], "xytext": [30, 59], "arrowprop": [30, 59], "facecolor": [30, 38, 59], "shrink": [30, 59], "encod": [30, 35, 59], "predefin": [30, 59], "straightforward": [30, 59], "pre": [30, 32, 53, 59], "cookbook": [30, 59], "show_colormap": [30, 59], "pcolor": [30, 59], "transpos": [30, 34], "perceptu": [30, 59], "prefer": [30, 34, 49, 52, 53, 59], "greyscal": [30, 59], "colorblind": [30, 59], "peopl": [30, 41, 59], "cook": [30, 59], "phi_ext": [30, 59], "flux_qubit_potenti": [30, 59], "phi_m": [30, 59], "phi_p": [30, 59], "cm": [30, 33, 34, 41, 59], "jet": [30, 59], "rdbu": [30, 38, 59], "viridi": [30, 59], "plasma": [30, 59], "vmin": [30, 35, 36, 59], "vmax": [30, 35, 36, 59], "cb": [30, 59], "colorbar": [30, 36, 59], "cnt": [30, 59], "im": [30, 59], "set_interpol": [30, 59], "bilinear": [30, 59], "treat": [30, 59], "mpimg": [30, 59], "img": [30, 35, 36, 41, 59], "imread": [30, 59], "bug": [30, 44, 59], "histogram": [30, 31, 59], "hist": [30, 31, 34, 35, 37, 38, 41, 46, 59], "ravel": [30, 35, 37, 38, 39, 40, 59], "256": [30, 50, 59], "search": [30, 34, 40, 53, 59], "think": [30, 32, 33, 34, 35, 36, 37, 41, 53, 59], "mpl_toolkit": [30, 35, 59], "mplot3d": [30, 35, 59], "axes3d": [30, 35, 59], "gca": [30, 38, 41, 46, 59], "get_test_data": [30, 59], "plot_surfac": [30, 59], "rstride": [30, 59], "cstride": [30, 59], "cset": [30, 59], "contourf": [30, 37, 39, 59], "zdir": [30, 59], "offset": [30, 59], "set_zlabel": [30, 35, 59], "set_zlim": [30, 59], "tentative_numpy_tutori": [30, 59], "numpy_for_matlab_us": [30, 59], "johanssen": [30, 31, 59], "showcas": [30, 59], "variou": [30, 32, 39, 40, 48, 57, 59, 60], "loria": [30, 59], "fr": [30, 59], "rougier": [30, 59], "teach": [30, 59], "reload_ext": [30, 59], "version_inform": [30, 59], "multidimension": 31, "todai": [31, 59], "stat": [31, 39, 41, 59], "wish": [31, 59], "fourier": [31, 59], "fftpack": [31, 59], "signal": [31, 59], "spars": [31, 36, 41, 59], "ndimag": [31, 59], "sp": [31, 46, 59], "trapezoid": [31, 59], "simpson": [31, 59], "trapz": [31, 59], "simp": [31, 59], "x3": [31, 35, 59], "x3_integr": [31, 59], "x3_trapz": [31, 59], "x3_simp": [31, 59], "displaystyl": [31, 59], "int_a": [31, 59], "tripl": [31, 59], "quad": [31, 59], "dblquad": [31, 59], "tplquad": [31, 59], "x_lower": [31, 59], "x_upper": [31, 59], "abserr": [31, 59], "integrand": [31, 59], "y_lower": [31, 59], "y_upper": [31, 59], "interp1d": [31, 59], "y_mea": [31, 59], "y_real": [31, 59], "bs": [31, 59], "noisi": [31, 37, 38, 39, 59], "linear_interpol": [31, 59], "y_interp1": [31, 59], "cubic_interpol": [31, 59], "y_interp2": [31, 59], "interp": [31, 59], "legend": [31, 33, 34, 38, 40, 41, 50], "maxima": [31, 59], "rather": [31, 34, 36, 37, 39, 40, 41, 54, 59], "introduct": [31, 32, 50, 51, 53, 54], "mathematical_optim": [31, 59], "cg": [31, 59], "x_min": [31, 37, 39, 59], "fsolv": [31, 59], "contin": [31, 59], "sharex": [31, 59], "commul": [31, 59], "distributin": [31, 59], "cdf": [31, 59], "realiz": [31, 32, 41, 59], "stochast": [31, 36, 59], "rv": [31, 41, 59], "poisson": [31, 59], "frequenc": [31, 59], "event": [31, 59], "pmf": [31, 59], "poission": [31, 59], "independ": [31, 33, 35, 36, 52, 53, 59], "null": [31, 59], "hypothesi": [31, 32, 59], "t_statist": [31, 59], "p_valu": [31, 59], "ttest_ind": [31, 59], "equal_var": [31, 59], "ttest_1samp": [31, 59], "solver": [31, 59], "documet": [31, 59], "v_n": [31, 59], "lambda_n": [31, 59], "eigval": [31, 59], "eig": [31, 36, 59], "eval": [31, 53, 59], "evec": [31, 59], "mutipli": [31, 59], "public": [32, 45], "commun": [32, 53], "motiv": 32, "scopu": 32, "quotat": 32, "mark": 32, "wildcard": 32, "exclud": 32, "unwant": 32, "refin": [32, 38, 41, 49, 61], "cite": 32, "particularli": [32, 41], "introductori": 32, "crossref": 32, "metadata": 32, "articl": 32, "citat": [32, 53], "link": [32, 36, 38, 48, 49, 52, 53, 57, 60], "author": 32, "websit": [32, 34, 52, 53], "valuabl": 32, "overview": 32, "branch": [32, 40], "stai": 32, "curat": 32, "citrin": 32, "us3": 32, "subscrib": 32, "014639e57e11aa6a7d2f2e4a8": 32, "id": 32, "60e6d7fee0": 32, "alert": 32, "googl": 32, "scholar": 32, "2023": 32, "danger": 32, "emerg": 32, "claim": 32, "artifici": [32, 37], "intellig": 32, "acceler": 32, "seem": [32, 34, 41], "promis": 32, "miser": [32, 33], "strongli": [32, 37, 44], "ventur": 32, "allur": 32, "strong": 32, "highlight": 32, "perplex": [32, 36], "referenc": [32, 53], "paragraph": 32, "peer": [32, 52, 53], "unfamiliar": [32, 44], "carefulli": 32, "yourself": [32, 34, 37, 44, 52], "mistak": 32, "terribl": [32, 34], "failur": [32, 37], "apolog": 32, "nauseum": 32, "my": 32, "never": [32, 35], "caution": [32, 36], "impact": [32, 40, 45], "factor": [32, 36, 37, 38, 39, 53], "canon": 32, "pna": 32, "famili": 32, "jac": [32, 38], "eigenfactor": 32, "confer": 32, "prestigi": 32, "post": [32, 33, 53], "server": 32, "drink": 32, "firehos": 32, "enter": [32, 49, 61], "overload": 32, "friend": 32, "differenti": [32, 37, 38], "overhead": 32, "deepli": 32, "priorit": 32, "mendelei": 32, "offer": [32, 41, 48, 49, 53, 57, 60], "bibtex": 32, "softwar": [32, 44, 53], "servic": 32, "leverag": 32, "newest": 32, "older": 32, "phy": 32, "rev": 32, "balanc": [32, 34, 37], "vs": [32, 36, 37, 38, 47], "perspect": [32, 36, 38], "hypothes": 32, "explan": 32, "outlin": [32, 53], "could": [32, 33, 34, 35, 36, 38, 40, 41], "conclus": [32, 36], "summari": 32, "appendic": 32, "supplementari": 32, "caption": 32, "tabl": 32, "deep": [32, 41, 44], "dive": 32, "70": [32, 50], "week": [32, 53], "60": [32, 34, 39, 50, 53], "weekli": [32, 52, 53], "aj": [32, 38], "wellendorff": 32, "lundgaard": 32, "m\u00f8gelh\u00f8j": 32, "petzold": 32, "landi": 32, "n\u00f8rskov": 32, "jacobsen": 32, "2012": 32, "bayesian": [32, 34, 40], "1103": 32, "physrevb": 32, "235149": 32, "methodolog": 32, "semiempir": 32, "solid": [32, 34, 48, 57, 60], "adsorptoin": 32, "demonstr": [32, 50, 52], "approach": [32, 34, 35, 37, 38, 39, 40, 41, 53], "fact": [32, 35, 38], "outsid": 32, "establish": [32, 37, 52, 53], "polynomi": [33, 34, 38], "obviou": 33, "audio": 33, "fingerprint": 33, "Of": [33, 40], "gross": 33, "oversimplif": 33, "previous": [33, 53], "y_i": [33, 37, 38, 39, 40], "sum_j": [33, 34, 36, 38, 39, 40], "w_j": [33, 34, 38], "x_": [33, 34, 38], "ij": [33, 34, 36, 38, 40], "epsilon_i": [33, 34, 38], "mu": [33, 39, 40, 41], "saw": [33, 38, 39], "had": [33, 35, 36, 44], "eta": [33, 34, 50], "seek": [33, 36, 40, 52], "idea": [33, 34, 36, 37, 38, 40], "quantifi": [33, 34], "analyt": [33, 34, 52, 53], "forward": [33, 44], "aspect": [33, 52], "parameter": [33, 46], "domain": [33, 53], "spline": 33, "nonparametr": 33, "extrapol": 33, "proper": 33, "spectra": [33, 34], "dure": [33, 40, 52, 53], "plot_styl": [33, 34, 35, 36, 37, 38, 39, 40, 41], "mplstyle": [33, 34, 35, 36, 37, 38, 39, 40, 41], "df": [33, 34, 35, 40, 41], "read_csv": [33, 34], "ethanol_ir": [33, 34], "x_all": [33, 34], "wavenumb": [33, 34], "y_all": [33, 34], "absorb": [33, 34], "x_peak": [33, 34], "475": [33, 34, 50], "575": [33, 34], "y_peak": [33, 34], "straight": [33, 37], "piecewis": 33, "x_i": [33, 36, 40], "x_j": [33, 36, 39], "piecewise_linear": 33, "actual": [33, 34, 36, 37, 39, 40, 41], "clearli": [33, 34, 36, 41, 52, 53], "intercept": [33, 38], "slope": [33, 35], "linear_model": [33, 34, 37], "linearregress": [33, 34], "r2": [33, 34], "yhat": [33, 34, 41], "x_predict": [33, 34], "2650": 33, "3150": 33, "expand": [33, 54], "yhat_predict": 33, "2850": 33, "2900": 33, "x_rbf": 33, "model_rbf": 33, "yhat_rbf": 33, "9987634078177691": 33, "fewer": [33, 41], "9984890582179191": 33, "rout": 33, "enough": [34, 38], "reproduc": [34, 53], "bad": [34, 37, 40], "memor": [34, 39], "perfect": [34, 38, 41], "earlier": [34, 35, 36, 40], "linearli": [34, 37, 38, 39], "curvatur": 34, "With": [34, 46], "four": [34, 52], "eleph": 34, "five": 34, "him": 34, "wiggl": 34, "trunk": 34, "von": 34, "neumann": 34, "criterion": [34, 40], "tradeoff": 34, "bic": [34, 40, 41], "deriv": [34, 36, 38, 39, 40], "conceptu": [34, 36, 37, 44, 47, 54], "ln": [34, 41], "2_e": 34, "sigma_": 34, "critera": [34, 40], "akaik": 34, "aic": 34, "err": [34, 48, 49, 57], "evenli": [34, 37], "polynomial_featur": 34, "liner": 34, "comprehens": [34, 54], "inclus": 34, "x_poli": 34, "lr_poli": 34, "yhat_poli": 34, "bic_poli": 34, "283": [34, 40, 50], "0752960301787": 34, "gaussian_featur": 34, "xk_vec": 34, "xk": 34, "x_gauss": 34, "lr_gauss": 34, "yhat_gauss": 34, "bic_gauss": 34, "896": 34, "252613200568": 34, "correctli": [34, 37, 38], "aikak": 34, "slightli": [34, 36, 38, 39, 40], "challeng": [34, 35, 36, 37, 53, 54], "rigor": 34, "substitut": [34, 49], "sens": [34, 35, 39, 40, 41, 49, 61], "difficult": [34, 37, 39, 40], "imposs": 34, "penal": [34, 37], "sharpli": 34, "penalti": 34, "sum_i": [34, 36, 37, 38], "especi": [34, 35, 36, 40], "greater": [34, 35, 47, 53], "kernel_ridg": 34, "kernelridg": 34, "yhat_krr": 34, "flat": 34, "wors": [34, 41], "assess": [34, 37, 39, 40, 50, 53], "seed": [34, 37, 38, 39, 50], "test_siz": [34, 39, 41], "r2_test": 34, "9816791895375319": 34, "dual_coef_": 34, "coeffici": [34, 40], "984": 34, "nonzero": 34, "ideal": 34, "l_1": [34, 40], "w_i": [34, 38], "shrinkag": 34, "acronym": 34, "l_": [34, 40], "_1": [34, 36], "caus": [34, 40, 49], "borrow": 34, "beta": [34, 38], "unfortun": 34, "pairwis": [34, 38], "rbf_kernel": [34, 38], "coef_": 34, "yhat_lasso": 34, "discard": [34, 37], "tediou": 34, "fortun": [34, 41], "brute": 34, "performac": 34, "optimum": 34, "parameter_rang": 34, "krr_search": 34, "cv": 34, "best_estimator_": 34, "best_score_": 34, "0005555555555555556": 34, "9953287405140007": 34, "000555": 34, "6f": 34, "gridpoint": 34, "clr": [35, 36, 37, 38, 39, 40, 41], "003057": [35, 36, 37, 38, 39, 40, 41], "eaaa00": [35, 36, 37, 38, 39, 40, 41], "4b8b9b": [35, 36, 37, 38, 39, 40, 41], "b3a369": [35, 36, 37, 38, 39, 40, 41], "377117": [35, 36, 37, 38, 39, 40, 41], "1879db": [35, 36, 37, 38, 39, 40, 41], "8e8b76": [35, 36, 37, 38, 39, 40, 41], "f5d580": [35, 36, 37, 38, 39, 40, 41], "002233": [35, 36, 37, 38, 39, 40, 41], "brain": 35, "gain": [35, 53], "read_excel": [35, 40, 41], "impurity_dataset": [35, 40, 41], "xlsx": [35, 40, 41], "is_real_and_finit": [35, 40, 41], "isreal": [35, 40, 41], "all_data": [35, 40, 41], "drop": [35, 36, 37, 40, 41, 46], "date": [35, 40, 41, 52], "numeric_map": [35, 40, 41], "applymap": [35, 40, 41], "real_row": [35, 40, 41], "x_dow": [35, 40, 41], "col": [35, 40, 41], "y_dow": [35, 40, 41], "10297": [35, 40, 41], "297": [35, 50], "impur": 35, "sole": 35, "variant": 35, "x_mnist": [35, 36, 41], "1797": [35, 36, 41], "unravel": 35, "show_imag": [35, 36, 41], "digit_data": [35, 36, 41], "forth": 35, "10k": 35, "phenomena": 35, "exponenti": 35, "cube": 35, "v_d": 35, "moder": 35, "somewhat": [35, 36, 37, 40], "lesser": 35, "phenomenon": 35, "sparsiti": 35, "aris": [35, 37], "simplist": 35, "averag": [35, 40, 52, 53], "guarante": 35, "cluster_std": [35, 37, 38, 39], "3d": 35, "simplest": [35, 40, 41], "titl": [35, 37, 38], "surpris": [35, 41], "middl": 35, "edg": [35, 44], "x1": [35, 39, 40], "reflux": 35, "flow": 35, "363": [35, 50], "769474": 35, "648106": 35, "x2": [35, 39, 40], "tail": 35, "042734": 35, "343551": 35, "bed": 35, "2531": 35, "650693": 35, "571": 35, "295049": 35, "x4": 35, "2462": 35, "787740": 35, "503": 35, "647057": 35, "x5": 35, "401576": 35, "229915": 35, "x6": 35, "105": [35, 50], "252978": 35, "085373": 35, "x7": 35, "54": [35, 46, 50], "301929": 35, "014898": 35, "x8": 35, "drum": 35, "pressur": 35, "617144": 35, "617643": 35, "x9": 35, "condens": 35, "161516": 35, "889529": 35, "x10": 35, "bed1": 35, "dp": 35, "620064": 35, "790575": 35, "x11": 35, "bed2": 35, "297826": 35, "376748": 35, "x12": 35, "bed3": 35, "760801": 35, "500018": 35, "x13": 35, "bed4": 35, "422103": 35, "693002": 35, "x14": 35, "672023": 35, "976839": 35, "x15": 35, "819512": 35, "684090": 35, "x16": 35, "284512": 35, "713857": 35, "x17": 35, "060650": 35, "613390": 35, "x18": 35, "317231": 35, "754447": 35, "x19": 35, "518271": 35, "810075": 35, "x20": 35, "014718": 35, "894118": 35, "x21": 35, "912289": 35, "940277": 35, "x22": 35, "secondari": 35, "concentr": 35, "038943": 35, "147693": 35, "x23": 35, "1887": [35, 50], "386387": 35, "452": [35, 50], "475951": 35, "x24": 35, "605942": 35, "264677": 35, "x25": 35, "trai": 35, "788218": 35, "313940": 35, "x26": 35, "297118": 35, "018735": 35, "x27": 35, "261101": 35, "140908": 35, "x28": 35, "138": [35, 50], "144429": 35, "295254": 35, "x29": 35, "335413": 35, "438166": 35, "x30": 35, "554801": 35, "378714": 35, "x31": 35, "55": [35, 46, 50], "752824": 35, "700494": 35, "x32": 35, "839195": 35, "303496": 35, "x33": 35, "103": [35, 50], "999019": 35, "989058": 35, "x34": 35, "420756": 35, "883768": 35, "x35": 35, "015137": 35, "025845": 35, "x36": 35, "291409": 35, "291106": 35, "x37": 35, "007949": 35, "001319": 35, "x38": 35, "466772": 35, "048953": 35, "x39": 35, "steam": 35, "318070": 35, "788862": 35, "x40": 35, "113": [35, 50], "176332": 35, "190984": 35, "insight": [35, 36, 40, 45, 52, 53], "hard": [35, 38], "interpret": [35, 36, 39], "meaning": [35, 53], "dpi": [35, 38, 40, 46], "ax_list": 35, "n_dimens": 35, "64x64": [35, 36], "4096": 35, "diagon": [35, 37, 40], "seaborn": [35, 41], "mnist_df": 35, "pairplot": 35, "df_dow_clean": 35, "include_column": 35, "bit": [35, 41, 44], "slower": 35, "zoom": [35, 52, 53], "again": [35, 40], "closer": [35, 36, 40, 41], "relationship": [35, 46], "x_col": 35, "y_col": 35, "jp": 35, "jointplot": 35, "particular": [35, 37, 41, 46, 48, 49, 57, 60], "reg": 35, "x_reduc": [35, 36], "corr_mnist": 35, "corrcoef": 35, "corr": 35, "hm": 35, "heatmap": [35, 41], "annot": [35, 36, 41], "2f": [35, 40], "annot_kw": 35, "full": [35, 36, 40, 41, 46], "corr_dow": 35, "align": [35, 36, 40], "808080": [36, 40, 41], "compress": [36, 40], "denois": 36, "primarili": [36, 37, 44, 47, 48, 57, 60], "aid": [36, 37, 53], "subspac": 36, "onto": 36, "nonetheless": 36, "retain": 36, "_n": 36, "d_": [36, 40], "_i": [36, 40], "_j": [36, 40], "helper": [36, 39, 41], "worri": [36, 39], "spatial": [36, 40], "pdist": [36, 40], "d_red": 36, "d_tot": 36, "denom": 36, "pragmat": 36, "quick": 36, "refresh": 36, "cov": 36, "intens": 36, "mostli": 36, "came": 36, "eig_val": 36, "eig_vec": 36, "reperes": 36, "sorted_idx": 36, "argsort": 36, "colormap": 36, "get_figur": 36, "associ": [36, 46], "matrix_rank": 36, "79006930e": 36, "63717747e": 36, "41788439e": 36, "01100375e": 36, "95131656e": 36, "91085249e": 36, "18845391e": 36, "40151067e": 36, "03109953e": 36, "70117984e": 36, "85190412e": 36, "73211698e": 36, "19014881e": 36, "13243565e": 36, "76367222e": 36, "69468639e": 36, "58513899e": 36, "50044602e": 36, "22344732e": 36, "08868593e": 36, "06935663e": 36, "58259779e": 36, "22640260e": 36, "69036872e": 36, "36561190e": 36, "16577961e": 36, "91973881e": 36, "19295508e": 36, "88499123e": 36, "15586690e": 36, "49129656e": 36, "24687799e": 36, "04743883e": 36, "94340334e": 36, "70647245e": 36, "53165306e": 36, "08457409e": 36, "73780002e": 36, "67210896e": 36, "54170563e": 36, "28298744e": 36, "90724229e": 36, "81716569e": 36, "68996439e": 36, "40197220e": 36, "29221888e": 36, "15893419e": 36, "31220008e": 36, "69850594e": 36, "86065217e": 36, "52350432e": 36, "91527944e": 36, "31307848e": 36, "07377581e": 36, "96662297e": 36, "49505636e": 36, "47307261e": 36, "62365957e": 36, "27705113e": 36, "61270906e": 36, "12223305e": 36, "orthonorm": 36, "underlin": [36, 40], "_f": 36, "m_": [36, 46], "frobeniu": 36, "obvious": 36, "trivial": [36, 38], "min_": 36, "subject": [36, 53], "leq": [36, 38], "hasti": 36, "tibshirani": 36, "projector": 36, "x_k": [36, 41], "qualiti": [36, 40, 54], "8943031165985261": 36, "scree": 36, "componenet": 36, "cumsum": 36, "add_label": 36, "xpo": 36, "xycoord": 36, "07": [36, 38], "invert": [36, 41, 46], "x_reconstruct": 36, "reconstruct": 36, "de": [36, 46], "memori": [36, 48, 49, 57, 60], "aren": [36, 41], "digit_idx": 36, "x_lowd_digit": 36, "x_lowd_8": 36, "28714734": 36, "4125737": 36, "12896496": 36, "33976559": 36, "93898522": 36, "36268307": 36, "83730922": 36, "23672289": 36, "4251487": 36, "22891825": 36, "reli": [36, 40], "speed": [36, 40], "pca_model": [36, 41], "inverse_transform": [36, 41], "evr": 36, "explained_variance_ratio_": 36, "k_": 36, "kappa": 36, "kappa_": 36, "kernelpca": [36, 40], "x_m": 36, "y_m": 36, "n_sampl": [36, 37, 38, 39], "lpca": 36, "kpca": [36, 40], "fit_inverse_transform": 36, "x_pca": [36, 40], "x_kpca": [36, 40], "x_0": [36, 37, 38, 39, 40], "x_1": [36, 37, 38, 39, 40], "x_pca_reconstruct": 36, "x_kpca_reconstruct": 36, "worth": [36, 40], "mention": 36, "robust": [36, 37, 44], "outlier": 36, "partial": [36, 38, 53], "maxim": [36, 38], "inter": 36, "exploit": 36, "prototyp": 36, "md": 36, "favor": 36, "n_init": 36, "max_it": 36, "max_iter": 36, "x_md": 36, "fit_transform": [36, 40], "3476710001843273": 36, "5405344832395483": 36, "tsne": [36, 40], "embed": [36, 53], "probabilist": [36, 39], "early_exagger": 36, "learning_r": 36, "x_tsne": [36, 40], "7890299639828614": 36, "hyper": 36, "outcom": 36, "substanti": [36, 40, 53], "effort": [36, 53], "isomap": [36, 40], "lle": 36, "spectral": 36, "ltsa": 36, "comparison": [36, 40], "suffer": [36, 37], "disadvantag": [36, 37], "Not": [36, 40], "slow": [36, 39, 40], "neural": [36, 37, 41, 53], "network": [36, 37, 40, 41, 53], "intermedi": 36, "bottleneck": 36, "net": 36, "scalabl": 36, "architectur": 36, "discret": [37, 39], "ordin": 37, "categor": 37, "significantli": 37, "samples_gener": [37, 38, 39], "make_circl": [37, 38, 39], "x_blob": [37, 38, 39], "y_blob": [37, 38, 39], "n_featur": [37, 38, 39], "x_mc": [37, 38, 39], "y_mc": [37, 38, 39], "x_circl": [37, 38, 39], "y_circl": [37, 38, 39], "x_moon": [37, 38, 39], "y_moon": [37, 38, 39], "all_dataset": [37, 38, 39], "blob": [37, 38], "xy_i": [37, 38, 39], "yi": [37, 38, 39, 40], "sihoonchoi": [37, 39], "deprec": [37, 38, 39, 50], "143": [37, 39, 50], "futurewarn": [37, 38, 39], "privat": [37, 38, 39], "messag": [37, 38, 39], "examin": [37, 40], "plane": [37, 48, 57, 60], "seri": 37, "rest": 37, "logist": [37, 52], "minor": [37, 38], "although": [37, 39], "serial": 37, "imbalanc": [37, 41], "roughli": [37, 40], "imbal": [37, 39], "subsequ": [37, 52], "x_blob1": 37, "y_blob1": 37, "x_blob2": 37, "y_blob2": 37, "x_circles1": 37, "y_circles1": 37, "insepar": 37, "distinct": 37, "threshold": [37, 38, 40, 48, 57, 60], "belong": [37, 39, 40], "Then": [37, 38, 53], "counter": 37, "conjunct": [37, 40], "indirectli": 37, "rightarrow": 37, "diagnos": 37, "arbitrarili": [37, 38, 41], "switch": 37, "distinctli": 37, "tp": 37, "tn": 37, "fp": 37, "fn": 37, "summar": 37, "harmon": 37, "perfec": 37, "acc_prec_recal": 37, "y_model": 37, "y_actual": 37, "logical_and": 37, "acc": 37, "prec": 37, "truli": [37, 40], "n_includ": 37, "y_imbalanc": 37, "set_xtick": [37, 40, 41], "y_guess": 37, "7692307692307693": 37, "under": [37, 39, 40, 44, 50], "roc_curv": 37, "sgdclassifi": 37, "randomforestclassifi": 37, "sgd": 37, "rf": 37, "y_sgd": 37, "y_rf": 37, "fpr": 37, "tpr": 37, "c0c0c0": 37, "auc": 37, "postiv": 37, "hide": 37, "wrinkl": 37, "manner": 37, "overal": [37, 40], "mi": 37, "inner": 37, "undersampl": 37, "ineffici": 37, "oversampl": 37, "knowledg": [37, 53], "smote": 37, "248": [37, 50], "x_blob3": 37, "y_blob3": 37, "decision_function_shap": 37, "ovr": 37, "y_mc_hat": 37, "x_max": [37, 39], "y_min": [37, 39], "y_max": [37, 39], "yy": [37, 39], "c_": [37, 39], "investig": [37, 52, 53], "bar": [37, 38, 52], "add_intercept": [37, 38], "x_intercept": [37, 38], "linear_classifi": [37, 38], "w_0": 37, "w_1": 37, "w_2": 37, "x_0w_0": 37, "x_1w_1": 37, "tricki": [37, 40], "pm": [37, 39], "inequ": [37, 38], "perceptron": 37, "max_cost": [37, 38], "xb": [37, 38], "75103040564972": [37, 38], "n_wrong": 37, "w_count": 37, "misclassif": 37, "tranform": 38, "y_": 38, "glm": 38, "osi": 38, "144": [38, 50], "clever": 38, "w_perceptron": 38, "fun": 38, "hess_inv": 38, "nfev": 38, "nit": 38, "njev": 38, "69214391": 38, "42205481": 38, "67940886": 38, "invent": 38, "frank": 38, "rosenblatt": 38, "1958": 38, "biolog": 38, "neuron": 38, "fire": 38, "exce": 38, "softmax": 38, "approx": 38, "soft": 38, "rid": 38, "softmax_cost": 38, "exp_yxb": 38, "7745706457998764": 38, "newton": 38, "w_logit": 38, "y_moons_scal": 38, "5796169252392186e": 38, "939495485292476": 38, "elimin": 38, "recogn": 38, "buffer": 38, "geq": 38, "trick": 38, "replax": 38, "margin_cost": 38, "13950": 38, "826906338369": 38, "w_opt_margin": 38, "margin_cost_squar": 38, "margin_cost_softmax": 38, "w_opt_margin2": 38, "w_opt_softmax": 38, "plot_lin": 38, "w_set": 38, "infinit": 38, "proport": 38, "l_2": [38, 40], "tild": 38, "omit": [38, 53], "regularized_cost": 38, "w_guess": 38, "w_svm": 38, "sound": 38, "scari": 38, "modif": 38, "endow": 38, "trickier": 38, "nonlinear": [38, 39], "x_new": [38, 41], "x_nonlinear": 38, "x_2": 38, "extra": 38, "x_kernel": 38, "bigger": [38, 40], "unless": 38, "y_predict": [38, 39, 40], "slight": 38, "plot_svc_decision_funct": 38, "plot_support": 38, "get_xlim": [38, 39], "get_ylim": [38, 39], "vstack": [38, 39], "decision_funct": 38, "contour": [38, 39], "support_vectors_": 38, "linewidth": [38, 41], "edgecolor": [38, 40], "1e2": 38, "ci": [38, 40], "ax_i": 38, "accept": 38, "enclos": 38, "plai": [38, 40, 49, 61], "depth": [39, 40, 53], "democraci": 39, "distinguish": 39, "poll": 39, "get_neighbor_idx": 39, "x_list": [39, 40], "dist_pair": [39, 40], "dist": [39, 40, 50], "k_dist": 39, "knn_idx": 39, "di": 39, "mode": [39, 52], "assign_class": 39, "y_list": 39, "properli": 39, "wrap": [39, 50], "y_out": 39, "y_knn": 39, "perfectli": 39, "No": [39, 52, 53], "visualize_neighbor": 39, "nj": 39, "xj": 39, "flexibl": [39, 40], "n_neighbor": 39, "sim": [39, 48, 57, 60], "mu_i": 39, "sigma_i": 39, "centroid": [39, 40], "formula": [39, 40, 41], "xg": 39, "yg": 39, "xgrid": 39, "ylorbr": 39, "bugn": 39, "prod": 39, "ma": [39, 46], "masked_arrai": 39, "pcolorfast": 39, "sophist": [39, 41], "na\u00efv": 39, "quadrat": 39, "nearli": [39, 40], "attempt": [39, 40, 44], "recurs": 39, "gini": 39, "entropi": 39, "prone": 39, "forest": 39, "bootstrap": 39, "produc": 39, "brief": [39, 51], "y_tree": 39, "stringio": 39, "export_graphviz": 39, "pydotplu": 39, "dot_data": 39, "out_fil": 39, "fill": 39, "special_charact": 39, "graph": [39, 46], "graph_from_dot_data": 39, "getvalu": 39, "create_png": 39, "datapoint": [40, 41], "consider": 40, "inher": 40, "identif": 40, "detect": 40, "algorthim": 40, "region": 40, "understood": 40, "demand": 40, "quantit": [40, 46], "silhoutt": 40, "impli": 40, "calinski": 40, "harabasz": 40, "intra": 40, "classificaiton": 40, "interclass": 40, "bound": [40, 46], "priori": 40, "likelihood": [40, 41], "proxim": 40, "downsid": 40, "analys": 40, "manhattan": 40, "chebyshev": 40, "infti": 40, "minkowski": 40, "l_p": 40, "nearbi": 40, "mahalanobi": 40, "simplic": 40, "short": 40, "cophenet": 40, "linkag": 40, "dow": [40, 41], "5th": 40, "2060": [40, 50], "exploratori": 40, "manifold": 40, "ms": [40, 53], "wall": 40, "470": [40, 50], "512": 40, "scenario": 40, "steadi": 40, "remark": [40, 53], "violat": 40, "anywai": 40, "revis": [40, 52, 53], "pt1": 40, "pt2": 40, "expected_assign": 40, "cluster_cent": 40, "min_index": 40, "new_cent": 40, "cluster_point": 40, "mec": 40, "pc1": 40, "pc2": 40, "repeatedli": 40, "old_cent": 40, "cluster_idx": 40, "88397179": 40, "09374578": 40, "88903744": 40, "89714391": 40, "77233592": 40, "03861822": 40, "74453066": 40, "28727407": 40, "3rd": 40, "73658236": 40, "06425897": 40, "89284524": 40, "43335379": 40, "kmean": 40, "n_cluster": [40, 41], "datset": 40, "cluster_centers_": 40, "navi": 40, "moreov": 40, "sum_k": 40, "phi_k": 40, "mathcal": 40, "1d": 40, "gamma_": 40, "ik": 40, "_k": 40, "phi": 40, "mu_k": 40, "sigma_k": 40, "covariance_typ": [40, 41], "means_": [40, 41], "longest": 40, "beforehand": 40, "silhouette_scor": 40, "calinski_harabasz_scor": 40, "c_h_score": 40, "3889340481198901": 40, "5375": 40, "873303272862": 40, "n_clusters_list": 40, "silhouette_list": 40, "predict_proba": 40, "59901044e": 40, "85204790e": 40, "73882805e": 40, "90943391e": 40, "08": [40, 46], "35967386e": 40, "87052747e": 40, "11297046e": 40, "point_idx": 40, "well_defin": 40, "prob": 40, "95": [40, 41, 50], "x_welldefin": 40, "y_welldefin": 40, "660": 40, "silhouette_welldefin": 40, "6344883005388762": 40, "12428": 40, "380003864966": 40, "get_dist": [40, 50], "get_nearby_point": 40, "in_window": 40, "get_new_centroid": 40, "old_centroid": 40, "in_rang": 40, "new_centroid": 40, "watch": [40, 52], "rerun": 40, "around": [40, 41, 49, 52, 61], "mean_shift_iter": 40, "centrod": 40, "mean_shift_clust": 40, "unique_centroid": 40, "uc": 40, "min_dist": 40, "1e99": 40, "120": [40, 50], "137": [40, 50], "meanshift": 40, "labels_": 40, "185": [40, 50], "slide": 40, "neigbhor": 40, "suffici": 40, "min_sampl": 40, "anim": 40, "fit_predict": 40, "hierarchi": 40, "feasibl": [40, 53], "biologi": 40, "characterist": 40, "2059": 40, "77000000e": 40, "91000000e": 40, "83256746e": 40, "677": 40, "691": 40, "00098": 40, "fourth": 40, "descripton": 40, "agglomer": 40, "centriod": 40, "ward": 40, "dij": 40, "coph_dist": 40, "9549424125877355": 40, "9332039766375549": 40, "9781265675460892": 40, "9568082912812889": 40, "9786287346144893": 40, "8212908347506772": 40, "color_threshold": 40, "truncate_mod": 40, "lastp": 40, "58000000e": 40, "93700000e": 40, "38691346e": 40, "fcluster": 40, "max_d": 40, "clusters_dist": 40, "clusters_k": 40, "maxclust": 40, "monitor": 40, "jump": 40, "merg": [40, 53], "directon": 40, "i_cutoff": 40, "clusters_i": 40, "mimic": 41, "augment": 41, "gauss": [41, 48, 57, 60], "100000": 41, "machineri": 41, "x_1d": 41, "x_synthet": 41, "feature_a": 41, "feature_b": 41, "x_2d": 41, "y_2d": 41, "handbook": 41, "patch": 41, "ellips": 41, "draw_ellips": 41, "vt": [41, 46], "svd": [41, 46], "arctan2": 41, "nsig": 41, "add_patch": 41, "plot_gmm": 41, "zorder": 41, "w_factor": 41, "po": 41, "covar": 41, "covariances_": 41, "weights_": 41, "agreement": 41, "y_new": 41, "2000": 41, "evaul": 41, "gmm_n": 41, "n_d": 41, "gmm_best": 41, "resembl": 41, "min_idx": 41, "n_gmm": 41, "example_lowd": 41, "x_mnist_6": 41, "logic": 41, "instanti": 41, "x_continu": 41, "score_sampl": 41, "logprob": 41, "10000": 41, "logprob_synthet": 41, "realtiv": 41, "kde_imag": 41, "perhap": 41, "face": [41, 53], "who": [41, 52, 53], "thispersondoesnotexist": 41, "208": [41, 50], "48758285": 41, "220": [41, 50], "39043884": 41, "218": [41, 50], "35226166": 41, "85097378e": 41, "93040551e": 41, "96": [41, 50], "48189573e": 41, "proba_0": 41, "post_proba": 41, "82400297e": 41, "91214347e": 41, "46787669e": 41, "not_so_na": 41, "proba_i": 41, "argmax": 41, "9907407407407407": 41, "df_cm": 41, "8314814814814815": 41, "industri": [44, 53], "notabl": 44, "bleed": 44, "scientist": 44, "portion": [44, 51], "mind": [44, 51, 52], "unexpect": 44, "pull": 44, "request": [44, 48, 49, 57, 60], "repositori": [44, 49, 61], "overwhelm": 44, "conceptr": 44, "stduent": 44, "breath": 44, "practiction": 44, "beginn": 44, "happi": 44, "address": 44, "nitti": 44, "gritti": 44, "leav": 44, "stuck": [44, 52], "reach": 44, "tremend": 45, "egg": 45, "dramat": 45, "hegihten": 45, "compuat": 45, "aug": 46, "config": [46, 50], "use_jedi": 46, "mavrikaki": 46, "synthesi": 46, "catal": 46, "365": [46, 50], "384": [46, 50], "2011": 46, "followig": 46, "reservoir": 46, "raw_data": [46, 50], "read_json": 46, "co2_g": 46, "_s": 46, "h2_g": 46, "_h": 46, "2h": 46, "co_g": 46, "h2o_g": 46, "hcooh_g": 46, "ch2o_g": 46, "ch2o": 46, "ch3oh_g": 46, "hcooch3_g": 46, "cooh": 46, "59": [46, 50], "2oh": 46, "hcoo": 46, "h2co2": 46, "ch3o2": 46, "74": [46, 50], "78": [46, 50], "coh": 46, "hcoh": 46, "ch2oh": 46, "06": 46, "co3": 46, "hco3": 46, "99": [46, 50], "h2cooch3": 46, "2ch2o": 46, "n_": 46, "encompass": 46, "ma_": 46, "atomic_matrix": 46, "And": 46, "folow": 46, "individi": 46, "e_raw": 46, "raw_dft": 46, "211": [46, 50], "197764": 46, "135245": 46, "197765": 46, "085060": 46, "123999": 46, "125283": 46, "103185": 46, "773434": 46, "106234": 46, "599516": 46, "140714": 46, "147663": 46, "134520": 46, "546438": 46, "198613": 46, "265305": 46, "816588": 46, "124848": 46, "330119": 46, "104034": 46, "866635": 46, "107083": 46, "793192": 46, "141562": 46, "980995": 46, "135369": 46, "376106": 46, "198629": 46, "463463": 46, "895913": 46, "124864": 46, "792637": 46, "104051": 46, "846973": 46, "107100": 46, "679487": 46, "141578": 46, "898364": 46, "135385": 46, "740832": 46, "848": 46, "688366": 46, "co_": [46, 48, 57, 60], "h_2o_": 46, "ext": 46, "m_a": 46, "rank": 46, "dummi": 46, "ref_sp": 46, "eref": 46, "mref": 46, "mcol": 46, "def_a": 46, "mext": 46, "hstack": 46, "refrenc": 46, "es": 46, "multiindex": 46, "from_tupl": 46, "ef": 46, "605626": 46, "823442": 46, "562464": 46, "198630": 46, "805365": 46, "732895": 46, "199197": 46, "450711": 46, "304541": 46, "198646": 46, "958871": 46, "024892": 46, "881": 46, "686666": 46, "837747": 46, "198582": 46, "258153": 46, "770208": 46, "199149": 46, "583594": 46, "021949": 46, "1384": 46, "476584": 46, "199715": 46, "612772": 46, "022571": 46, "198597": 46, "111176": 46, "238278": 46, "199165": 46, "053933": 46, "369220": 46, "816": 46, "402885": 46, "197781": 46, "131496": 46, "184928": 46, "199180": 46, "952833": 46, "331829": 46, "199480": 46, "172844": 46, "974471": 46, "198364": 46, "322075": 46, "559701": 46, "599": 46, "047721": 46, "748995": 46, "723017": 46, "497763": 46, "148309": 46, "199732": 46, "874257": 46, "622596": 46, "355603": 46, "144641": 46, "814737": 46, "391584": 46, "199464": 46, "223855": 46, "886991": 46, "1699": 46, "054584": 46, "802780": 46, "199181": 46, "606326": 46, "321665": 46, "1416": [46, 50], "294467": 46, "094866": 46, "198331": 46, "439796": 46, "718963": 46, "198348": 46, "124986": 46, "895282": 46, "stoichiometri": 46, "stoich_matrix": 46, "freem": 46, "multiplici": 46, "der": [46, 48, 57, 60], "thrown": 46, "moor": 46, "penros": 46, "singular": 46, "ref": 46, "pinv": 46, "grei": 46, "set_xbound": 46, "set_ybound": 46, "rereferenc": 46, "der_grbw": 46, "def_grbw": 46, "moleculecul": 46, "methyl": 46, "longer": 46, "chain": 46, "Such": 46, "discrep": 46, "long": [46, 53], "initio": 47, "licens": 47, "capabl": 47, "band": 47, "concern": 47, "submiss": [48, 49, 52, 57, 60], "shouldn": [48, 49, 57], "pai": [48, 49, 57, 60], "judici": [48, 49, 57, 60], "ntask": [48, 49, 57], "mem": [48, 49, 57], "3g": [48, 49, 57], "t12": [48, 49, 57], "joe": [48, 49, 57], "report_err": [48, 49, 57], "slurm_submit_dir": [48, 49, 57], "qsub": [48, 57, 60], "queu": [48, 49, 57, 60], "scan": [48, 49, 57, 60], "gb": [48, 49, 57, 60], "queue": [48, 49, 57, 60], "inferno": [48, 49, 57, 60], "whoami": [48, 49, 57, 60], "himem": [48, 49, 57, 60], "alia": [48, 49, 57, 60], "compil": [48, 49, 52, 53, 57, 60, 61], "codeblock": [48, 57, 60], "electrostat": [48, 57, 60], "van": [48, 57, 60], "waal": [48, 57, 60], "pool": [48, 57, 60], "sparc_latest_2021": [48, 57, 60], "test_mostafa": [48, 57, 60], "210128": [48, 57, 60], "210217": [48, 57, 60], "v0": [48, 49, 57, 60], "test_oncv": [48, 57, 60], "210224": [48, 57, 60], "oncv": [48, 57, 60], "psps_soft": [48, 57, 60], "psps_standard": [48, 57, 60], "espresso_sg15_pp": [48, 57, 60], "brown": [48, 57, 60], "brenda": [48, 57, 60], "espresso_sg15_sparc": [48, 57, 60], "qimen_sg15": [48, 57, 60], "upf_lda": [48, 57, 60], "upf_pb": [48, 57, 60], "espresso_sg15_rel": [48, 57, 60], "pseudo_dir": [48, 57, 60], "psppath": [48, 57, 60], "espresso_sg15_mcsh": [48, 57, 60], "psps_mcsh": [48, 57, 60], "psps_qe": [48, 57, 60], "0005": [48, 57, 60], "750": [48, 57, 60], "nosym": [48, 57, 60], "phoenix": 49, "wih": 49, "4g": 49, "hpaceice1": [49, 61], "ssahoo41": [49, 61], "sparc_env": [49, 61], "conda": 49, "environemnt": 49, "multibyt": 49, "char": 49, "deafault": 49, "liabal": 49, "ever": 49, "unavail": 49, "makefil": [49, 61], "pseduopotenti": 49, "download_data": 49, "editor": 49, "eg": 49, "vim": 49, "execut": 49, "psp_dir": 49, "slurm_ntask": 49, "ase_sparc_command": [49, 61], "srun": 49, "fi": [49, 61], "ve": [49, 51, 61], "calc_sparc": [49, 61], "482": [49, 50], "41097204076414": 49, "cycl": [49, 61], "relaxt": [49, 61], "headnod": [49, 61], "ionic": 49, "desir": [49, 53, 61], "mixing_vari": [49, 61], "mixing_paramet": [49, 61], "mixing_histori": [49, 61], "mixing_precond": [49, 61], "cheb_degress": [49, 61], "batch": [49, 61], "broad": [49, 61], "hit": [49, 61], "sprac": [49, 61], "amptorch": [50, 52], "bpnn": 50, "torch": 50, "ase_util": 50, "atomstrain": 50, "gs": 50, "num": 50, "rs_": 50, "g4": 50, "zeta": 50, "ulissigroup": 50, "num_lay": 50, "num_nod": 50, "batchnorm": 50, "force_coeffici": 50, "lr": 50, "batch_siz": 50, "epoch": 50, "mse": 50, "gpu": 50, "fp_param": 50, "save_fp": 50, "val_split": 50, "cmd": 50, "run_dir": 50, "logger": 50, "set_num_thread": 50, "checkpoint": 50, "xavier": 50, "1143": 50, "skorch": 50, "train_energy_ma": 50, "train_forces_ma": 50, "train_loss": 50, "cp": 50, "dur": 50, "36m0": 50, "9776": 50, "32m0": 50, "5535": 50, "35m1": 50, "0490": 50, "0410": 50, "7315": 50, "5250": 50, "35m0": 50, "6843": 50, "0355": 50, "5812": 50, "5261": 50, "4445": 50, "0353": 50, "5395": 50, "5208": 50, "3698": 50, "5281": 50, "5913": 50, "0354": 50, "visibledeprecationwarn": 50, "rag": 50, "sequenc": 50, "5183": 50, "5130": 50, "3640": 50, "5247": 50, "5123": 50, "3282": 50, "0352": 50, "4966": 50, "5133": 50, "3748": 50, "4578": 50, "5022": 50, "3122": 50, "4195": 50, "4864": 50, "2077": 50, "43488168716430664": 50, "true_energi": 50, "pred_energi": 50, "316875487045523": 50, "4133532974220065": 50, "200410481656832": 50, "quantem": 50, "water_2d": 50, "10th": 50, "get_cel": 50, "get_pbc": 50, "82418565": 50, "2981545": 50, "58742465": 50, "7018455": 50, "41257535": 50, "77131852": 50, "593": 50, "6701598080588": 50, "22263082": 50, "76981108": 50, "73799984": 50, "01589577": 50, "96063066": 50, "78570684": 50, "singlepointcalcul": 50, "pseduo": 50, "nsigma": 50, "mcshs_index": 50, "mcshs_dict": 50, "atom_gaussian": 50, "valence_gaussian": 50, "h_pseudodensity_2": 50, "o_pseudodensity_4": 50, "solid_harmon": 50, "fp_scheme": 50, "gmpordernorm": 50, "601": 50, "val_energy_ma": 50, "val_forces_ma": 50, "valid_loss": 50, "9166": 50, "32m3": 50, "6067": 50, "3347": 50, "31m1": 50, "0759": 50, "94m2": 50, "8713": 50, "4352": 50, "1192": 50, "5748": 50, "2845": 50, "1749": 50, "31m0": 50, "4722": 50, "9645": 50, "1838": 50, "1186": 50, "4819": 50, "1487": 50, "1435": 50, "3749": 50, "0119": 50, "1310": 50, "1183": 50, "4268": 50, "0484": 50, "1212": 50, "3292": 50, "8507": 50, "1095": 50, "4574": 50, "32m2": 50, "9619": 50, "1221": 50, "3286": 50, "7766": 50, "1025": 50, "1187": 50, "4648": 50, "7649": 50, "1240": 50, "2889": 50, "7284": 50, "0901": 50, "1188": 50, "4483": 50, "7782": 50, "1140": 50, "3000": 50, "7083": 50, "0952": 50, "1206": 50, "4126": 50, "5931": 50, "0946": 50, "3138": 50, "8513": 50, "0937": 50, "3965": 50, "5699": 50, "0932": 50, "2876": 50, "6931": 50, "0827": 50, "1190": 50, "4545": 50, "5266": 50, "1008": 50, "3681": 50, "6409": 50, "1191": 50, "4035": 50, "5349": 50, "0909": 50, "2769": 50, "0764": 50, "1185": 50, "3541": 50, "4835": 50, "0801": 50, "2840": 50, "6637": 50, "0824": 50, "3933": 50, "4446": 50, "0830": 50, "2911": 50, "4129": 50, "0763": 50, "4083": 50, "3820": 50, "0890": 50, "2717": 50, "4372": 50, "0778": 50, "1176": 50, "3653": 50, "4379": 50, "0783": 50, "2651": 50, "3123": 50, "0712": 50, "3446": 50, "2296": 50, "0671": 50, "2514": 50, "0683": 50, "3463": 50, "3116": 50, "0668": 50, "3127": 50, "3053": 50, "0805": 50, "3048": 50, "2741": 50, "0576": 50, "2565": 50, "3971": 50, "0677": 50, "3850": 50, "2143": 50, "0685": 50, "2590": 50, "2416": 50, "0662": 50, "3074": 50, "1823": 50, "0596": 50, "2150": 50, "3052": 50, "0602": 50, "3284": 50, "1531": 50, "0558": 50, "2061": 50, "2051": 50, "1177": 50, "3458": 50, "1348": 50, "0599": 50, "2997": 50, "2439": 50, "0717": 50, "1182": 50, "2967": 50, "32m1": 50, "9998": 50, "0498": 50, "1795": 50, "2532": 50, "0592": 50, "3580": 50, "9891": 50, "0553": 50, "2544": 50, "3604": 50, "0642": 50, "2489": 50, "9221": 50, "0380": 50, "1968": 50, "94m1": 50, "9220": 50, "0457": 50, "1173": 50, "2962": 50, "8199": 50, "0428": 50, "2825": 50, "1843": 50, "0617": 50, "1184": 50, "2990": 50, "8033": 50, "9435": 50, "0502": 50, "1174": 50, "2753": 50, "7510": 50, "0368": 50, "1692": 50, "1083": 50, "0449": 50, "2613": 50, "7697": 50, "0365": 50, "2200": 50, "0161": 50, "0528": 50, "2596": 50, "7125": 50, "2203": 50, "1059": 50, "1181": 50, "2783": 50, "6646": 50, "0358": 50, "1909": 50, "8565": 50, "0418": 50, "2414": 50, "7629": 50, "0331": 50, "1373": 50, "8587": 50, "0390": 50, "1175": 50, "2468": 50, "5570": 50, "0290": 50, "1899": 50, "7846": 50, "0431": 50, "2359": 50, "5886": 50, "0306": 50, "1814": 50, "6228": 50, "0319": 50, "2765": 50, "6077": 50, "0341": 50, "2342": 50, "7899": 50, "0419": 50, "2398": 50, "5575": 50, "0283": 50, "1651": 50, "8781": 50, "0392": 50, "2822": 50, "7392": 50, "0406": 50, "2555": 50, "9149": 50, "0586": 50, "2562": 50, "5598": 50, "0304": 50, "3649": 50, "8912": 50, "0619": 50, "3189": 50, "6295": 50, "0400": 50, "2663": 50, "7968": 50, "0520": 50, "5291": 50, "0263": 50, "1850": 50, "7202": 50, "2548": 50, "4544": 50, "0277": 50, "1653": 50, "5609": 50, "0307": 50, "2338": 50, "5538": 50, "0261": 50, "2569": 50, "6327": 50, "1180": 50, "3237": 50, "5730": 50, "0434": 50, "1876": 50, "7730": 50, "0351": 50, "2190": 50, "4909": 50, "0259": 50, "1981": 50, "8695": 50, "0416": 50, "2470": 50, "4461": 50, "0296": 50, "2063": 50, "6211": 50, "0391": 50, "2545": 50, "4647": 50, "0278": 50, "1457": 50, "0542": 50, "2509": 50, "3907": 50, "0273": 50, "2374": 50, "8997": 50, "0501": 50, "1189": 50, "2098": 50, "2785": 50, "0204": 50, "1729": 50, "7333": 50, "0385": 50, "1997": 50, "2821": 50, "0186": 50, "1746": 50, "7228": 50, "0378": 50, "2181": 50, "3120": 50, "0209": 50, "1432": 50, "7438": 50, "0396": 50, "2447": 50, "3298": 50, "0251": 50, "1576": 50, "7314": 50, "0427": 50, "2130": 50, "3597": 50, "0220": 50, "1423": 50, "7671": 50, "1194": 50, "2057": 50, "2844": 50, "0199": 50, "3523": 50, "8464": 50, "0615": 50, "1195": 50, "2247": 50, "2996": 50, "0221": 50, "1599": 50, "6260": 50, "0320": 50, "3864": 50, "0232": 50, "1648": 50, "6399": 50, "2332": 50, "3098": 50, "0235": 50, "1491": 50, "6725": 50, "0377": 50, "2238": 50, "3408": 50, "1198": 50, "6988": 50, "0340": 50, "2219": 50, "3041": 50, "0224": 50, "8580": 50, "0477": 50, "1922": 50, "2458": 50, "0197": 50, "1524": 50, "6290": 50, "0318": 50, "2528": 50, "2925": 50, "0267": 50, "1425": 50, "5187": 50, "2082": 50, "2592": 50, "0226": 50, "1927": 50, "6108": 50, "1200": 50, "2038": 50, "1396": 50, "0177": 50, "1853": 50, "5376": 50, "0356": 50, "1925": 50, "2383": 50, "0187": 50, "1483": 50, "7141": 50, "0347": 50, "1951": 50, "1452": 50, "6025": 50, "2262": 50, "2882": 50, "1392": 50, "4542": 50, "0302": 50, "1878": 50, "1722": 50, "0160": 50, "1701": 50, "6339": 50, "67": 50, "2006": 50, "2483": 50, "2441": 50, "6383": 50, "0384": 50, "1952": 50, "1128": 50, "0167": 50, "1572": 50, "6495": 50, "69": 50, "2066": 50, "1974": 50, "0205": 50, "2361": 50, "6223": 50, "0388": 50, "1920": 50, "1656": 50, "0179": 50, "1501": 50, "4612": 50, "1849": 50, "1818": 50, "5071": 50, "0299": 50, "2032": 50, "1515": 50, "0203": 50, "1732": 50, "4123": 50, "0262": 50, "1820": 50, "1566": 50, "0176": 50, "1571": 50, "5981": 50, "0324": 50, "0877": 50, "0178": 50, "1744": 50, "3633": 50, "0293": 50, "1884": 50, "1474": 50, "0170": 50, "1414": 50, "5712": 50, "0323": 50, "0007": 50, "0148": 50, "1242": 50, "3598": 50, "0266": 50, "77": 50, "1848": 50, "1080": 50, "0185": 50, "1219": 50, "4795": 50, "0294": 50, "1993": 50, "0957": 50, "0180": 50, "1529": 50, "4254": 50, "1706": 50, "0934": 50, "0143": 50, "1779": 50, "4566": 50, "1944": 50, "1454": 50, "0279": 50, "2485": 50, "4522": 50, "0383": 50, "2195": 50, "0491": 50, "0196": 50, "2480": 50, "4458": 50, "2165": 50, "0892": 50, "0181": 50, "1600": 50, "6799": 50, "0308": 50, "1681": 50, "1044": 50, "0152": 50, "1473": 50, "6765": 50, "0272": 50, "1559": 50, "9669": 50, "0111": 50, "1443": 50, "5447": 50, "0257": 50, "1598": 50, "0200": 50, "0126": 50, "0997": 50, "5499": 50, "0265": 50, "1903": 50, "2092": 50, "0193": 50, "1719": 50, "3387": 50, "0275": 50, "1943": 50, "0164": 50, "1453": 50, "3405": 50, "0215": 50, "1214": 50, "1725": 50, "9987": 50, "0150": 50, "1819": 50, "3577": 50, "0274": 50, "1696": 50, "0132": 50, "1218": 50, "4168": 50, "0247": 50, "1574": 50, "9592": 50, "0112": 50, "5069": 50, "0316": 50, "0206": 50, "1193": 50, "2031": 50, "0174": 50, "1582": 50, "2927": 50, "0234": 50, "93": 50, "1742": 50, "0450": 50, "0134": 50, "1026": 50, "5851": 50, "0271": 50, "94": 50, "1659": 50, "0118": 50, "0138": 50, "0925": 50, "2795": 50, "0190": 50, "1794": 50, "9443": 50, "1046": 50, "3093": 50, "1615": 50, "9903": 50, "0117": 50, "2493": 50, "2139": 50, "0289": 50, "1640": 50, "0023": 50, "0139": 50, "1319": 50, "2085": 50, "1854": 50, "9160": 50, "0129": 50, "1611": 50, "2746": 50, "0124": 50, "1350": 50, "0207": 50, "1641": 50, "9786": 50, "0123": 50, "1179": 50, "1676": 50, "0171": 50, "101": 50, "1804": 50, "1477": 50, "2252": 50, "0189": 50, "102": 50, "9660": 50, "0107": 50, "1288": 50, "2065": 50, "0165": 50, "1426": 50, "9126": 50, "0101": 50, "3017": 50, "1178": 50, "104": 50, "1552": 50, "9626": 50, "1023": 50, "2177": 50, "1565": 50, "9197": 50, "0109": 50, "2271": 50, "4304": 50, "106": 50, "1577": 50, "9519": 50, "0113": 50, "4217": 50, "0254": 50, "107": 50, "1809": 50, "9428": 50, "0142": 50, "0833": 50, "1636": 50, "0155": 50, "1801": 50, "9507": 50, "0125": 50, "0964": 50, "2912": 50, "1197": 50, "109": 50, "1591": 50, "9774": 50, "0122": 50, "1149": 50, "110": 50, "1349": 50, "9597": 50, "0104": 50, "1361": 50, "2539": 50, "0192": 50, "1405": 50, "8962": 50, "0094": 50, "0816": 50, "112": 50, "1480": 50, "9738": 50, "1081": 50, "0701": 50, "1661": 50, "9641": 50, "2968": 50, "0228": 50, "114": 50, "1623": 50, "9531": 50, "1888": 50, "0162": 50, "1359": 50, "8503": 50, "0085": 50, "1217": 50, "116": 50, "1621": 50, "9877": 50, "0120": 50, "1662": 50, "1458": 50, "117": 50, "8891": 50, "1146": 50, "0696": 50, "118": 50, "9480": 50, "1502": 50, "0151": 50, "119": 50, "1595": 50, "1356": 50, "2482": 50, "1535": 50, "9552": 50, "1923": 50, "0914": 50, "0198": 50, "121": 50, "1450": 50, "8861": 50, "0106": 50, "122": 50, "1509": 50, "9165": 50, "1030": 50, "0825": 50, "0144": 50, "123": 50, "8574": 50, "1312": 50, "0556": 50, "1506": 50, "8273": 50, "0096": 50, "1543": 50, "1073": 50, "0158": 50, "125": 50, "1545": 50, "8432": 50, "0099": 50, "1287": 50, "94m0": 50, "9952": 50, "126": 50, "8679": 50, "0086": 50, "0762": 50, "0127": 50, "127": 50, "1528": 50, "9099": 50, "1525": 50, "8785": 50, "128": 50, "1374": 50, "8302": 50, "0090": 50, "9460": 50, "0091": 50, "129": 50, "1318": 50, "7688": 50, "0078": 50, "0802": 50, "0244": 50, "0105": 50, "130": 50, "1353": 50, "7623": 50, "0079": 50, "1567": 50, "0040": 50, "0149": 50, "131": 50, "1527": 50, "8691": 50, "1043": 50, "0609": 50, "132": 50, "1686": 50, "8479": 50, "1507": 50, "9635": 50, "133": 50, "1322": 50, "7931": 50, "0080": 50, "0870": 50, "9142": 50, "134": 50, "8312": 50, "1635": 50, "0102": 50, "0147": 50, "135": 50, "1330": 50, "7695": 50, "0077": 50, "1202": 50, "9829": 50, "0153": 50, "136": 50, "1226": 50, "7906": 50, "0074": 50, "0986": 50, "9018": 50, "1351": 50, "7942": 50, "1005": 50, "9806": 50, "9174": 50, "0115": 50, "1399": 50, "0194": 50, "139": 50, "8172": 50, "1711": 50, "9990": 50, "140": 50, "1580": 50, "9496": 50, "1126": 50, "8930": 50, "141": 50, "1461": 50, "8817": 50, "0097": 50, "1077": 50, "9365": 50, "0095": 50, "142": 50, "1526": 50, "8705": 50, "0100": 50, "0999": 50, "9754": 50, "1338": 50, "7657": 50, "0775": 50, "0579": 50, "1364": 50, "8011": 50, "1761": 50, "9498": 50, "145": 50, "1394": 50, "7912": 50, "1129": 50, "0292": 50, "146": 50, "1295": 50, "7706": 50, "0073": 50, "1053": 50, "8015": 50, "147": 50, "1215": 50, "8331": 50, "0686": 50, "8843": 50, "148": 50, "1245": 50, "7949": 50, "0081": 50, "0857": 50, "9046": 50, "149": 50, "1551": 50, "9423": 50, "8230": 50, "0754": 50, "9350": 50, "151": 50, "1393": 50, "7908": 50, "1164": 50, "9746": 50, "1209": 50, "152": 50, "7792": 50, "0089": 50, "1160": 50, "153": 50, "8357": 50, "1705": 50, "9471": 50, "154": 50, "1370": 50, "7229": 50, "0087": 50, "0899": 50, "8019": 50, "155": 50, "1285": 50, "7421": 50, "0075": 50, "1201": 50, "9718": 50, "0108": 50, "156": 50, "1252": 50, "7525": 50, "1541": 50, "7143": 50, "0110": 50, "157": 50, "1236": 50, "7696": 50, "0796": 50, "9163": 50, "0098": 50, "158": 50, "1223": 50, "6858": 50, "0065": 50, "0921": 50, "8994": 50, "0088": 50, "159": 50, "1127": 50, "6739": 50, "0060": 50, "0744": 50, "8196": 50, "0068": 50, "160": 50, "7398": 50, "7667": 50, "161": 50, "7674": 50, "9475": 50, "162": 50, "1205": 50, "7363": 50, "0069": 50, "1038": 50, "8700": 50, "0093": 50, "163": 50, "7053": 50, "0071": 50, "9017": 50, "164": 50, "1234": 50, "7153": 50, "0888": 50, "8497": 50, "0092": 50, "165": 50, "7297": 50, "1171": 50, "7997": 50, "166": 50, "7341": 50, "7787": 50, "0084": 50, "167": 50, "7128": 50, "0070": 50, "9008": 50, "168": 50, "1272": 50, "7624": 50, "0076": 50, "0846": 50, "8150": 50, "169": 50, "1224": 50, "7107": 50, "0842": 50, "8130": 50, "1196": 50, "170": 50, "1323": 50, "7400": 50, "0845": 50, "9176": 50, "0103": 50, "171": 50, "7273": 50, "0898": 50, "7833": 50, "172": 50, "1076": 50, "6885": 50, "0056": 50, "0981": 50, "7013": 50, "0066": 50, "173": 50, "1246": 50, "7272": 50, "1121": 50, "7430": 50, "174": 50, "6685": 50, "0061": 50, "0724": 50, "8539": 50, "175": 50, "1230": 50, "7167": 50, "1329": 50, "6367": 50, "176": 50, "1131": 50, "7260": 50, "1036": 50, "7427": 50, "177": 50, "1302": 50, "7387": 50, "0620": 50, "7615": 50, "0051": 50, "178": 50, "6989": 50, "0067": 50, "0987": 50, "8368": 50, "0072": 50, "179": 50, "1247": 50, "6560": 50, "0873": 50, "180": 50, "6762": 50, "8068": 50, "0114": 50, "181": 50, "1199": 50, "7025": 50, "0973": 50, "8420": 50, "182": 50, "6486": 50, "0052": 50, "1067": 50, "9095": 50, "183": 50, "1378": 50, "7040": 50, "1208": 50, "7002": 50, "184": 50, "1296": 50, "6818": 50, "0938": 50, "1400": 50, "7245": 50, "186": 50, "1110": 50, "6289": 50, "0785": 50, "8084": 50, "187": 50, "6449": 50, "0062": 50, "1020": 50, "188": 50, "1165": 50, "6292": 50, "0058": 50, "1047": 50, "7291": 50, "0083": 50, "189": 50, "1135": 50, "6321": 50, "0057": 50, "1122": 50, "7895": 50, "190": 50, "1270": 50, "7463": 50, "8664": 50, "191": 50, "1298": 50, "6623": 50, "1514": 50, "6081": 50, "192": 50, "1031": 50, "6271": 50, "0941": 50, "193": 50, "6415": 50, "1093": 50, "6384": 50, "194": 50, "1013": 50, "6129": 50, "0047": 50, "0584": 50, "6457": 50, "0053": 50, "195": 50, "1203": 50, "6251": 50, "0059": 50, "0756": 50, "6638": 50, "0049": 50, "196": 50, "1249": 50, "6396": 50, "0782": 50, "7870": 50, "197": 50, "6467": 50, "7249": 50, "198": 50, "1120": 50, "5842": 50, "0054": 50, "0757": 50, "6520": 50, "199": 50, "1111": 50, "5966": 50, "0867": 50, "6933": 50, "0063": 50, "1082": 50, "5888": 50, "0050": 50, "1079": 50, "6692": 50, "201": 50, "6021": 50, "5942": 50, "202": 50, "6008": 50, "0604": 50, "6368": 50, "0044": 50, "203": 50, "0939": 50, "5695": 50, "0039": 50, "0660": 50, "6642": 50, "204": 50, "6013": 50, "0681": 50, "7266": 50, "205": 50, "1388": 50, "6395": 50, "1418": 50, "5713": 50, "206": 50, "1283": 50, "6371": 50, "0869": 50, "207": 50, "0991": 50, "5916": 50, "7554": 50, "1311": 50, "6750": 50, "6491": 50, "209": 50, "6475": 50, "1096": 50, "8154": 50, "210": 50, "5956": 50, "1092": 50, "7451": 50, "6198": 50, "0667": 50, "7854": 50, "212": 50, "6001": 50, "0048": 50, "213": 50, "6631": 50, "1007": 50, "214": 50, "1065": 50, "6323": 50, "0704": 50, "6277": 50, "1017": 50, "0046": 50, "0603": 50, "5519": 50, "0033": 50, "216": 50, "1057": 50, "5801": 50, "5797": 50, "0045": 50, "217": 50, "6024": 50, "5444": 50, "1009": 50, "6050": 50, "0519": 50, "6390": 50, "0038": 50, "219": 50, "5450": 50, "0738": 50, "6451": 50, "6916": 50, "0676": 50, "7642": 50, "221": 50, "0975": 50, "5647": 50, "0585": 50, "6847": 50, "222": 50, "0947": 50, "5648": 50, "0791": 50, "6787": 50, "1204": 50, "223": 50, "6012": 50, "0711": 50, "6444": 50, "224": 50, "5934": 50, "0652": 50, "225": 50, "0945": 50, "6434": 50, "0748": 50, "4919": 50, "0029": 50, "226": 50, "0919": 50, "5586": 50, "0679": 50, "6727": 50, "227": 50, "0933": 50, "5449": 50, "0922": 50, "8041": 50, "228": 50, "1341": 50, "0779": 50, "7065": 50, "229": 50, "5731": 50, "0693": 50, "6032": 50, "0043": 50, "230": 50, "1037": 50, "6097": 50, "0929": 50, "231": 50, "5848": 50, "5744": 50, "232": 50, "6389": 50, "6360": 50, "233": 50, "1006": 50, "0923": 50, "234": 50, "0940": 50, "5722": 50, "0649": 50, "235": 50, "0853": 50, "5766": 50, "0650": 50, "5597": 50, "236": 50, "5814": 50, "0041": 50, "5576": 50, "0037": 50, "237": 50, "1105": 50, "5813": 50, "0516": 50, "5868": 50, "238": 50, "0968": 50, "239": 50, "0897": 50, "5212": 50, "4986": 50, "240": 50, "5534": 50, "0851": 50, "6098": 50, "241": 50, "1086": 50, "5741": 50, "0740": 50, "5500": 50, "242": 50, "0894": 50, "5313": 50, "5655": 50, "243": 50, "5333": 50, "0036": 50, "0720": 50, "6282": 50, "244": 50, "0958": 50, "5255": 50, "0621": 50, "6408": 50, "245": 50, "5276": 50, "0034": 50, "5871": 50, "246": 50, "1015": 50, "5462": 50, "0907": 50, "4786": 50, "0042": 50, "247": 50, "5669": 50, "0844": 50, "1024": 50, "5144": 50, "0794": 50, "6536": 50, "249": 50, "1145": 50, "6018": 50, "0809": 50, "250": 50, "5440": 50, "1055": 50, "5173": 50, "251": 50, "0906": 50, "5625": 50, "1112": 50, "5086": 50, "0055": 50, "252": 50, "1293": 50, "5562": 50, "7533": 50, "253": 50, "5439": 50, "0800": 50, "4422": 50, "0027": 50, "254": 50, "0666": 50, "5627": 50, "255": 50, "0821": 50, "5010": 50, "0031": 50, "0820": 50, "5943": 50, "5351": 50, "0771": 50, "5229": 50, "257": 50, "5778": 50, "0493": 50, "5619": 50, "0035": 50, "258": 50, "5100": 50, "1040": 50, "6059": 50, "259": 50, "5525": 50, "0772": 50, "260": 50, "5324": 50, "261": 50, "1132": 50, "5604": 50, "0766": 50, "4859": 50, "262": 50, "1085": 50, "5140": 50, "0735": 50, "5280": 50, "263": 50, "6835": 50, "0082": 50, "5635": 50, "264": 50, "5816": 50, "0733": 50, "6086": 50, "265": 50, "0926": 50, "5600": 50, "0980": 50, "5371": 50, "266": 50, "5649": 50, "5515": 50, "267": 50, "0953": 50, "5181": 50, "1010": 50, "4882": 50, "268": 50, "0936": 50, "5588": 50, "1071": 50, "5224": 50, "269": 50, "1028": 50, "5143": 50, "0690": 50, "5623": 50, "270": 50, "5666": 50, "2167": 50, "6445": 50, "271": 50, "1051": 50, "5066": 50, "0746": 50, "5421": 50, "272": 50, "0781": 50, "4619": 50, "0028": 50, "0550": 50, "5866": 50, "273": 50, "5132": 50, "0700": 50, "3993": 50, "0024": 50, "274": 50, "5919": 50, "1115": 50, "4314": 50, "275": 50, "0931": 50, "5251": 50, "5568": 50, "276": 50, "5491": 50, "4417": 50, "277": 50, "0896": 50, "5477": 50, "0655": 50, "4739": 50, "0864": 50, "4855": 50, "0032": 50, "0571": 50, "279": 50, "4854": 50, "0881": 50, "4540": 50, "280": 50, "0903": 50, "5056": 50, "5509": 50, "281": 50, "0927": 50, "1261": 50, "4381": 50, "282": 50, "0874": 50, "4728": 50, "0882": 50, "4273": 50, "1336": 50, "5366": 50, "0780": 50, "4388": 50, "284": 50, "4673": 50, "5338": 50, "4844": 50, "286": 50, "5002": 50, "0539": 50, "287": 50, "5122": 50, "0829": 50, "5180": 50, "288": 50, "1034": 50, "4579": 50, "289": 50, "0977": 50, "5310": 50, "0918": 50, "4889": 50, "290": 50, "4997": 50, "5296": 50, "291": 50, "5318": 50, "0787": 50, "5288": 50, "292": 50, "0865": 50, "5051": 50, "4685": 50, "293": 50, "0984": 50, "5192": 50, "0924": 50, "4257": 50, "294": 50, "0954": 50, "4874": 50, "0678": 50, "5350": 50, "295": 50, "0030": 50, "5621": 50, "296": 50, "4666": 50, "1116": 50, "4904": 50, "4704": 50, "5260": 50, "298": 50, "5345": 50, "0859": 50, "6286": 50, "299": 50, "4892": 50, "0718": 50, "0915": 50, "4560": 50, "5230": 50, "301": 50, "5008": 50, "4065": 50, "302": 50, "1035": 50, "5205": 50, "4593": 50, "303": 50, "0765": 50, "4813": 50, "0644": 50, "5108": 50, "304": 50, "5113": 50, "305": 50, "4532": 50, "0841": 50, "4653": 50, "306": 50, "4639": 50, "0566": 50, "307": 50, "4288": 50, "0025": 50, "0944": 50, "5556": 50, "308": 50, "4383": 50, "0471": 50, "4951": 50, "309": 50, "4518": 50, "1062": 50, "4879": 50, "310": 50, "0974": 50, "5052": 50, "311": 50, "4810": 50, "6897": 50, "312": 50, "4514": 50, "0648": 50, "5299": 50, "313": 50, "0734": 50, "4414": 50, "314": 50, "0967": 50, "4665": 50, "0593": 50, "4740": 50, "315": 50, "0911": 50, "5248": 50, "1118": 50, "4371": 50, "316": 50, "5135": 50, "0793": 50, "5386": 50, "317": 50, "0900": 50, "5616": 50, "0412": 50, "318": 50, "4941": 50, "5705": 50, "319": 50, "0876": 50, "4674": 50, "4789": 50, "320": 50, "1019": 50, "4950": 50, "0670": 50, "4777": 50, "321": 50, "4492": 50, "5242": 50, "322": 50, "4296": 50, "5220": 50, "323": 50, "0887": 50, "4401": 50, "0875": 50, "4787": 50, "0774": 50, "4597": 50, "4770": 50, "325": 50, "0850": 50, "4553": 50, "4517": 50, "326": 50, "0788": 50, "4651": 50, "0942": 50, "4938": 50, "327": 50, "4852": 50, "0529": 50, "328": 50, "0849": 50, "4641": 50, "1637": 50, "5106": 50, "329": 50, "4870": 50, "330": 50, "4701": 50, "4899": 50, "331": 50, "4490": 50, "0715": 50, "4387": 50, "332": 50, "5070": 50, "5392": 50, "333": 50, "4933": 50, "4604": 50, "334": 50, "0826": 50, "4714": 50, "4230": 50, "335": 50, "0776": 50, "4534": 50, "0716": 50, "4890": 50, "336": 50, "337": 50, "4377": 50, "0806": 50, "5137": 50, "338": 50, "4240": 50, "4896": 50, "339": 50, "0797": 50, "4316": 50, "0026": 50, "0883": 50, "5940": 50, "340": 50, "4396": 50, "0697": 50, "5289": 50, "341": 50, "0868": 50, "4330": 50, "1225": 50, "4125": 50, "0064": 50, "1207": 50, "342": 50, "4568": 50, "5372": 50, "4165": 50, "5404": 50, "344": 50, "0731": 50, "0575": 50, "5161": 50, "345": 50, "0858": 50, "4403": 50, "4211": 50, "346": 50, "4858": 50, "0714": 50, "4429": 50, "347": 50, "0872": 50, "4705": 50, "4521": 50, "348": 50, "0803": 50, "4600": 50, "349": 50, "4713": 50, "0810": 50, "5487": 50, "4095": 50, "0855": 50, "5493": 50, "351": 50, "4668": 50, "352": 50, "0688": 50, "4231": 50, "5158": 50, "353": 50, "4235": 50, "0664": 50, "354": 50, "4410": 50, "4277": 50, "0022": 50, "355": 50, "0694": 50, "4062": 50, "5751": 50, "356": 50, "0452": 50, "5207": 50, "357": 50, "0777": 50, "4606": 50, "0564": 50, "3778": 50, "0017": 50, "358": 50, "0706": 50, "3966": 50, "0460": 50, "359": 50, "0798": 50, "4322": 50, "5060": 50, "360": 50, "0728": 50, "4144": 50, "0737": 50, "4707": 50, "361": 50, "0707": 50, "4161": 50, "0631": 50, "5201": 50, "362": 50, "0741": 50, "4366": 50, "5581": 50, "0751": 50, "4335": 50, "4621": 50, "364": 50, "0815": 50, "4346": 50, "4944": 50, "0834": 50, "4138": 50, "0612": 50, "5849": 50, "366": 50, "0814": 50, "4509": 50, "367": 50, "4145": 50, "0020": 50, "5027": 50, "368": 50, "3853": 50, "5111": 50, "369": 50, "0835": 50, "4076": 50, "370": 50, "4210": 50, "0632": 50, "4395": 50, "371": 50, "0713": 50, "3989": 50, "0348": 50, "5196": 50, "372": 50, "0708": 50, "3985": 50, "0532": 50, "5302": 50, "373": 50, "0959": 50, "4061": 50, "0904": 50, "5035": 50, "374": 50, "0767": 50, "4303": 50, "0343": 50, "4582": 50, "375": 50, "4179": 50, "0645": 50, "5720": 50, "376": 50, "4281": 50, "0458": 50, "5657": 50, "377": 50, "3873": 50, "0552": 50, "4629": 50, "378": 50, "4103": 50, "379": 50, "0878": 50, "4369": 50, "4863": 50, "380": 50, "0786": 50, "4037": 50, "0538": 50, "5706": 50, "381": 50, "0948": 50, "4569": 50, "4806": 50, "382": 50, "4364": 50, "5546": 50, "383": 50, "0705": 50, "5322": 50, "3991": 50, "6034": 50, "385": 50, "0889": 50, "4552": 50, "6138": 50, "0910": 50, "0618": 50, "4932": 50, "387": 50, "3914": 50, "4449": 50, "388": 50, "4036": 50, "0533": 50, "4797": 50, "389": 50, "4398": 50, "5097": 50, "390": 50, "0895": 50, "4056": 50, "4088": 50, "391": 50, "0978": 50, "4452": 50, "0624": 50, "392": 50, "0822": 50, "3845": 50, "1018": 50, "5149": 50, "393": 50, "4289": 50, "0729": 50, "5755": 50, "394": 50, "4079": 50, "0727": 50, "5269": 50, "395": 50, "4791": 50, "0893": 50, "5234": 50, "396": 50, "4393": 50, "4481": 50, "397": 50, "0854": 50, "4142": 50, "0608": 50, "5127": 50, "398": 50, "4009": 50, "0653": 50, "4961": 50, "399": 50, "0902": 50, "0374": 50, "5084": 50, "0371": 50, "401": 50, "4249": 50, "0659": 50, "402": 50, "4511": 50, "0831": 50, "4219": 50, "403": 50, "0817": 50, "4355": 50, "6038": 50, "404": 50, "0709": 50, "4209": 50, "0742": 50, "5339": 50, "405": 50, "4290": 50, "0795": 50, "4016": 50, "406": 50, "0812": 50, "4112": 50, "0747": 50, "4709": 50, "407": 50, "0692": 50, "3903": 50, "0750": 50, "4942": 50, "408": 50, "409": 50, "3705": 50, "4977": 50, "410": 50, "4524": 50, "411": 50, "1345": 50, "4917": 50, "0654": 50, "6322": 50, "412": 50, "0732": 50, "5651": 50, "413": 50, "3874": 50, "0021": 50, "4374": 50, "414": 50, "3990": 50, "4624": 50, "415": 50, "4162": 50, "0689": 50, "5049": 50, "416": 50, "0843": 50, "4229": 50, "0627": 50, "4439": 50, "417": 50, "0758": 50, "3927": 50, "4910": 50, "418": 50, "0719": 50, "4391": 50, "419": 50, "3799": 50, "4788": 50, "420": 50, "3701": 50, "0760": 50, "4960": 50, "421": 50, "0739": 50, "3727": 50, "422": 50, "4266": 50, "0607": 50, "5397": 50, "423": 50, "0752": 50, "3911": 50, "424": 50, "3819": 50, "0019": 50, "0488": 50, "5174": 50, "425": 50, "3779": 50, "0466": 50, "426": 50, "0673": 50, "3724": 50, "0476": 50, "4499": 50, "427": 50, "3807": 50, "5214": 50, "428": 50, "3858": 50, "4972": 50, "429": 50, "3657": 50, "0703": 50, "4747": 50, "430": 50, "3559": 50, "0481": 50, "4710": 50, "431": 50, "0769": 50, "3650": 50, "5152": 50, "432": 50, "0828": 50, "4030": 50, "433": 50, "0790": 50, "3764": 50, "0461": 50, "434": 50, "0832": 50, "3753": 50, "5373": 50, "0730": 50, "3980": 50, "0453": 50, "5193": 50, "436": 50, "3591": 50, "437": 50, "3842": 50, "5185": 50, "438": 50, "3875": 50, "0536": 50, "5182": 50, "439": 50, "3832": 50, "440": 50, "3743": 50, "0661": 50, "4632": 50, "441": 50, "3535": 50, "4888": 50, "442": 50, "3785": 50, "0749": 50, "5117": 50, "443": 50, "0745": 50, "3857": 50, "4479": 50, "444": 50, "5368": 50, "445": 50, "3902": 50, "5306": 50, "446": 50, "447": 50, "448": 50, "3540": 50, "449": 50, "0658": 50, "3940": 50, "0443": 50, "5502": 50, "450": 50, "4040": 50, "0913": 50, "6746": 50, "451": 50, "4491": 50, "0908": 50, "5839": 50, "0799": 50, "4173": 50, "4650": 50, "453": 50, "4339": 50, "1456": 50, "4926": 50, "454": 50, "0972": 50, "3831": 50, "4293": 50, "455": 50, "0570": 50, "4457": 50, "456": 50, "4135": 50, "1386": 50, "457": 50, "4089": 50, "0595": 50, "5902": 50, "458": 50, "3803": 50, "5539": 50, "459": 50, "4140": 50, "5752": 50, "460": 50, "1136": 50, "6984": 50, "461": 50, "1251": 50, "4923": 50, "0444": 50, "5982": 50, "0891": 50, "5961": 50, "1220": 50, "463": 50, "3635": 50, "0376": 50, "5582": 50, "465": 50, "4245": 50, "6244": 50, "466": 50, "0837": 50, "0651": 50, "5165": 50, "467": 50, "0337": 50, "5544": 50, "468": 50, "4223": 50, "0360": 50, "5297": 50, "469": 50, "0606": 50, "3766": 50, "0435": 50, "5262": 50, "4166": 50, "0540": 50, "5024": 50, "472": 50, "3583": 50, "473": 50, "4074": 50, "5457": 50, "474": 50, "0657": 50, "0639": 50, "5001": 50, "3826": 50, "0349": 50, "5065": 50, "476": 50, "4043": 50, "0625": 50, "3692": 50, "477": 50, "3502": 50, "0018": 50, "4843": 50, "1210": 50, "478": 50, "4734": 50, "479": 50, "3898": 50, "0665": 50, "5486": 50, "480": 50, "4011": 50, "5938": 50, "481": 50, "3615": 50, "0554": 50, "4657": 50, "1254": 50, "4724": 50, "483": 50, "3553": 50, "5389": 50, "484": 50, "0641": 50, "3772": 50, "0636": 50, "5098": 50, "485": 50, "3835": 50, "0468": 50, "486": 50, "3344": 50, "5360": 50, "487": 50, "0726": 50, "3469": 50, "5053": 50, "488": 50, "3734": 50, "0949": 50, "4973": 50, "489": 50, "3685": 50, "0597": 50, "5401": 50, "490": 50, "3489": 50, "491": 50, "0753": 50, "3658": 50, "5687": 50, "492": 50, "3566": 50, "0541": 50, "5718": 50, "493": 50, "3746": 50, "494": 50, "0880": 50, "3679": 50, "5715": 50, "495": 50, "0789": 50, "3932": 50, "0807": 50, "4751": 50, "496": 50, "3854": 50, "4267": 50, "497": 50, "0861": 50, "3935": 50, "0691": 50, "498": 50, "3460": 50, "0513": 50, "5370": 50, "499": 50, "3592": 50, "5358": 50, "3690": 50, "5564": 50, "00053215026855": 50, "0017036549776706506": 50, "031901714312218415": 50, "7624330743726": 50, "set_angl": 50, "training_angle100": 50, "get_angl": 50, "atol": 50, "distances_train": 50, "energies_train": 50, "0x2aac25c3f518": 50, "welcom": 51, "sub": [51, 53], "team": [51, 53], "semest": [51, 52, 53], "professor": 52, "spring": 52, "2017": 52, "catmap": 52, "electrolen": 52, "tapsolv": 52, "instructor": [52, 53], "ourselv": 52, "everyon": 52, "speak": 52, "bore": 52, "premis": 52, "sophomor": [52, 53], "graduat": [52, 53], "particip": [52, 53], "credit": [52, 53], "receiv": [52, 53], "biweekli": 52, "progress": [52, 53], "person": 52, "accomplish": 52, "teamwork": 52, "thursdai": 52, "canva": [52, 53], "midterm": [52, 53], "deliver": [52, 53], "adventur": 52, "slack": [52, 53], "channel": [52, 53], "regularli": 52, "teammat": [52, 53], "advisor": 52, "touch": 52, "shortli": 52, "advis": 52, "mentor": [52, 53], "workflow": [52, 53], "autom": [52, 53], "chatdft": [52, 53], "catalyst": [52, 53], "discoveri": [52, 53], "wast": [52, 53], "sludg": [52, 53], "broader": 52, "advic": 52, "organiz": 52, "subteam": [52, 53], "virtual": [52, 53], "room": [52, 53], "attend": 52, "breakout": 52, "subgroup": [52, 53], "campu": [52, 53], "elect": 52, "workshop": [52, 53], "unstructur": 52, "opportun": [52, 53], "synchron": [52, 53], "lose": 52, "hour": [52, 53], "ahead": 52, "nobodi": 52, "extenst": 52, "button": 52, "ubuntu": 52, "subsystem": 52, "en": 52, "wsl": 52, "win10": 52, "ta": 53, "logan": 53, "brabson": 53, "luca": 53, "timmerman": 53, "neung": 53, "kyung": 53, "yu": 53, "kayle": 53, "tian": 53, "sayan": 53, "bhowmik": 53, "email": 53, "ajm": 53, "lbrabson3": 53, "ltimmerman3": 53, "ntian30": 53, "sbhowmik9": 53, "offic": 53, "appoint": 53, "am": 53, "app": 53, "vertic": 53, "undergradu": 53, "earn": 53, "academ": 53, "faculti": 53, "expertis": 53, "multidisciplinari": 53, "disciplin": 53, "maintain": 53, "phd": 53, "year": 53, "durat": 53, "career": 53, "disciplinari": 53, "breadth": 53, "profession": 53, "role": 53, "signific": 53, "benefit": 53, "intersect": 53, "electr": 53, "represnet": 53, "chat": 53, "bot": 53, "emploi": 53, "prof": 53, "suryanarayana": 53, "massiv": 53, "fascin": 53, "addition": 53, "enhanc": 53, "delv": 53, "cheminformat": 53, "publish": 53, "aim": 53, "discov": 53, "reactiv": 53, "isntead": 53, "contact": 53, "timelin": 53, "grade": 53, "announc": 53, "categori": 53, "decim": 53, "lack": 53, "irrelev": 53, "reserv": 53, "unambigu": 53, "leader": 53, "realist": 53, "deliv": 53, "dialogu": 53, "readm": 53, "grader": 53, "meet": 53, "conduct": [53, 54], "record": 53, "flip": 53, "classroom": 53, "pitch": 53, "ex": 53, "thanksgiv": 53, "dai": 53, "notifi": 53, "fairli": 53, "cultiv": 54, "prepar": 54, "confluenc": 54, "coupl": 54, "submiit": 60, "login": 61, "sparc_run": 61, "pbe_pseudo": 61, "pbs_np": 61, "mpirun": 61, "sparc_cor": 61, "sprc": 61}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"adsorpt": [0, 1, 55, 56, 58], "energi": [0, 1, 16, 19, 46, 55, 56, 58], "calcul": [0, 1, 6, 16, 19, 29, 41, 45, 49, 50, 55, 56, 57, 58, 59, 60, 61], "us": [0, 16, 23, 28, 29, 36, 49, 50, 55, 56, 58, 59, 61], "dft": [0, 1, 6, 16, 45, 46, 49, 55, 56, 57, 58, 60, 61], "qe": [0, 48, 55, 58], "from": [1, 28, 32, 36, 38, 40, 46, 59], "sparc": [1, 16, 49, 56, 61], "appendix": 2, "applic": 3, "densiti": [3, 21, 40, 41, 47], "function": [3, 21, 28, 29, 37, 38, 40, 47, 50, 59], "theori": [3, 21, 22, 47], "introduct": [3, 4, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 44, 45, 47, 52, 59], "basic": [4, 32], "python": [4, 28, 30, 31, 44, 49, 59, 61], "tool": [4, 42], "converg": 5, "comput": [5, 23, 35], "paramet": [5, 34], "bulk": [5, 18], "structur": [5, 18, 22, 23, 27, 52, 53], "exercis": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 48, 49, 51, 57, 60, 61], "recommend": [5, 21], "read": [5, 21, 28, 30, 32, 59], "creat": [6, 28, 29, 41, 59], "environ": [6, 23], "quantum": [6, 48, 52, 53, 57, 60], "espresso": [6, 48, 57, 60], "7": 6, "0": [6, 34, 38, 41], "setup": 6, "knowledg": 6, "requir": 6, "walk": 6, "through": [6, 23], "exampl": [6, 19, 32, 35, 36, 37, 38, 40, 41], "lrt": 6, "compil": 6, "1": [7, 8, 9, 10, 11, 12, 13, 14, 15, 38, 52], "2": [7, 9, 10, 11, 12, 13, 14, 15, 38], "3": [9, 10, 11, 12, 13, 14, 15], "4": [12, 14, 15], "5": 15, "ga": [16, 46], "format": [16, 28, 32, 52, 53, 59], "develop": 17, "goal": [17, 32], "intro": [18, 19, 20, 24], "build": [18, 41, 55, 56, 58], "ASE": [18, 19], "The": [18, 23, 27, 30, 35, 38, 59], "atom": [18, 44, 46, 55, 56, 58], "object": [18, 30, 50, 53, 59], "molecul": 18, "crystal": 18, "surfac": [18, 55, 56, 58], "set": [18, 30, 33, 49, 59, 61], "up": [18, 49, 61], "constraint": 18, "summari": [18, 21, 35], "reaction": [19, 46], "more": [19, 40], "about": [19, 52, 53], "support": [19, 38], "interfac": [19, 30, 49, 59, 61], "classif": [20, 37, 39], "gener": [20, 37, 38, 41], "model": [20, 33, 34, 36, 37, 38, 39, 40, 41, 46, 50], "exchang": 21, "correl": [21, 35, 36], "pseudopotenti": [21, 57, 60], "spin": 21, "polar": 21, "magnet": 21, "electron": 22, "linux": [23, 52], "high": [23, 24, 35, 41], "perform": [23, 36], "termin": 23, "move": 23, "file": [23, 29, 59], "ls": 23, "command": 23, "cd": 23, "quick": 23, "problem": [23, 37, 40], "make": [23, 29, 50, 59], "directori": 23, "remov": [23, 28, 59], "run": [23, 47, 48, 49, 57, 60, 61], "code": [23, 39, 49], "script": 23, "alias": 23, "ssh": 23, "To": 23, "get": [23, 49, 61], "onto": 23, "supercomput": [23, 49, 57], "cluster": [23, 40, 49, 57], "regress": [24, 33, 38], "dimension": [24, 29, 35, 36, 59], "data": [24, 29, 31, 35, 52, 53, 59], "ml": 25, "potenti": [25, 27], "content": [25, 26, 27, 43, 50], "machin": [26, 33, 38, 42, 43], "learn": [26, 32, 33, 36, 42, 43], "neural": [27, 38, 50], "network": [27, 38, 50], "nnp": [27, 50], "tabl": [27, 50], "name": [27, 28, 50, 59], "descriptor": 27, "fingerprint": [27, 50], "scheme": [27, 50], "fp_scheme": 27, "atomist": 27, "nn_structur": 27, "prepar": [27, 40], "instal": [27, 52], "amptorch": 27, "conda": 27, "refer": [27, 32], "program": [28, 59], "import": [28, 49, 59, 61], "modul": [28, 59], "document": [28, 53, 59], "inform": [28, 34, 41, 59], "variabl": [28, 59], "type": [28, 37, 40, 59], "protect": [28, 59], "fundament": [28, 59], "compound": [28, 59], "string": [28, 59], "list": [28, 59], "dictionari": [28, 59], "print": [28, 59], "ad": [28, 59], "insert": [28, 59], "modifi": [28, 40, 59], "element": [28, 29, 46, 59], "tupl": [28, 59], "loop": [28, 59], "comprehens": [28, 59], "default": [28, 59], "argument": [28, 59], "keyword": [28, 59], "unnam": [28, 59], "anonym": [28, 59], "lambda": [28, 59], "class": [28, 37, 59], "inherit": [28, 59], "except": [28, 59], "further": [28, 30, 59], "numpi": [29, 59], "multidimension": [29, 59], "arrai": [29, 59], "i": [29, 59], "o": [29, 50, 59], "manipul": [29, 44, 59], "index": [29, 59], "slice": [29, 59], "fanci": [29, 59], "transpos": [29, 59], "linear": [29, 31, 33, 38, 59], "algebra": [29, 31, 59], "scalar": [29, 59], "oper": [29, 37, 59], "wise": [29, 59], "matrix": [29, 33, 35, 36, 46, 59], "common": [29, 59], "process": [29, 37, 59], "higher": [29, 59], "reshap": [29, 59], "resiz": [29, 59], "deep": [29, 59], "copi": [29, 59], "condit": [29, 37, 59], "matplotlib": [30, 59], "plot": [30, 35, 38, 40, 59], "matlab": [30, 59], "like": [30, 52, 59], "api": [30, 59], "orient": [30, 59], "figur": [30, 32, 59], "size": [30, 34, 59], "aspect": [30, 59], "ratio": [30, 59], "dpi": [30, 59], "save": [30, 59], "titl": [30, 59], "label": [30, 41, 59], "legend": [30, 59], "color": [30, 59], "linewidth": [30, 59], "linetyp": [30, 59], "control": [30, 59], "over": [30, 59], "axi": [30, 59], "appear": [30, 59], "twin": [30, 59], "ax": [30, 59], "text": [30, 59], "annot": [30, 59], "colormap": [30, 59], "contour": [30, 59], "imag": [30, 59], "3d": [30, 59], "version": [30, 59], "scipi": [31, 59], "librari": [31, 59], "scientif": [31, 32, 59], "algorithm": [31, 32, 40, 59], "numer": [31, 59], "integr": [31, 59], "fix": [31, 59], "quadratur": [31, 59], "interpol": [31, 33, 59], "optim": [31, 34, 38, 59], "find": [31, 36, 40, 59], "minima": [31, 59], "solv": [31, 59], "an": [31, 32, 36, 50, 59], "equat": [31, 59], "statist": [31, 35, 59], "test": [31, 59], "system": [31, 59], "eigenvalu": [31, 59], "eigenvector": [31, 59], "search": 32, "literatur": 32, "strategi": [32, 57, 60], "absolut": 32, "rel": 32, "continu": [32, 43], "updat": 32, "ai": 32, "power": 32, "evalu": 32, "journal": 32, "manag": 32, "A": [32, 33], "new": [32, 39, 41, 52], "subject": 32, "paper": 32, "typic": 32, "zoom": 32, "In": 32, "arbitrari": 32, "guidelin": 32, "direct": 32, "vip": [32, 51, 52, 53], "student": [32, 52], "question": 32, "review": [32, 53], "assign": [32, 52], "skim": 32, "summar": 32, "overal": 32, "work": [32, 52], "what": [32, 33, 34, 35, 37, 38, 39, 40, 49, 61], "most": 32, "interest": 32, "relev": 32, "main": 32, "thing": 32, "you": [32, 38, 39, 52], "strongest": 32, "point": 32, "weakest": 32, "how": [32, 36, 38, 40, 52], "doe": [32, 35, 38, 52], "relat": [32, 34], "your": [32, 37], "research": [32, 52], "project": 32, "non": [33, 38, 39], "parametr": [33, 38, 39], "perspect": 33, "vs": [33, 41, 46], "discuss": [33, 34, 35, 36, 37, 38, 39, 40], "column": 33, "space": 33, "why": [33, 34, 36], "do": [33, 35, 38, 39, 49, 61], "we": [33, 40], "fit_intercept": 33, "fals": [33, 37], "kernel": [33, 36, 38, 41], "complex": 34, "criteria": 34, "regular": [34, 52], "smooth": 34, "its": 34, "happen": [34, 40], "alpha": [34, 38], "rightarrow": 34, "infti": 34, "lasso": 34, "hyperparamet": [34, 39], "tune": 34, "dataset": [35, 37, 38, 40, 50], "dow": 35, "mnist": 35, "curs": 35, "bless": 35, "inspect": 35, "featur": 35, "mean": [35, 40], "standard": [35, 52], "deviat": 35, "each": 35, "histogram": [35, 41], "follow": 35, "normal": [35, 41], "distribut": [35, 41], "scatter": 35, "vertic": 35, "horizont": 35, "line": [35, 37, 38], "joint": 35, "reduct": 36, "overview": [36, 37, 40, 41, 52], "practic": 36, "consider": 36, "assess": 36, "varianc": 36, "distanc": [36, 40], "visual": 36, "princip": 36, "compon": 36, "analysi": 36, "pca": [36, 40], "thi": [36, 38, 39], "differ": [36, 37], "ar": [36, 37, 39], "block": 36, "rank": 36, "covari": 36, "averag": 36, "10": [36, 38], "vector": [36, 38], "8": 36, "other": 36, "variant": 36, "approach": 36, "manifold": 36, "autoencod": 36, "statement": [37, 40], "toi": 37, "which": [37, 38, 39, 40], "discrimin": [37, 38], "accuraci": [37, 40], "metric": [37, 40], "valid": 37, "posit": [37, 55, 56, 58], "neg": 37, "consid": [37, 55, 56, 58], "chemic": [37, 46], "where": 37, "predict": [37, 39, 50], "whether": 37, "reactor": 37, "runawai": 37, "implic": 37, "precis": 37, "recal": 37, "f1": 37, "score": [37, 40], "receiv": 37, "characterist": 37, "roc": 37, "curv": 37, "confus": 37, "matric": 37, "cross": 37, "resampl": 37, "multi": 37, "deriv": 37, "loss": [37, 38], "slope": 37, "intercept": 37, "between": 37, "two": 37, "count": 37, "some": 37, "perceptron": 38, "can": [38, 40, 41, 52], "go": [38, 50], "wrong": 38, "max": 38, "cost": 38, "logist": [38, 53], "compar": [38, 46], "after": 38, "moon": 38, "margin": 38, "best": 38, "100": 38, "Is": [38, 39], "think": [38, 39], "decis": [38, 39], "boundari": 38, "chang": [38, 50, 53], "c": 38, "gamma": 38, "altern": 39, "method": 39, "k": [39, 40], "nearest": 39, "neighbor": 39, "knn": 39, "reliabl": 39, "part": 39, "train": [39, 50, 52, 53, 54], "advantag": 39, "disadvantag": 39, "naiv": 39, "bay": [39, 41], "tree": 39, "conclus": 39, "expect": 40, "maxim": 40, "might": 40, "outlier": 40, "gaussian": [40, 41], "mixtur": [40, 41], "step": 40, "silhouett": 40, "number": 40, "gmm": [40, 41], "base": 40, "shift": [40, 46], "initi": 40, "guess": 40, "veri": 40, "far": 40, "awai": 40, "dbscan": 40, "hierarch": 40, "dendrogram": 40, "agglom": 40, "bayesian": 41, "criterion": 41, "dimens": 41, "digit": 41, "6": 41, "estim": 41, "kde": 41, "Not": 41, "so": 41, "na\u00efv": 41, "posterior": 41, "probail": 41, "simpl": [41, 49, 57], "concept": 42, "nut": 45, "bolt": 45, "referenc": 46, "bind": 46, "case": 46, "studi": 46, "microkinet": 46, "co": 46, "co_2": 46, "hydrogen": 46, "methanol": 46, "water": [46, 50], "dr": 46, "grabow": 46, "dagger": 46, "42": 46, "elementari": 46, "30": 46, "speci": 46, "raw": 46, "stoichiometr": 46, "y": 46, "ic": 46, "s": 46, "pace": [47, 48, 49, 57, 60], "phoenix": [48, 57, 60], "note": [49, 61], "submit": [49, 61], "cuco": 50, "symmetri": 50, "2nd": 50, "gen": 50, "nnff": 50, "training_bp": 50, "construct": 50, "defin": 50, "configur": 50, "trainer": 50, "hit": 50, "ase": 50, "2d": 50, "gmp": 50, "singlenn": 50, "training_gmp": 50, "fit": 50, "1d": 50, "pe": 50, "h": 50, "bond": 50, "length": 50, "materi": 51, "lectur": [51, 52, 56], "big": [52, 53], "mechan": [52, 53], "medford": [52, 54], "group": [52, 54], "prof": 52, "aj": 52, "grade": 52, "cours": [52, 53], "commun": 52, "team": 52, "return": 52, "omsc": 52, "post": 52, "sub": 52, "meet": 52, "schedul": [52, 53], "syllabu": [52, 53], "week": 52, "softwar": 52, "anaconda3": 52, "ensur": 52, "access": 52, "unix": 52, "prompt": 52, "window": 52, "user": 52, "mac": 52, "descript": 53, "person": 53, "accomplish": 53, "submiss": 53, "teamwork": 53, "interact": 53, "graduat": 54, "o_2": [55, 56, 58], "platinum": [55, 56, 58], "pt": [55, 56, 58], "constrain": [55, 56, 58], "need": 56, "edit": 56, "link": 56, "select": [57, 60]}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9, "sphinx": 56}})
\ No newline at end of file
+Search.setIndex({"docnames": ["docs/Adsorption_energy_calculation_in_QE", "docs/Adsorption_energy_calculation_in_SPARC", "docs/Appendix", "docs/Applications_of_Density_Functional_Theory", "docs/Basic_Python_Tools", "docs/Convergence_of_Computational_Parameters", "docs/Create_DFT_Environments", "docs/Exercises_ASE_calcs", "docs/Exercises_ASE_intro", "docs/Exercises_DFT_applications", "docs/Exercises_DFT_basics", "docs/Exercises_ML_basics_Pt1", "docs/Exercises_ML_basics_Pt2", "docs/Exercises_convergence", "docs/Exercises_linux", "docs/Exercises_python", "docs/Gas_formation_energy_calculation_in_SPARC", "docs/Goals", "docs/Intro_to_ASE_Building_Structures", "docs/Intro_to_ASE_Calculators", "docs/Intro_to_Classification_and_Generative_Models", "docs/Intro_to_Density_Functional_Theory", "docs/Intro_to_EST", "docs/Intro_to_Linux_HPC", "docs/Intro_to_Regression_and_High_Dimensional_Data", "docs/Introduction_to_ML_Potentials", "docs/Introduction_to_Machine_Learning", "docs/Introduction_to_Neural_Network_Potentials", "docs/Introduction_to_Python_programming", "docs/Introduction_to_numpy", "docs/Introduction_to_plotting_in_Python", "docs/Introduction_to_scipy", "docs/Literature_Searches", "docs/ML_1_1_Non-parametric_Models", "docs/ML_1_2_Complexity_Optimization", "docs/ML_1_3_High_Dimensional_Data", "docs/ML_1_4_Dimensionality_Reduction", "docs/ML_2_1_Classification_Basics", "docs/ML_2_2_Generalized_Linear_Models", "docs/ML_2_3_Alternate_Classification_Models", "docs/ML_2_4_Clustering", "docs/ML_2_5_Generative_Models", "docs/Machine_Learning_Concepts_and_Tools", "docs/Machine_Learning_Continued", "docs/Manipulating_Atoms_in_Python", "docs/Nuts_and_Bolts_of_DFT_Calculations", "docs/Referencing_Binding_Energies", "docs/Running_Density_Funtional_Theory_on_PACE", "docs/Running_QE_on_PACE", "docs/Running_SPARC_on_PACE", "docs/Training_Neural_Network_Potentials_with_JAX", "docs/VIP_Info", "docs/VIP_Overview", "docs/VIP_syllabus", "docs/index", "docs/new/Adsorption_energy_calculation_in_QE", "docs/new/Adsorption_energy_calculation_in_SPARC", "docs/new/Running_QE_on_PACE", "docs/old/Adsorption_Energy", "docs/old/Python_Basics", "docs/old/Running_DFT_on_PACE", "docs/old/Running_SPARC"], "filenames": ["docs\\Adsorption_energy_calculation_in_QE.ipynb", "docs\\Adsorption_energy_calculation_in_SPARC.ipynb", "docs\\Appendix.md", "docs\\Applications_of_Density_Functional_Theory.md", "docs\\Basic_Python_Tools.md", "docs\\Convergence_of_Computational_Parameters.ipynb", "docs\\Create_DFT_Environments.ipynb", "docs\\Exercises_ASE_calcs.ipynb", "docs\\Exercises_ASE_intro.ipynb", "docs\\Exercises_DFT_applications.ipynb", "docs\\Exercises_DFT_basics.ipynb", "docs\\Exercises_ML_basics_Pt1.ipynb", "docs\\Exercises_ML_basics_Pt2.ipynb", "docs\\Exercises_convergence.ipynb", "docs\\Exercises_linux.ipynb", "docs\\Exercises_python.ipynb", "docs\\Gas_formation_energy_calculation_in_SPARC.ipynb", "docs\\Goals.md", "docs\\Intro_to_ASE_Building_Structures.ipynb", "docs\\Intro_to_ASE_Calculators.ipynb", "docs\\Intro_to_Classification_and_Generative_Models.md", "docs\\Intro_to_Density_Functional_Theory.ipynb", "docs\\Intro_to_EST.md", "docs\\Intro_to_Linux_HPC.md", "docs\\Intro_to_Regression_and_High_Dimensional_Data.md", "docs\\Introduction_to_ML_Potentials.ipynb", "docs\\Introduction_to_Machine_Learning.ipynb", "docs\\Introduction_to_Neural_Network_Potentials.ipynb", "docs\\Introduction_to_Python_programming.ipynb", "docs\\Introduction_to_numpy.ipynb", "docs\\Introduction_to_plotting_in_Python.ipynb", "docs\\Introduction_to_scipy.ipynb", "docs\\Literature_Searches.ipynb", "docs\\ML_1_1_Non-parametric_Models.ipynb", "docs\\ML_1_2_Complexity_Optimization.ipynb", "docs\\ML_1_3_High_Dimensional_Data.ipynb", "docs\\ML_1_4_Dimensionality_Reduction.ipynb", "docs\\ML_2_1_Classification_Basics.ipynb", "docs\\ML_2_2_Generalized_Linear_Models.ipynb", "docs\\ML_2_3_Alternate_Classification_Models.ipynb", "docs\\ML_2_4_Clustering.ipynb", "docs\\ML_2_5_Generative_Models.ipynb", "docs\\Machine_Learning_Concepts_and_Tools.ipynb", "docs\\Machine_Learning_Continued.ipynb", "docs\\Manipulating_Atoms_in_Python.md", "docs\\Nuts_and_Bolts_of_DFT_Calculations.md", "docs\\Referencing_Binding_Energies.ipynb", "docs\\Running_Density_Funtional_Theory_on_PACE.md", "docs\\Running_QE_on_PACE.ipynb", "docs\\Running_SPARC_on_PACE.ipynb", "docs\\Training_Neural_Network_Potentials_with_JAX.ipynb", "docs\\VIP_Info.md", "docs\\VIP_Overview.ipynb", "docs\\VIP_syllabus.md", "docs\\index.md", "docs\\new\\Adsorption_energy_calculation_in_QE.ipynb", "docs\\new\\Adsorption_energy_calculation_in_SPARC.ipynb", "docs\\new\\Running_QE_on_PACE.ipynb", "docs\\old\\Adsorption_Energy.ipynb", "docs\\old\\Python_Basics.ipynb", "docs\\old\\Running_DFT_on_PACE.ipynb", "docs\\old\\Running_SPARC.ipynb"], "titles": ["5.2. Adsorption energy calculation using DFT", "5.3. Adsorption energy from DFT", "Appendix", "5. Applications of Density Functional Theory", "1. Introduction to Basic Python Tools", "Convergence of Computational Parameters", "Create DFT Environments", "2.5. Exercises", "2.4. Exercises", "5.4. Exercises", "Exercises", "6.6. Exercises", "7.7. Exercises", "Exercises", "3.3. Exercises", "1.6. Exercises", "Gas formation energy calculation using DFT", "Development Goals", "2.2. Intro to Building Structures with ASE", "2.3. Intro to ASE Calculators", "7. Intro to Classification and Generative Models", "4. Introduction to Density Functional Theory", "Introduction to Electronic Structure Theory", "3. Introduction to Linux and High-Performance Computing", "6. Intro to Regression and High Dimensional Data", "Introduction to ML Potentials", "Introduction to Machine Learning", "Introduction to Neural Network Potentials (NNP)", "1.2. Introduction to Python programming", "1.3. Numpy - multidimensional data arrays", "1.5. matplotlib - Plotting in Python", "1.4. SciPy - Library of scientific algorithms for Python", "Basics of Searching and Reading Scientific Literature", "6.2. Non-Parametric Models", "6.3. Complexity Optimization", "6.4. High Dimensional Data", "6.5. Dimensionality Reduction", "7.2. Classification Overview", "7.3. Generalized Linear Models", "7.4. Alternate classification methods", "7.5. Clustering", "7.6. Generative Models", "Machine Learning Concepts and Tools", "Machine Learning Continued", "2. Introduction to Manipulating Atoms in Python", "Nuts and Bolts of DFT Calculations", "Referencing Binding Energies", "Running Density Functional Theory on PACE", "Running QE on PACE", "Running a simple DFT calculation on PACE Supercomputer Cluster", "Training NNP", "VIP Materials", "Big Data & Quantum Mechanics", "Course Description", "Medford Group Graduate Training", "Adsorption energy calculation using DFT", "Adsorption energy calculation using DFT", "Running a simple DFT calculation on PACE Supercomputer Cluster", "Adsorption Energy", "Introduction to Python programming", "Running DFT on PACE", "Running SPARC"], "terms": {"refer": [0, 1, 4, 6, 10, 16, 28, 30, 31, 35, 37, 46, 48, 55, 56, 57, 58, 59, 60], "chang": [0, 1, 10, 19, 23, 33, 34, 36, 37, 39, 40, 41, 48, 49, 52, 55, 56, 57, 58, 60], "when": [0, 1, 4, 5, 8, 9, 10, 12, 18, 21, 23, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 40, 48, 49, 50, 52, 55, 56, 57, 58, 59, 60], "an": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 23, 28, 29, 30, 33, 34, 35, 37, 38, 39, 40, 41, 44, 46, 48, 49, 52, 53, 55, 56, 57, 58, 60, 61], "adsorb": [0, 1, 9, 18, 52, 55, 56, 58], "attach": [0, 1, 6, 7, 11, 16, 18, 19, 48, 55, 56, 57, 58, 60], "surfac": [0, 1, 9, 10, 13, 16, 19, 27, 32, 46, 49, 50, 52, 53, 61], "delta": [0, 1, 16, 35, 40, 46, 55, 56, 58], "e_": [0, 1, 16, 19, 21, 27, 46, 55, 56, 58], "can": [0, 1, 6, 8, 9, 10, 11, 12, 14, 16, 18, 19, 21, 23, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 45, 46, 48, 49, 50, 53, 55, 56, 57, 58, 59, 60, 61], "obtain": [0, 1, 16, 33, 36, 46, 48, 55, 56, 57, 58, 60], "differ": [0, 1, 5, 9, 11, 13, 16, 18, 19, 21, 27, 28, 29, 30, 32, 33, 34, 35, 38, 39, 40, 41, 46, 47, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 60], "between": [0, 1, 5, 7, 15, 16, 19, 28, 29, 32, 33, 34, 35, 36, 38, 39, 40, 41, 46, 47, 53, 55, 56, 58, 59], "sum": [0, 1, 7, 28, 33, 34, 36, 37, 38, 40, 55, 56, 58, 59], "each": [0, 1, 8, 9, 12, 14, 15, 18, 19, 28, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 46, 47, 48, 49, 52, 53, 55, 56, 57, 58, 59, 60, 61], "structur": [0, 1, 6, 7, 8, 9, 10, 13, 16, 19, 20, 28, 36, 38, 39, 40, 47, 49, 50, 55, 56, 58, 59, 61], "compos": [0, 1, 41, 55, 56, 58], "ad": [0, 1, 11, 18, 30, 32, 34, 35, 36, 38, 40, 41, 46, 49, 55, 56, 58, 61], "slab": [0, 1, 18, 55, 56, 58], "consid": [0, 1, 9, 15, 21, 27, 28, 29, 33, 34, 35, 36, 40, 46, 59], "o": [0, 1, 6, 7, 9, 16, 18, 19, 27, 30, 33, 34, 40, 46, 48, 49, 55, 56, 57, 58, 60], "2": [0, 1, 5, 6, 16, 18, 21, 24, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 46, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61], "platinum": [0, 1, 49, 61], "pt": [0, 1, 7, 9, 40, 46], "constrain": [0, 1, 32], "atom": [0, 1, 3, 5, 6, 7, 8, 9, 10, 13, 16, 19, 21, 27, 35, 47, 48, 49, 50, 51, 52, 57, 60, 61], "posit": [0, 1, 9, 10, 15, 16, 18, 19, 28, 30, 32, 33, 35, 41, 46, 48, 49, 50, 57, 59, 60], "For": [0, 1, 5, 11, 12, 13, 16, 18, 21, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 48, 49, 52, 53, 55, 56, 57, 58, 59, 60, 61], "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 40, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "situat": [0, 1, 55, 56, 58], "we": [0, 1, 3, 4, 5, 9, 10, 13, 16, 18, 19, 20, 21, 23, 24, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 39, 41, 44, 45, 46, 47, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 60, 61], "first": [0, 1, 8, 9, 11, 14, 15, 18, 24, 27, 28, 31, 32, 34, 35, 36, 37, 38, 40, 41, 45, 46, 48, 49, 52, 55, 56, 57, 58, 59, 60], "build": [0, 1, 6, 9, 10, 12, 13, 16, 19, 31, 40, 46, 48, 49, 50, 57, 59, 60, 61], "object": [0, 1, 6, 7, 8, 10, 16, 19, 28, 31, 36, 37, 38, 39, 48, 55, 56, 57, 58, 60], "oxygen": [0, 1, 5, 9, 21, 55, 56, 58], "molecul": [0, 1, 6, 9, 10, 13, 16, 19, 21, 33, 46, 48, 49, 50, 55, 56, 57, 58, 60, 61], "In": [0, 1, 5, 7, 9, 14, 15, 16, 18, 19, 20, 21, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 49, 55, 56, 57, 58, 59, 60, 61], "follow": [0, 1, 5, 6, 7, 10, 15, 16, 18, 21, 27, 28, 29, 30, 33, 34, 37, 38, 39, 40, 41, 46, 48, 49, 52, 53, 55, 56, 57, 58, 59, 60, 61], "script": [0, 1, 6, 14, 15, 16, 27, 48, 49, 50, 55, 56, 57, 58, 60, 61], "creat": [0, 1, 10, 11, 12, 14, 15, 18, 23, 30, 31, 33, 34, 35, 36, 37, 38, 40, 49, 50, 55, 56, 58, 61], "The": [0, 1, 5, 6, 16, 19, 21, 22, 28, 29, 31, 32, 33, 34, 36, 37, 39, 40, 41, 44, 45, 46, 48, 49, 52, 53, 54, 55, 56, 57, 58, 60, 61], "bottom": [0, 1, 18, 30, 39, 55, 56, 58, 59], "two": [0, 1, 11, 14, 15, 16, 18, 19, 20, 21, 24, 27, 28, 29, 30, 31, 32, 33, 35, 36, 38, 40, 41, 47, 48, 49, 52, 53, 55, 56, 57, 58, 59, 60], "layer": [0, 1, 18, 36, 38, 55, 56, 58], "z": [0, 1, 18, 28, 29, 30, 35, 37, 38, 39, 40, 49, 55, 56, 58, 59, 61], "direct": [0, 1, 5, 8, 18, 28, 36, 46, 48, 52, 55, 56, 57, 58, 59, 60], "ar": [0, 1, 3, 4, 5, 7, 9, 11, 12, 15, 16, 18, 19, 20, 21, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 35, 38, 40, 41, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "fix": [0, 1, 5, 9, 18, 33, 44, 50, 55, 56, 58], "exact": [0, 1, 21, 28, 36, 55, 56, 58, 59], "divid": [0, 1, 15, 27, 29, 37, 55, 56, 58, 59], "determin": [0, 1, 9, 13, 28, 29, 33, 34, 35, 36, 37, 38, 39, 40, 41, 52, 53, 55, 56, 58, 59], "visual": [0, 1, 7, 12, 14, 18, 19, 23, 24, 32, 35, 38, 39, 40, 41, 48, 55, 56, 57, 58, 60], "input": [0, 1, 3, 7, 11, 18, 27, 28, 29, 33, 34, 35, 36, 37, 38, 39, 40, 41, 47, 48, 49, 53, 55, 56, 57, 58, 59, 60, 61], "traj": [0, 1, 6, 7, 48, 50, 55, 56, 57, 58, 60], "file": [0, 1, 6, 7, 8, 11, 14, 15, 16, 18, 28, 30, 31, 32, 47, 48, 49, 50, 53, 55, 56, 57, 58, 60, 61], "ase": [0, 1, 6, 7, 9, 10, 13, 16, 18, 19, 48, 49, 55, 56, 57, 58, 60, 61], "gui": [0, 1, 55, 56, 58], "command": [0, 1, 6, 14, 18, 48, 49, 55, 56, 57, 58, 60, 61], "By": [0, 1, 3, 35, 38, 40, 48, 53, 55, 56, 57, 58, 60], "click": [0, 1, 55, 56, 58], "pop": [0, 1, 18, 28, 55, 56, 58, 59], "out": [0, 1, 14, 15, 16, 19, 33, 34, 35, 38, 40, 41, 44, 48, 49, 52, 55, 56, 57, 58, 60, 61], "window": [0, 1, 18, 23, 40, 55, 56, 58], "within": [0, 1, 6, 27, 37, 40, 48, 52, 53, 55, 56, 57, 58, 60], "cell": [0, 1, 5, 8, 10, 13, 18, 40, 49, 50, 55, 56, 58, 61], "displai": [0, 1, 15, 23, 39, 46, 55, 56, 58, 59], "after": [0, 1, 6, 7, 16, 18, 19, 28, 35, 40, 41, 45, 48, 49, 51, 53, 55, 56, 57, 58, 59, 60, 61], "appli": [0, 1, 11, 27, 29, 34, 35, 36, 37, 38, 40, 46, 52, 54, 55, 56, 58, 59], "constraint": [0, 1, 9, 13, 33, 36, 38, 55, 56, 58], "system": [0, 1, 5, 12, 13, 18, 19, 21, 23, 27, 28, 32, 46, 48, 49, 50, 52, 53, 55, 56, 57, 58, 60], "you": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 23, 28, 29, 30, 31, 33, 34, 35, 36, 37, 40, 41, 44, 45, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59, 60, 61], "should": [0, 1, 3, 4, 5, 6, 14, 15, 18, 21, 24, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 44, 45, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 60, 61], "abl": [0, 1, 3, 18, 32, 38, 39, 40, 55, 56, 58], "see": [0, 1, 9, 18, 19, 23, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 49, 52, 53, 55, 56, 58, 59, 61], "have": [0, 1, 4, 5, 6, 8, 12, 16, 18, 19, 21, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 45, 46, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 60, 61], "cross": [0, 1, 11, 24, 32, 34, 38, 55, 56, 58], "them": [0, 1, 4, 7, 18, 19, 23, 28, 29, 30, 32, 33, 34, 36, 38, 39, 40, 44, 53, 55, 56, 58, 59], "indic": [0, 1, 18, 28, 29, 36, 39, 49, 55, 56, 58, 59], "thei": [0, 1, 18, 19, 21, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 44, 45, 46, 52, 53, 55, 56, 58, 59], "anoth": [0, 1, 27, 28, 30, 33, 34, 35, 36, 37, 40, 55, 56, 58, 59], "wai": [0, 1, 4, 5, 18, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 53, 55, 56, 58, 59], "check": [0, 1, 6, 9, 14, 15, 28, 29, 31, 34, 35, 39, 40, 41, 48, 49, 50, 55, 56, 57, 58, 59, 60, 61], "manipul": [0, 1, 4, 10, 18, 51, 55, 56, 58], "poscar": [0, 1, 55, 56, 58], "where": [0, 1, 12, 18, 23, 27, 28, 31, 33, 34, 35, 36, 38, 39, 40, 41, 46, 48, 49, 52, 55, 56, 57, 58, 59, 60, 61], "list": [0, 1, 4, 6, 16, 18, 19, 23, 29, 30, 32, 34, 36, 39, 40, 46, 48, 49, 50, 52, 55, 56, 57, 58, 60], "all": [0, 1, 5, 6, 7, 8, 11, 12, 14, 18, 23, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61], "from": [0, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 27, 29, 30, 31, 33, 34, 35, 37, 39, 41, 44, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61], "import": [0, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 23, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 45, 46, 48, 50, 53, 55, 56, 57, 58, 60], "bulk": [0, 1, 9, 10, 13, 16, 49, 55, 56, 58, 61], "add_adsorb": [0, 1, 9, 10, 13, 18, 55, 56, 58], "fixatom": [0, 1, 9, 13, 18, 55, 56, 58], "io": [0, 1, 6, 7, 8, 9, 10, 13, 16, 18, 30, 31, 39, 48, 50, 53, 55, 56, 57, 58, 59, 60], "read": [0, 1, 7, 8, 9, 10, 13, 15, 16, 18, 29, 31, 35, 48, 50, 53, 55, 56, 57, 58, 60], "miller_indic": [0, 1, 55, 56, 58], "1": [0, 1, 5, 6, 16, 18, 19, 21, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 46, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59, 60, 61], "4": [0, 1, 5, 6, 10, 16, 18, 19, 21, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 49, 50, 51, 53, 55, 57, 58, 59, 60], "vacuum": [0, 1, 6, 18, 48, 50, 55, 56, 57, 58, 60], "10": [0, 1, 6, 11, 12, 15, 16, 18, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 40, 41, 46, 48, 50, 52, 53, 55, 56, 57, 58, 59, 60], "write": [0, 1, 6, 7, 9, 10, 14, 15, 16, 18, 23, 29, 32, 33, 37, 38, 40, 41, 48, 49, 55, 56, 57, 58, 59, 60, 61], "librari": [0, 1, 6, 12, 28, 29, 32, 35, 55, 56, 58], "data": [0, 1, 4, 6, 8, 11, 12, 15, 16, 18, 20, 23, 28, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 46, 48, 49, 50, 51, 55, 56, 57, 58, 60, 61], "pubchem": [0, 1, 18, 55, 56, 58], "pubchem_atoms_search": [0, 1, 18, 55, 56, 58], "numpi": [0, 1, 6, 9, 12, 13, 15, 16, 18, 19, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 48, 50, 55, 56, 57, 58, 60], "np": [0, 1, 6, 7, 9, 12, 13, 15, 16, 19, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 50, 55, 56, 57, 58, 59, 60, 61], "shutil": [0, 1, 55, 56, 58], "copi": [0, 1, 19, 28, 35, 40, 41, 49, 53, 55, 56, 58, 61], "os": [0, 1, 6, 7, 9, 10, 13, 15, 16, 23, 55, 56, 58], "o2": [0, 1, 6, 16, 18, 19, 55, 56, 58], "max_po": [0, 1, 55, 56, 58], "amax": [0, 1, 55, 56, 58], "get_posit": [0, 1, 50, 55, 56, 58], "axi": [0, 1, 5, 12, 15, 18, 29, 35, 36, 40, 41, 55, 56, 58], "0": [0, 1, 5, 7, 11, 12, 13, 15, 16, 18, 19, 21, 27, 28, 29, 30, 31, 33, 35, 36, 37, 39, 40, 46, 48, 49, 50, 53, 55, 56, 57, 58, 59, 60, 61], "set_cel": [0, 1, 6, 16, 18, 48, 50, 55, 56, 57, 58, 60], "arrai": [0, 1, 16, 17, 18, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 50, 55, 56, 58], "center": [0, 1, 6, 11, 16, 18, 35, 37, 38, 39, 40, 48, 49, 55, 56, 57, 58, 60, 61], "height": [0, 1, 30, 40, 41, 55, 56, 58, 59], "5": [0, 1, 5, 6, 7, 11, 12, 14, 16, 18, 19, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 46, 49, 50, 51, 52, 53, 55, 56, 58, 59, 61], "3": [0, 1, 5, 6, 7, 16, 18, 19, 21, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61], "c": [0, 1, 7, 9, 11, 12, 18, 23, 27, 28, 29, 35, 36, 37, 39, 40, 41, 46, 47, 53, 55, 56, 58, 59], "index": [0, 1, 15, 18, 27, 28, 30, 31, 35, 36, 39, 40, 41, 46, 50, 55, 56, 58], "14": [0, 1, 13, 18, 27, 28, 29, 30, 35, 36, 39, 46, 50, 53, 55, 56, 58, 59], "set_constraint": [0, 1, 18, 55, 56, 58], "slab_ad": [0, 1, 55, 56, 58], "defin": [0, 1, 5, 7, 16, 19, 21, 28, 29, 30, 31, 33, 34, 36, 38, 40, 41, 46, 48, 52, 53, 55, 56, 57, 58, 59, 60], "sparc": [0, 3, 5, 9, 10, 13, 44, 45, 47, 48, 52, 57, 60], "so": [0, 1, 5, 7, 16, 18, 19, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 47, 48, 52, 53, 55, 56, 57, 58, 59, 60], "know": [0, 1, 5, 16, 21, 28, 33, 34, 35, 37, 39, 40, 41, 48, 49, 55, 56, 57, 58, 59, 60], "how": [0, 1, 4, 9, 10, 11, 12, 16, 18, 19, 21, 28, 29, 30, 31, 33, 34, 35, 37, 39, 41, 48, 49, 55, 56, 57, 58, 59, 60, 61], "get": [0, 1, 6, 10, 16, 18, 21, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 44, 47, 48, 50, 55, 56, 57, 58, 59, 60], "run": [0, 1, 3, 5, 6, 14, 15, 16, 18, 19, 40, 55, 56, 58], "potenti": [0, 1, 6, 7, 10, 16, 19, 21, 40, 48, 49, 50, 55, 56, 57, 58, 60, 61], "method": [0, 1, 5, 12, 16, 18, 19, 27, 28, 29, 30, 31, 32, 33, 36, 37, 38, 40, 41, 46, 47, 48, 52, 53, 55, 56, 57, 58, 59, 60], "get_potential_energi": [0, 1, 6, 16, 19, 48, 49, 50, 55, 56, 57, 58, 60, 61], "result": [0, 1, 3, 7, 9, 10, 12, 14, 15, 16, 27, 28, 32, 33, 34, 37, 38, 40, 41, 45, 47, 48, 50, 53, 54, 55, 56, 57, 58, 59, 60], "store": [0, 1, 16, 18, 19, 29, 31, 32, 36, 55, 56, 58, 59], "text": [0, 1, 11, 16, 27, 33, 38, 49, 53, 55, 56, 58], "e": [0, 1, 6, 9, 10, 15, 16, 21, 23, 28, 31, 33, 36, 37, 38, 39, 40, 44, 46, 48, 49, 52, 53, 55, 56, 57, 58, 59, 60], "g": [0, 1, 6, 11, 16, 23, 27, 28, 30, 31, 33, 36, 37, 38, 39, 40, 46, 49, 50, 52, 53, 55, 56, 58, 59], "txt": [0, 1, 16, 23, 55, 56, 58], "detail": [0, 1, 3, 5, 16, 28, 30, 31, 32, 33, 34, 36, 39, 40, 44, 45, 47, 48, 50, 52, 53, 55, 56, 57, 58, 59, 60], "submit": [0, 1, 14, 16, 44, 47, 48, 52, 53, 55, 56, 57, 58, 60], "seen": [0, 1, 16, 35, 37, 38, 41, 55, 56, 58], "lectur": [0, 1, 16, 27, 28, 30, 31, 33, 34, 37, 38, 39, 40, 48, 49, 50, 53, 54, 55, 57, 58, 59, 60, 61], "running_sparc_on_q": 0, "clean": [0, 1, 49, 55, 56, 58, 61], "optim": [0, 1, 3, 6, 7, 9, 13, 16, 18, 19, 30, 32, 33, 36, 37, 39, 40, 41, 47, 48, 49, 50, 55, 56, 57, 58, 60], "bfgslinesearch": [0, 1, 6, 7, 16, 19, 48, 55, 56, 57, 58, 60], "espresso": [0, 5, 19, 47, 50, 55, 58], "iespresso": [0, 6, 48, 55, 57, 58, 60], "imag": [0, 1, 6, 10, 12, 16, 18, 28, 31, 33, 35, 36, 39, 48, 50, 55, 56, 57, 58, 60], "setup": [0, 1, 49, 55, 56, 58], "paramet": [0, 1, 3, 9, 10, 12, 13, 16, 28, 33, 36, 38, 39, 40, 41, 45, 48, 49, 50, 52, 53, 55, 56, 57, 58, 59, 60, 61], "dict": [0, 1, 16, 28, 30, 49, 55, 56, 58, 59], "xc": [0, 6, 19, 21, 48, 50, 55, 57, 58, 60], "beef": [0, 6, 48, 55, 57, 58, 60], "vdw": [0, 6, 46, 48, 55, 57, 58, 60], "kpt": [0, 1, 19, 45, 48, 49, 50, 55, 56, 57, 58, 60], "onli": [0, 1, 11, 12, 14, 16, 18, 28, 29, 31, 32, 34, 35, 36, 37, 38, 40, 41, 46, 49, 51, 53, 55, 56, 58, 59], "need": [0, 1, 4, 5, 6, 10, 11, 14, 16, 18, 19, 21, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 49, 52, 53, 55, 57, 58, 59, 60, 61], "pw": [0, 6, 48, 55, 57, 58, 60], "400": [0, 50, 55, 58], "dw": [0, 55, 58], "4000": [0, 55, 58], "spinpol": [0, 48, 55, 57, 58, 60], "fals": [0, 1, 18, 28, 29, 31, 32, 34, 35, 40, 41, 46, 48, 50, 55, 57, 58, 59, 60], "converg": [0, 1, 13, 15, 16, 40, 45, 47, 48, 49, 52, 53, 55, 56, 57, 58, 60, 61], "1e": [0, 1, 5, 16, 28, 34, 38, 49, 50, 55, 56, 58, 59, 61], "6": [0, 1, 5, 6, 7, 12, 15, 18, 28, 29, 30, 34, 35, 36, 37, 38, 39, 40, 46, 48, 50, 51, 53, 55, 57, 58, 59, 60, 61], "mix": [0, 40, 48, 49, 53, 55, 57, 58, 60, 61], "05": [0, 19, 30, 40, 48, 49, 50, 55, 56, 57, 58, 59, 60], "maxstep": [0, 48, 55, 57, 58, 60], "1000": [0, 13, 29, 31, 33, 36, 38, 41, 50, 55, 58, 59], "diag": [0, 48, 55, 57, 58, 60], "david": [0, 5, 48, 55, 57, 58, 60], "startingwfc": [0, 55, 58], "smear": [0, 19, 48, 55, 57, 58, 60], "fd": [0, 5, 55, 58], "fermi": [0, 55, 58], "dirac": [0, 22, 55, 58], "electron": [0, 5, 21, 27, 47, 48, 49, 52, 55, 57, 58, 60, 61], "sigma": [0, 11, 19, 33, 34, 38, 40, 41, 48, 50, 55, 57, 58, 60], "width": [0, 11, 30, 33, 34, 38, 41, 55, 58, 59], "dipol": [0, 48, 55, 57, 58, 60], "statu": [0, 14, 38, 48, 55, 57, 58, 60], "true": [0, 1, 5, 10, 12, 18, 28, 29, 31, 35, 36, 37, 38, 39, 40, 41, 48, 50, 55, 57, 58, 59, 60], "correct": [0, 1, 6, 10, 16, 21, 37, 39, 40, 46, 48, 49, 52, 55, 56, 57, 58, 60], "turn": [0, 20, 21, 29, 33, 34, 37, 38, 52, 55, 58, 59], "outdir": [0, 55, 58], "esp": [0, 48, 55, 57, 58, 60], "log": [0, 5, 6, 7, 14, 28, 29, 30, 34, 38, 40, 41, 48, 49, 50, 55, 56, 57, 58, 59, 60], "calc": [0, 1, 6, 16, 19, 48, 49, 55, 56, 57, 58, 60, 61], "set_calcul": [0, 1, 16, 19, 49, 50, 55, 56, 58, 61], "relax": [0, 1, 3, 7, 9, 10, 16, 18, 19, 48, 49, 55, 56, 57, 58, 60], "trajectori": [0, 6, 7, 48, 50, 55, 56, 57, 58, 60], "opt": [0, 7, 18, 28, 29, 37, 39, 55, 56, 58, 59], "logfil": [0, 6, 48, 55, 56, 57, 58, 60], "restart": [0, 55, 56, 58], "pckl": [0, 55, 56, 58], "fmax": [0, 6, 19, 48, 55, 56, 57, 58, 60], "eng": [0, 1, 16, 19, 55, 56, 58], "open": [0, 1, 16, 23, 37, 44, 47, 49, 52, 55, 56, 58], "slab_energi": [0, 1, 55, 56, 58], "w": [0, 1, 6, 7, 16, 32, 33, 34, 37, 38, 40, 41, 53, 55, 56, 58], "f": [0, 1, 7, 10, 16, 18, 23, 28, 29, 31, 33, 34, 37, 46, 55, 56, 58, 59], "str": [0, 1, 11, 12, 16, 28, 33, 36, 55, 56, 58, 59], "close": [0, 6, 16, 28, 33, 35, 37, 38, 40, 48, 55, 57, 58, 59, 60], "slab_ads_energi": [0, 1, 55, 56, 58], "ga": [0, 1, 7, 8, 10, 21, 55, 56, 58], "o2_energi": [0, 1, 16, 55, 56, 58], "analysi": [0, 1, 11, 32, 35, 40, 46, 53, 55, 56, 58], "def": [0, 1, 6, 10, 11, 12, 15, 16, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 55, 56, 58, 59], "readfil": [0, 1, 10, 16, 55, 56, 58], "path": [0, 1, 6, 10, 14, 16, 23, 44, 48, 49, 55, 56, 57, 58, 60, 61], "r": [0, 1, 11, 16, 19, 21, 23, 27, 28, 29, 30, 31, 33, 34, 39, 40, 46, 55, 56, 58, 59], "content": [0, 1, 10, 16, 51, 55, 56, 58], "readlin": [0, 1, 16, 55, 56, 58], "return": [0, 1, 6, 10, 12, 15, 16, 19, 21, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 51, 55, 56, 58, 59], "read_energi": [0, 1, 10, 16, 55, 56, 58], "float": [0, 1, 12, 16, 28, 35, 40, 41, 55, 56, 58, 59], "e_slab": [0, 1, 55, 56, 58], "e_slab_ad": [0, 1, 55, 56, 58], "e_o2": [0, 1, 16, 19, 55, 56, 58], "e_adsorpt": [0, 1, 55, 56, 58], "print": [0, 1, 6, 7, 8, 10, 14, 15, 16, 18, 19, 23, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 48, 49, 50, 55, 56, 57, 58, 60, 61], "3f": [0, 1, 16, 34, 55, 56, 58], "ev": [0, 1, 7, 9, 10, 13, 16, 19, 46, 48, 49, 50, 55, 56, 57, 58, 60], "format": [0, 1, 6, 10, 11, 29, 30, 31, 33, 34, 35, 36, 38, 40, 41, 46, 48, 55, 56, 57, 58, 60], "fcc111": [1, 9, 18], "fcc100": [1, 9], "repeat": [1, 10, 11, 12, 13, 15, 18, 32, 37, 39, 40, 53, 56], "There": [1, 12, 14, 18, 19, 21, 23, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 46, 47, 49, 52, 59, 61], "gener": [1, 2, 4, 5, 10, 11, 12, 18, 19, 21, 22, 27, 28, 29, 32, 33, 34, 35, 39, 40, 47, 48, 50, 52, 53, 54, 57, 59, 60], "matplotlib": [1, 12, 13, 18, 19, 28, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 50], "pyplot": [1, 12, 13, 18, 19, 28, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 50, 59], "plt": [1, 11, 12, 13, 15, 18, 19, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 50, 59], "plot": [1, 5, 10, 11, 12, 13, 15, 18, 19, 28, 31, 33, 34, 36, 37, 39, 41, 46], "plot_atom": [1, 18], "slab_fcc111": 1, "size": [1, 18, 29, 31, 36, 38, 39, 40, 41, 50], "fig": [1, 12, 18, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 59], "ax": [1, 12, 18, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41], "subplot": [1, 12, 18, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 59], "figsiz": [1, 18, 30, 31, 34, 35, 36, 37, 38, 39, 40, 41, 59], "rotat": [1, 18, 27, 36], "120x": 1, "0y": 1, "0z": 1, "poscar_1": 1, "poscar_2": 1, "get_all_dist": 1, "mic": 1, "ident": [1, 8, 11, 18, 29, 36, 41, 46, 52, 59], "us": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 20, 21, 24, 27, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 44, 45, 46, 47, 48, 52, 53, 57, 60], "386": [1, 50, 56], "800": [1, 16, 56], "running_sparc_on_pac": [1, 16], "unit": [1, 5, 7, 8, 9, 10, 13, 16, 18, 19, 30, 36, 40, 49, 56, 59], "bohr": [1, 5, 7, 9, 10, 13, 16, 49, 56], "hartre": [1, 7, 9, 10, 13, 16, 49, 56], "mol": [1, 7, 9, 10, 13, 16, 19, 49, 56], "kcal": [1, 7, 9, 10, 13, 16, 49, 56], "kj": [1, 7, 9, 10, 13, 16, 19, 49, 56], "set": [1, 3, 6, 7, 10, 11, 12, 14, 15, 16, 19, 21, 28, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 46, 47, 48, 50, 52, 53, 56, 57, 60], "up": [1, 3, 4, 6, 21, 23, 30, 32, 35, 36, 40, 46, 47, 48, 50, 52, 53, 56, 57, 59, 60], "here": [1, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 19, 20, 27, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 47, 48, 49, 50, 51, 56, 57, 59, 60, 61], "rel": [1, 16, 27, 28, 30, 35, 36, 37, 39, 40, 41, 49, 52, 56, 59, 61], "low": [1, 29, 31, 36, 40, 41, 56, 59], "valu": [1, 5, 10, 12, 13, 16, 19, 28, 29, 31, 33, 34, 35, 36, 37, 38, 40, 41, 46, 49, 56, 59, 61], "kpoint_grid": [1, 16, 49, 56, 61], "ecut": [1, 5, 13, 16, 49, 56], "did": [1, 32, 33, 36, 40, 49, 56, 61], "spin": [1, 10, 16, 48, 49, 56, 57, 60], "polar": [1, 10, 16, 48, 49, 56, 57, 60], "finish": [1, 40, 56], "faster": [1, 10, 34, 40, 56], "lead": [1, 5, 28, 32, 33, 35, 37, 56, 59], "unreason": [1, 56], "exchange_correl": [1, 16, 49, 56, 61], "gga_pb": [1, 16, 49, 56, 61], "d3_flag": [1, 16, 49, 56], "grimm": [1, 16, 49, 56], "d3": [1, 10, 16, 30, 49, 56, 59], "dispers": [1, 10, 16, 49, 56], "spin_typ": [1, 16, 49, 56], "non": [1, 11, 28, 32, 34, 36, 37, 40, 44, 46, 49, 51, 56, 59], "500": [1, 6, 13, 15, 33, 46, 48, 49, 50, 56, 57, 60], "h": [1, 5, 7, 13, 15, 16, 18, 19, 27, 28, 40, 46, 49, 56, 59, 61], "angstrom": [1, 5, 16, 18, 48, 49, 56, 57, 60], "15": [1, 5, 7, 11, 15, 16, 18, 29, 30, 34, 35, 36, 37, 38, 39, 40, 41, 46, 49, 50, 52, 53, 56, 59], "tol_scf": [1, 16, 49, 56, 61], "relax_flag": [1, 5, 16, 49, 56, 61], "do": [1, 4, 7, 10, 11, 14, 16, 18, 19, 23, 28, 29, 31, 32, 34, 36, 37, 40, 41, 44, 47, 48, 50, 52, 53, 57, 59, 60], "tol_relax": [1, 16], "00e": [1, 16], "03": [1, 29, 36, 39, 40, 59], "criteria": [1, 16, 36, 39, 40, 49, 52, 53, 61], "maximum": [1, 7, 16, 19, 28, 34, 35, 37, 38, 40, 48, 49, 57, 59, 60], "forc": [1, 6, 7, 16, 19, 27, 33, 34, 36, 48, 49, 50, 57, 60, 61], "ha": [1, 5, 11, 16, 18, 19, 21, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 48, 49, 52, 53, 57, 59, 60, 61], "print_forc": [1, 16, 49, 56, 61], "print_relaxout": [1, 16, 49, 56, 61], "directori": [1, 6, 14, 16, 48, 49, 57, 60, 61], "converged_slab": 1, "step": [1, 5, 7, 10, 16, 28, 29, 30, 31, 32, 33, 38, 45, 46, 48, 49, 50, 57, 59, 60], "converged_slab_ad": 1, "7": [1, 5, 15, 18, 28, 29, 30, 35, 36, 37, 39, 40, 41, 46, 50, 53, 59], "8": [1, 5, 6, 9, 12, 18, 28, 29, 30, 35, 38, 39, 40, 41, 46, 48, 49, 50, 53, 57, 59, 60], "9": [1, 12, 15, 16, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 39, 40, 41, 46, 49, 50, 53, 59], "11": [1, 15, 18, 27, 28, 29, 30, 31, 35, 37, 40, 46, 50, 53, 59], "12": [1, 6, 15, 18, 28, 29, 30, 36, 40, 41, 46, 50, 53, 59, 60], "13": [1, 18, 29, 30, 40, 46, 50, 53, 59], "16": [1, 15, 27, 28, 29, 35, 36, 46, 50, 53, 59], "17": [1, 7, 18, 29, 37, 40, 46, 50, 59], "18": [1, 18, 28, 29, 30, 35, 38, 40, 41, 46, 50, 53, 59], "19": [1, 6, 18, 29, 36, 46, 50, 59, 61], "20": [1, 6, 7, 10, 12, 18, 28, 29, 31, 34, 36, 38, 39, 40, 41, 46, 48, 50, 53, 57, 59, 60, 61], "21": [1, 29, 35, 40, 46, 50, 53, 59], "22": [1, 28, 37, 38, 39, 46, 50, 59], "23": [1, 15, 18, 32, 36, 40, 46, 50, 53], "24": [1, 15, 28, 37, 38, 39, 46, 48, 49, 50, 52, 57, 59, 60], "25": [1, 5, 28, 29, 30, 34, 40, 41, 46, 50, 53, 59], "26": [1, 28, 46, 50, 59], "27": [1, 15, 29, 35, 40, 46, 50, 59], "28": [1, 7, 28, 29, 35, 46, 50, 53, 59], "29": [1, 7, 46, 50], "30": [1, 7, 28, 32, 34, 36, 37, 38, 41, 50, 53, 59], "31": [1, 7, 46, 50], "32": [1, 27, 40, 46, 50], "33": [1, 7, 36, 39, 46, 50, 52, 53], "34": [1, 46, 50], "35": [1, 5, 7, 15, 34, 46, 50], "36": [1, 35, 46, 50], "37": [1, 35, 40, 46, 50], "38": [1, 7, 46, 50], "39": [1, 7, 35, 46, 50], "40": [1, 7, 30, 34, 35, 39, 40, 41, 46, 50, 53, 59], "41": [1, 7, 18, 34, 35, 40, 46, 50], "42": [1, 12, 35, 40, 50], "43": [1, 7, 29, 35, 50, 59], "44": [1, 7, 50], "45": [1, 35, 50], "46": [1, 29, 50, 59], "47": [1, 50], "48": [1, 35, 50], "49": [1, 50], "singl": [1, 5, 6, 9, 10, 13, 16, 18, 21, 27, 29, 31, 33, 35, 37, 38, 39, 40, 41, 48, 49, 50, 53, 56, 57, 59, 60, 61], "converged_o2": 1, "831": 1, "contain": [2, 7, 18, 28, 29, 31, 33, 35, 40, 48, 49, 50, 53, 54, 57, 59, 60], "miscellan": 2, "addit": [2, 28, 31, 36, 37, 38, 40, 51, 53, 59], "inform": [2, 8, 16, 17, 18, 19, 21, 27, 29, 32, 33, 35, 37, 39, 40, 48, 49, 50, 51, 53, 57, 60, 61], "regard": [2, 52], "dft": [2, 3, 5, 9, 10, 18, 19, 21, 32, 44, 47, 48, 51, 52, 53], "ml": [2, 11, 12, 20, 24, 38, 49], "navig": [2, 14, 23, 32], "hpc": [2, 17, 53], "environ": [2, 3, 8, 18, 21, 27, 40, 44, 47, 48, 49, 57, 60, 61], "mai": [2, 7, 11, 16, 18, 28, 31, 32, 33, 34, 35, 36, 38, 39, 40, 44, 51, 52, 53, 59], "student": [2, 4, 14, 21, 24, 44, 53, 54], "section": [3, 4, 17, 19, 21, 22, 24, 33, 44, 45, 46, 47, 50], "introduc": [3, 20, 21, 22, 24, 27, 32, 34, 36, 37, 38, 39, 40, 44, 45, 47, 50, 52, 54], "some": [3, 4, 5, 6, 7, 16, 18, 19, 20, 21, 24, 28, 29, 30, 32, 33, 34, 35, 36, 38, 39, 40, 41, 45, 47, 48, 49, 52, 53, 57, 59, 60, 61], "focu": [3, 8, 12, 24, 34, 35, 36, 37, 47, 52], "most": [3, 4, 9, 23, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 44, 48, 52, 57, 59, 60], "relev": [3, 7, 24, 45, 53], "our": [3, 4, 6, 16, 18, 19, 20, 23, 24, 28, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 48, 49, 53, 57, 59, 60, 61], "research": [3, 4, 23, 24, 27, 36, 50, 53, 54], "group": [3, 6, 19, 20, 23, 24, 27, 32, 40, 44, 48, 49, 50, 51, 53, 57, 60], "name": [3, 6, 10, 15, 18, 23, 29, 32, 34, 35, 36, 44, 47, 48, 49, 52, 53, 57, 60, 61], "geometri": [3, 9, 18, 46, 47, 48, 57, 60], "also": [3, 4, 5, 12, 15, 18, 19, 21, 24, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 45, 47, 48, 49, 52, 53, 57, 59, 60, 61], "term": [3, 11, 13, 21, 32, 33, 34, 36, 37, 38, 41, 53], "adsorpt": [3, 8, 9, 19, 45, 47, 51, 52, 53], "energi": [3, 5, 6, 7, 9, 10, 13, 18, 21, 27, 32, 47, 48, 49, 50, 51, 52, 53, 57, 60, 61], "calcul": [3, 5, 7, 8, 9, 10, 12, 18, 21, 31, 32, 35, 37, 39, 40, 47, 48, 52, 53], "tool": [3, 8, 11, 18, 19, 24, 30, 32, 34, 35, 37, 44, 51, 52, 59], "analyz": [3, 18, 20, 24, 30, 47, 53, 59], "api": [3, 5, 37, 38, 39, 44, 47, 49, 61], "simul": [3, 6, 8, 18, 27, 31, 32, 44, 47, 52, 53, 59], "ASE": [3, 5, 6, 7, 8, 9, 10, 47, 48, 49, 53, 57, 60, 61], "end": [3, 6, 14, 29, 33, 37, 40, 46, 52, 53, 59], "feel": [3, 4, 35, 38], "comfort": [3, 4], "pace": [3, 6, 14, 23, 61], "understand": [3, 20, 32, 37, 38, 39, 40, 41, 48, 52, 54, 57, 60], "basic": [3, 8, 11, 12, 14, 15, 19, 22, 23, 24, 27, 28, 30, 33, 40, 41, 47, 50, 51, 52, 59], "well": [3, 5, 29, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 52, 53, 59], "adsropt": 3, "These": [3, 4, 5, 7, 8, 9, 11, 12, 14, 15, 19, 21, 24, 28, 32, 36, 37, 38, 40, 41, 44, 48, 49, 52, 54, 57, 59, 60, 61], "concept": [3, 20, 22, 24, 35, 36, 37, 38, 39, 40, 41, 45, 52, 54], "critic": [3, 24, 32, 34], "studi": [3, 13, 32, 39, 45, 52], "heterogen": [3, 44], "catalysi": [3, 19, 32, 44, 53, 54], "provid": [4, 7, 18, 19, 21, 24, 27, 28, 29, 30, 31, 33, 34, 35, 36, 40, 41, 45, 50, 51, 52, 53, 54, 59], "specif": [4, 6, 18, 19, 28, 30, 31, 32, 38, 40, 46, 49, 50, 59, 61], "comput": [4, 9, 10, 12, 13, 15, 19, 27, 28, 32, 34, 36, 37, 38, 40, 41, 44, 45, 46, 51, 52, 53, 54, 59], "chemistri": [4, 17, 19, 20, 27, 32, 44, 45, 52, 53], "includ": [4, 6, 11, 12, 17, 18, 21, 22, 28, 29, 30, 32, 33, 34, 36, 37, 40, 46, 47, 52, 53, 59], "frequent": 4, "exhaust": [4, 24], "encourag": [4, 44], "explor": [4, 11, 14, 33, 37, 38, 40, 41, 51, 53], "document": [4, 9, 11, 12, 14, 18, 31, 35, 36, 49, 52, 61], "other": [4, 8, 23, 28, 29, 30, 31, 32, 33, 34, 35, 38, 39, 40, 46, 48, 49, 50, 52, 53, 57, 59, 60], "resourc": [4, 8, 23, 44, 48, 49, 52, 53, 57, 60], "learn": [4, 5, 11, 12, 14, 15, 18, 19, 21, 23, 24, 27, 30, 34, 35, 37, 38, 39, 40, 48, 49, 51, 52, 53, 54, 57, 59, 60, 61], "more": [4, 5, 13, 14, 18, 21, 23, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 44, 47, 48, 49, 51, 52, 53, 57, 59, 60, 61], "about": [4, 5, 18, 21, 23, 28, 29, 32, 34, 35, 36, 40, 48, 49, 57, 59, 60, 61], "avail": [4, 6, 18, 19, 23, 30, 31, 32, 36, 37, 39, 40, 41, 44, 48, 49, 52, 53, 57, 59, 60, 61], "intend": [4, 53], "purpos": [4, 23, 32, 48, 49, 57, 60, 61], "spend": [4, 32], "too": [4, 31, 41, 59], "much": [4, 16, 19, 23, 29, 30, 34, 35, 36, 40, 41, 52, 59], "time": [4, 6, 7, 10, 13, 16, 27, 32, 33, 34, 35, 37, 38, 39, 40, 41, 46, 48, 49, 52, 53, 57, 60], "best": [4, 11, 12, 28, 34, 36, 37, 39, 40, 41, 52, 53, 59], "practic": [4, 19, 28, 32, 34, 35, 39, 40, 41, 52, 53, 59], "proce": [4, 32], "exercis": [4, 19, 44, 45, 52, 54], "soon": 4, "look": [4, 5, 18, 27, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 48, 49, 57, 59, 60, 61], "someth": [4, 23, 28, 32, 38, 41, 48, 49, 52, 53, 57, 59, 60], "fantast": 4, "stack": 4, "overflow": 4, "chatgpt": [4, 32, 52], "access": [4, 6, 18, 23, 28, 29, 48, 49, 50, 53, 57, 59, 60], "recommend": [4, 13, 28, 29, 30, 32, 49, 59], "instal": [4, 6, 18, 28, 29, 49, 59, 61], "github": [4, 6, 27, 30, 31, 49, 53, 59, 61], "copilot": 4, "vscode": 4, "As": [4, 5, 7, 14, 15, 27, 36, 38, 41, 48, 49, 50, 57, 60], "georgia": [4, 27, 48, 49, 50, 52, 57, 60], "tech": [4, 27, 48, 49, 50, 52, 57, 60], "note": [4, 5, 8, 9, 11, 12, 13, 15, 18, 19, 21, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 40, 41, 48, 52, 53, 57, 59, 60], "wa": [4, 21, 32, 38, 39, 41, 44], "written": [4, 21, 34, 35, 36, 41], "assist": [4, 52, 53], "pleas": [4, 23, 27, 44, 49, 52], "ai": 4, "respons": [4, 9, 12, 32, 39, 53], "goal": [4, 21, 22, 33, 34, 36, 37, 38, 40, 45, 52, 53, 54], "materi": [4, 17, 21, 22, 27, 32, 44, 50, 52, 53], "simpli": [4, 11, 18, 28, 32, 35, 36, 37, 52, 59], "complet": [4, 8, 31, 32, 40, 45, 46, 50, 51, 52, 53, 59], "far": [5, 34, 36, 37, 41, 52], "learnt": [5, 48, 57, 60], "specifi": [5, 14, 16, 18, 28, 29, 34, 40, 48, 49, 50, 57, 59, 60, 61], "haven": [5, 35, 36], "t": [5, 6, 10, 18, 23, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 48, 49, 57, 59, 60, 61], "standard": [5, 6, 28, 29, 30, 34, 38, 39, 40, 41, 44, 48, 57, 59, 60], "procedur": [5, 33, 37, 41], "choos": [5, 9, 30, 34, 36, 38, 40, 46, 49, 52, 59], "solv": [5, 21, 29, 33, 37, 38, 40, 46, 49, 53, 61], "kohn": [5, 21], "sham": [5, 21], "ks": [5, 21], "equat": [5, 10, 21, 22, 27, 32, 33, 34, 37, 49, 61], "requir": [5, 8, 9, 13, 15, 16, 18, 19, 28, 29, 31, 33, 36, 37, 40, 41, 47, 48, 49, 50, 52, 57, 59, 60, 61], "multipl": [5, 16, 28, 29, 30, 33, 40, 49, 53, 59], "iter": [5, 15, 21, 28, 32, 34, 36, 37, 38, 40, 41, 49, 59, 61], "initi": [5, 15, 21, 28, 29, 31, 33, 36, 38, 48, 49, 50, 52, 57, 59, 60, 61], "guess": [5, 15, 18, 21, 31, 34, 36, 37, 38, 48, 49, 57, 59, 60, 61], "densiti": [5, 9, 12, 18, 19, 32, 48, 49, 51, 52, 53, 57, 60, 61], "alwai": [5, 23, 28, 30, 31, 32, 34, 35, 36, 37, 40, 41, 59], "verifi": [5, 10, 18, 31, 32, 33, 48, 57, 59, 60], "solut": [5, 19, 21, 27, 33, 36, 37, 38, 40], "accur": [5, 19, 21, 28, 31, 33, 40, 49, 59, 61], "approxim": [5, 10, 19, 21, 27, 32, 34, 36, 37, 38, 41, 49, 52, 61], "mathemat": [5, 15, 27, 28, 31, 32, 35, 37, 38, 40, 41, 59], "formul": [5, 27, 29, 50, 59], "lesson": [5, 18, 19, 21, 36, 48, 49, 57, 60, 61], "what": [5, 10, 11, 12, 18, 23, 29, 36, 48, 53, 57, 59, 60], "perform": [5, 7, 8, 9, 10, 11, 12, 15, 18, 19, 21, 24, 28, 29, 33, 34, 37, 39, 40, 46, 49, 51, 52, 53, 59, 61], "test": [5, 11, 12, 13, 14, 15, 19, 28, 33, 34, 37, 39, 45, 47, 49, 50, 61], "select": [5, 12, 30, 33, 34, 35, 36, 38, 40, 41, 48, 52, 59], "planewav": [5, 13, 45, 47, 50], "code": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 28, 29, 30, 36, 37, 44, 45, 47, 48, 52, 53, 57, 59, 60, 61], "vasp": [5, 19], "quantum": [5, 17, 18, 19, 27, 32, 47, 55, 58], "k": [5, 7, 12, 13, 19, 27, 30, 31, 32, 33, 34, 36, 38, 41, 48, 49, 57, 59, 60, 61], "point": [5, 6, 10, 11, 12, 13, 19, 21, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 48, 49, 50, 52, 53, 57, 59, 60, 61], "schroding": [5, 22, 49, 61], "period": [5, 7, 8, 10, 18, 50], "usual": [5, 23, 29, 33, 36, 39, 40, 48, 49, 57, 59, 60], "conveni": [5, 28, 31, 35, 48, 49, 57, 59, 60], "space": [5, 13, 21, 28, 29, 32, 34, 35, 36, 37, 38, 39, 40, 41, 45, 46, 47, 49, 59, 61], "reciproc": 5, "becaus": [5, 11, 16, 19, 23, 27, 28, 30, 32, 33, 35, 36, 38, 39, 40, 41, 48, 49, 57, 59, 60], "integr": [5, 28, 53], "evalu": [5, 24, 28, 34, 36, 37, 38, 40, 52, 53, 59], "total": [5, 13, 16, 18, 21, 34, 35, 36, 37, 39, 40, 48, 49, 53, 57, 60], "larger": [5, 29, 32, 34, 35, 38, 46, 52, 53, 59], "number": [5, 8, 11, 12, 15, 16, 18, 19, 21, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 41, 46, 47, 49, 59, 61], "tend": [5, 33, 35, 36, 37], "computation": [5, 19, 21, 27, 36, 40], "expens": [5, 19, 21, 27, 39], "henc": [5, 36, 40, 48, 49, 57, 60], "respect": [5, 7, 13, 33, 37, 38, 40, 48, 49, 52, 53, 57, 60], "error": [5, 11, 15, 19, 28, 31, 32, 33, 34, 36, 37, 38, 40, 48, 49, 50, 57, 59, 60], "goe": [5, 11, 12, 29, 33, 36, 38, 59], "below": [5, 7, 8, 9, 11, 13, 14, 15, 18, 19, 28, 32, 35, 37, 38, 39, 40, 41, 46, 48, 49, 52, 53, 57, 59, 60, 61], "numer": [5, 21, 33, 34, 36, 38, 52, 53], "accuraci": [5, 12, 13, 27, 32, 36, 41, 45, 49, 52, 61], "cut": [5, 39, 48, 57, 60], "off": [5, 12, 35, 37, 52], "while": [5, 18, 21, 27, 28, 32, 33, 36, 37, 39, 40, 49, 52, 53, 59, 61], "same": [5, 11, 12, 21, 28, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 49, 59], "A": [5, 6, 12, 19, 21, 27, 28, 29, 30, 31, 36, 37, 39, 40, 44, 48, 49, 50, 53, 57, 59, 60, 61], "higher": [5, 16, 31, 33, 35, 36, 37, 38, 40, 49, 52, 61], "give": [5, 6, 19, 23, 28, 30, 32, 35, 36, 37, 39, 40, 48, 49, 57, 59, 60], "becom": [5, 7, 9, 15, 20, 35, 36, 39, 44, 49], "which": [5, 6, 7, 9, 10, 11, 12, 15, 16, 18, 19, 21, 23, 24, 28, 29, 30, 31, 32, 33, 34, 35, 36, 45, 46, 48, 49, 50, 52, 53, 57, 59, 60, 61], "chosen": [5, 32], "finit": 5, "mesh": [5, 13, 16, 45, 49, 61], "grid": [5, 11, 12, 16, 29, 34, 35, 38, 49, 59, 61], "equival": [5, 28, 33, 34, 38, 59], "qe": [5, 6, 13, 45, 47, 49, 57, 60, 61], "finer": 5, "s": [5, 6, 7, 11, 15, 16, 18, 19, 21, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 48, 49, 50, 52, 53, 54, 57, 59, 60, 61], "crystal": [5, 49, 61], "copper": [5, 13], "fcc": [5, 9, 13, 18], "curv": [5, 30, 31, 59], "absolut": [5, 11, 28, 30, 31, 33, 34, 46, 59], "given": [5, 19, 21, 27, 28, 31, 33, 35, 36, 37, 38, 39, 41, 46, 48, 49, 52, 53, 57, 59, 60], "finest": 5, "y": [5, 7, 15, 18, 28, 29, 30, 31, 33, 34, 35, 37, 38, 39, 40, 41, 59], "x": [5, 6, 7, 12, 15, 18, 23, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 49, 59, 61], "scale": [5, 10, 11, 30, 35, 36, 38, 40, 41, 50, 53, 59], "4x4x4": 5, "three": [5, 8, 9, 12, 48, 52, 53, 57, 60], "highest": [5, 32, 33, 35, 36, 40, 54], "reaction": [5, 52], "hydrogen": [5, 18], "convert": [5, 28, 34, 35, 37, 38, 41, 53, 59], "water": [5, 6, 10, 16, 18, 19, 27, 48, 57, 60], "vari": [5, 28, 33, 34, 35, 48, 50, 57, 59, 60], "take": [5, 15, 18, 19, 23, 27, 28, 29, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 48, 52, 53, 57, 59, 60], "default": [5, 23, 27, 29, 30, 31, 33, 36, 38, 39, 40, 48, 49, 50, 57, 60, 61], "length": [5, 9, 28, 35, 40, 59], "To": [5, 6, 18, 19, 21, 27, 30, 31, 38, 40, 41, 46, 48, 49, 52, 53, 57, 59, 60], "chapter": [5, 21], "nut": 5, "bolt": 5, "dr": [5, 21, 53], "sholl": 5, "book": [5, 17, 21, 28, 52, 53, 54, 59], "function": [5, 6, 9, 10, 11, 12, 15, 18, 19, 23, 27, 30, 31, 32, 33, 34, 35, 36, 39, 41, 46, 48, 49, 51, 52, 53, 57, 60, 61], "theori": [5, 9, 18, 19, 32, 38, 39, 51, 52, 53], "explain": [5, 10, 11, 13, 36, 53], "brillouin": 5, "zone": [5, 38], "gabriel": [6, 46], "gusm\u00e3o": [6, 46], "mar": 6, "2022": [6, 27, 48, 49, 50], "gusmaogabriel": [6, 46], "gmail": [6, 46], "com": [6, 28, 31, 32, 41, 46, 49, 52, 59, 61], "gatech": [6, 14, 23, 46, 53], "edu": [6, 14, 23, 46, 53], "fortran": [6, 47], "mpi": 6, "git": [6, 49, 61], "pb": [6, 7, 60, 61], "slurm": [6, 48, 49, 57], "torq": 6, "i": [6, 7, 9, 11, 15, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 46, 53], "packag": [6, 8, 9, 11, 12, 15, 16, 18, 19, 29, 37, 38, 39, 41, 47, 49, 52, 53, 59, 61], "ii": [6, 37, 53], "modifi": [6, 11, 27, 29, 30, 37, 41, 49, 61], "class": [6, 12, 18, 19, 29, 30, 33, 36, 38, 39, 40, 52, 53], "enabl": [6, 18, 28, 41, 53, 59], "interact": [6, 15, 21, 27, 29, 46, 48, 49, 52, 57, 59, 60], "live": [6, 23, 35], "session": [6, 52], "pi": [6, 28, 30, 40, 48, 49, 57, 59, 60], "socket": 6, "natur": [6, 28, 32, 36, 37, 52, 59], "iii": 6, "itself": [6, 28, 33, 39, 59], "assum": [6, 9, 28, 31, 34, 35, 38, 39, 41, 49, 59], "root_dir": 6, "share": [6, 23, 27, 28, 32, 48, 57, 59, 60], "user": [6, 14, 18, 19, 21, 23, 28, 30, 37, 38, 39, 40, 48, 49, 57, 59, 60], "arbitrari": [6, 31, 37, 38, 41, 59], "make": [6, 16, 18, 19, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 49, 52, 53, 61], "ones": [6, 29, 37, 38, 40, 59], "clone": [6, 49, 61], "qef": 6, "q": [6, 23, 29, 48, 49, 53, 57, 59, 60], "appropri": [6, 9, 19, 44, 53], "flag": [6, 9], "load": [6, 11, 46, 48, 49, 50, 57, 60, 61], "modul": [6, 8, 11, 12, 18, 29, 30, 31, 33, 34, 35, 37, 38, 39, 48, 49, 57, 60, 61], "bash": [6, 14, 15, 23, 47, 48, 49, 57, 60], "ggusmao_build": 6, "ssh": 6, "sh": [6, 18, 23, 48, 49, 57, 60, 61], "root": [6, 14, 15, 23, 28, 31, 34, 59], "folder": [6, 8, 14, 15, 23, 48, 49, 57, 60], "purg": [6, 61], "intel": [6, 49, 61], "mvapich2": [6, 49], "gcc": [6, 49], "compat": [6, 27, 30, 48, 57, 59, 60], "netlib": 6, "scalapack": 6, "mva2": 6, "anaconda3": [6, 18, 28, 29, 37, 38, 39, 48, 49, 57, 59, 60, 61], "export": [6, 49, 61], "cc": 6, "icc": 6, "cxx": 6, "icpc": 6, "fc": 6, "mpif90": 6, "f77": 6, "ifort": 6, "f90": 6, "mpivers": 6, "compilervers": 6, "veryclean": 6, "configur": [6, 19, 21, 36, 52], "prefix": [6, 18, 49, 61], "pwd": [6, 14, 23], "beef_lib": 6, "l": [6, 13, 23, 28, 34, 35, 41, 46, 59, 60], "libbeef": 6, "src": [6, 49, 61], "lbeef": 6, "parallel": [6, 37, 52], "ye": 6, "scalapack_lib": 6, "mklroot": 6, "lib": [6, 16, 18, 28, 29, 37, 38, 39, 49, 59, 61], "intel64": 6, "libmkl_scalapack_lp64": 6, "lmkl_blacs_intelmpi_lp64": 6, "blas_lib": 6, "lmkl_gf_lp64": 6, "lmkl_sequenti": 6, "lmkl_core": 6, "lpthread": 6, "lapack_lib": 6, "lmkl_lapack95_lp64": 6, "lmkl_scalapack_lp64": 6, "fcl": 6, "mkl": 6, "sequenti": 6, "lstdc": 6, "fflag": 6, "byterecl": 6, "cflag": [6, 49], "o3": [6, 18], "free": [6, 28, 38, 50, 59], "lowercas": 6, "fftmpiw": 6, "fftmpi_map": 6, "fft3dlib": 6, "fftw3d": 6, "j12": 6, "dev": [6, 28, 59], "latest": [6, 48, 57, 60], "gitlab": [6, 61], "ggusmao": 6, "handl": [6, 15, 28, 31, 38, 59], "pseudopotenti": [6, 48], "pseudos_modul": 6, "pseudo": [6, 46, 48, 57, 60, 61], "env": [6, 38, 48, 57, 60], "getpseudo": [6, 48, 57, 60], "py": [6, 14, 16, 18, 28, 37, 38, 39, 48, 49, 57, 59, 60, 61], "scrape": 6, "current": [6, 14, 22, 23, 32, 48, 49, 57, 60], "re": [6, 7, 10, 13, 19, 23, 28, 33, 34, 35, 36, 37, 38, 39, 40, 52, 53, 59], "sy": [6, 18, 40], "pseudos_dir": 6, "join": [6, 51, 52, 53], "medford_shar": 6, "curdir": 6, "getcwd": 6, "chdir": 6, "pseudo_path": 6, "replac": [6, 21, 28, 50, 59], "_": [6, 16, 28, 34, 36, 46, 50, 59], "dirpath": 6, "dirnam": 6, "filenam": [6, 23, 30, 48, 49, 57, 59, 60], "ani": [6, 7, 14, 15, 18, 28, 29, 32, 33, 35, 36, 37, 39, 40, 44, 45, 49, 52, 53, 59], "filter": 6, "lambda": [6, 31, 33], "lower": [6, 7, 21, 29, 30, 31, 34, 35, 40, 41, 46, 59], "endswith": 6, "upf": [6, 48, 57, 60], "psp8": [6, 48, 57, 60], "pot": 6, "listdir": 6, "esp_pseudo": 6, "els": [6, 11, 28, 29, 35, 37, 40, 41, 49, 59, 61], "rais": [6, 28, 34, 44, 59], "except": [6, 15, 31], "pseudo_not_found": 6, "n": [6, 7, 11, 15, 18, 21, 27, 28, 29, 31, 33, 34, 35, 36, 40, 41, 48, 49, 50, 57, 59, 60], "fail": [6, 32, 33, 36], "navail": 6, "setpseudo": [6, 48, 57, 60], "defint": 6, "argv": 6, "stdout": [6, 60], "exit": [6, 23], "psp": [6, 48, 57, 60], "successfulli": [6, 16, 38], "python": [6, 7, 8, 11, 12, 13, 14, 15, 18, 19, 23, 29, 34, 37, 41, 48, 51, 53, 57, 60], "esp_psp_path": 6, "current_path": 6, "sparc_psp_path": [6, 49, 61], "echo": 6, "sourc": [6, 23, 28, 30, 44, 47, 48, 49, 52, 57, 59, 60, 61], "download": [6, 8, 15, 49, 52], "pseudojodo": 6, "sssp": [6, 48, 57, 60], "etc": [6, 18, 21, 23, 27, 29, 30, 33, 35, 40, 52, 53, 59], "quantum_espresso": 6, "your": [6, 9, 10, 11, 12, 14, 15, 16, 18, 19, 23, 29, 33, 34, 45, 48, 49, 51, 52, 53, 57, 59, 60, 61], "befor": [6, 7, 32, 33, 35, 37, 38, 39, 41, 44, 52], "wide": [6, 23, 27, 36, 52], "pip": [6, 18, 28, 29, 49, 59], "hostlist": 6, "cd": [6, 7, 48, 49, 57, 60, 61], "home": [6, 16, 23, 49, 61], "root_directory_path": 6, "espresso_esp": 6, "old": [6, 40], "redefin": 6, "pp": 6, "accordingli": 6, "scratch": [6, 14], "base": [6, 9, 11, 12, 19, 23, 27, 28, 29, 32, 33, 35, 36, 37, 39, 48, 49, 50, 52, 53, 57, 59, 60], "program": [6, 19, 23, 30, 49, 52, 53, 61], "pythonpath": [6, 23, 49, 61], "spglib": 6, "option": [6, 23, 28, 30, 31, 35, 39, 40, 48, 49, 57, 59, 60], "bin": [6, 23, 30, 31, 41, 46, 48, 49, 57, 59, 60, 61], "ase_latest": 6, "hive": [6, 14, 48, 49, 57, 60], "node": [6, 14, 48, 49, 57, 60], "ppn": [6, 60], "pmem": [6, 60], "3gb": [6, 60], "walltim": [6, 48, 49, 57, 60], "00": [6, 29, 30, 36, 40, 48, 49, 53, 57, 59, 60], "gt": [6, 14, 46, 48, 49, 53, 57, 60], "amedford6": [6, 48, 49, 57, 60], "stderr": [6, 60], "pbs_o_workdir": [6, 60], "bashrc": [6, 23, 48, 49, 57, 60], "storag": [6, 14, 48, 49, 57, 60, 61], "coda1": [6, 48, 57, 60], "p": [6, 7, 18, 28, 29, 30, 31, 36, 37, 38, 39, 40, 41, 48, 57, 59, 60], "rich_project_chb": [6, 48, 57, 60], "medford": [6, 27, 32, 48, 49, 50, 51, 53, 57, 60], "7max": [6, 48, 57, 60], "ipi": [6, 48, 57, 60], "experi": [6, 32, 40, 52, 53], "bfg": [6, 31, 48, 57, 59, 60], "t0": [6, 48, 57, 60], "h2o": [6, 16, 18, 19, 46, 48, 49, 50, 57, 60, 61], "set_pbc": [6, 48, 50, 57, 60], "just": [6, 10, 18, 19, 22, 33, 34, 35, 36, 38, 39, 40, 41, 48, 49, 50, 57, 60, 61], "scf": [6, 48, 49, 57, 60, 61], "pbe": [6, 10, 21, 46, 48, 50, 57, 60, 61], "retriev": [6, 48, 57, 60], "stress": [6, 19, 36, 48, 57, 60], "rattl": [6, 48, 57, 60], "0001": [6, 11, 48, 57, 60], "1st": [6, 40, 48, 57, 60], "get_forc": [6, 19, 48, 50, 57, 60], "get_stress": [6, 19, 48, 57, 60], "t1": [6, 48, 57, 60], "sec": [6, 36, 48, 57, 60], "dyn": [6, 19, 48, 57, 60], "opt_pb": [6, 48, 57, 60], "h2o_pbe_optim": [6, 48, 57, 60], "005": [6, 48, 50, 57, 60], "t2": [6, 48, 57, 60], "350": [6, 48, 50, 57, 60], "2nd": [6, 27, 40, 48, 57, 60], "e_ensembl": [6, 48, 57, 60], "get_ensemble_energi": [6, 48, 57, 60], "ensembl": [6, 32, 37, 39, 48, 57, 60], "mean": [6, 10, 11, 18, 19, 24, 29, 31, 34, 36, 37, 38, 39, 41, 44, 46, 48, 49, 50, 57, 59, 60], "std": [6, 29, 31, 34, 35, 39, 40, 41, 48, 57, 59, 60], "opt_beef": [6, 48, 57, 60], "h2o_beef_optim": [6, 48, 57, 60], "extxyz": 6, "totol": [6, 48, 57, 60], "begin": [6, 9, 10, 11, 12, 15, 21, 49, 61], "zip": [6, 7, 38, 40, 41, 46, 53], "libxc": 6, "qe_7": 6, "libxc_6": 6, "wget": 6, "http": [6, 11, 12, 14, 15, 23, 27, 28, 30, 31, 32, 41, 49, 50, 52, 53, 59, 61], "archiv": 6, "It": [6, 12, 14, 18, 21, 23, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 46, 48, 49, 50, 52, 57, 59, 60, 61], "appear": [6, 16, 28, 37, 44, 49, 53], "automat": [6, 11, 28, 38, 40, 52, 59], "later": [6, 18, 19, 31, 34, 35, 36, 40, 47, 59], "job": [6, 14, 17, 48, 49, 53, 57, 60], "lrt_build": 6, "autoreconf": 6, "TO": 6, "processor": [6, 48, 49, 57, 60], "either": [6, 18, 19, 40, 46], "continu": [6, 11, 12, 15, 22, 28, 33, 35, 37, 39, 41, 53, 59], "j": [6, 21, 23, 27, 28, 29, 32, 33, 34, 35, 36, 40, 48, 49, 53, 57, 59], "cover": [7, 8, 11, 12, 14, 15, 18, 19, 21, 27, 29, 30, 31, 33, 38, 40, 52, 59], "previou": [7, 10, 11, 12, 32, 33, 34, 46, 48, 57, 60], "ca": [7, 8, 9, 10], "lta": [7, 8, 9, 10], "boundari": [7, 8, 10, 12, 31, 37, 39, 40, 50, 59], "condit": [7, 8, 10, 15, 23, 28, 50, 52], "acajiz": 7, "instead": [7, 9, 14, 18, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 59], "emt": [7, 19, 49, 50, 61], "than": [7, 11, 21, 23, 28, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 51, 59], "ang": [7, 18], "algorithm": [7, 36, 37, 39], "repsectivlei": 7, "conta": 7, "metal": [7, 18, 19, 21, 46, 52], "organ": [7, 32, 35, 52], "framework": [7, 9, 10, 27, 31, 34, 52, 59], "mof": [7, 9], "were": [7, 11, 14, 38, 41, 46], "dervi": 7, "experiment": [7, 9, 10, 16, 32], "overlap": [7, 36, 48, 57, 60], "due": [7, 21, 39, 46, 52, 53], "inaccur": [7, 27], "rai": 7, "powder": 7, "diffract": 7, "pair": [7, 19, 28, 59], "distanc": [7, 19, 28, 35, 38, 39, 50, 59], "less": [7, 28, 33, 36, 37, 40, 59], "half": [7, 28, 30, 59], "radii": 7, "dictionari": 7, "identifi": [7, 11, 20, 32, 37, 40, 41, 50], "letter": [7, 53], "csd": 7, "defect": 7, "consol": [7, 8, 15], "task": [7, 11, 12, 18, 52, 53], "li": [7, 18, 33], "86": [7, 46, 50], "Be": [7, 10, 11, 12, 18, 28, 52, 59], "53": [7, 38, 40, 50], "b": [7, 18, 28, 29, 30, 31, 32, 34, 37, 38, 39, 40, 53, 59, 61], "01": [7, 11, 13, 29, 30, 34, 36, 39, 40, 46, 50, 59], "88": [7, 50], "89": [7, 50], "82": [7, 28, 35, 40, 50, 59], "na": [7, 18], "mg": 7, "al": [7, 18], "si": [7, 18], "cl": [7, 18], "sc": 7, "62": [7, 28, 35, 50, 59], "ti": [7, 12, 39, 40, 41], "65": [7, 40, 50], "v": [7, 10, 21, 29, 32, 59], "51": [7, 46, 50], "cr": 7, "mn": 7, "fe": [7, 18], "co": [7, 9, 18, 28, 30, 50, 59], "ni": [7, 37], "cu": [7, 18, 46], "zn": 7, "ge": 7, "se": 7, "br": 7, "rb": 7, "sr": 7, "84": [7, 50], "zr": 7, "73": [7, 50], "nb": [7, 39, 41], "66": [7, 35, 50], "mo": 7, "57": [7, 35, 50], "ru": 7, "58": [7, 15, 50], "rh": [7, 46], "63": [7, 28, 50, 59], "pd": [7, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46], "68": [7, 29, 50, 59], "ag": [7, 46], "56": [7, 16, 40, 49, 50], "sn": [7, 35, 41], "64": [7, 12, 35, 36, 41, 50], "sb": 7, "te": 7, "cs": [7, 18, 27, 38, 50], "85": [7, 32, 50], "ba": 7, "52": [7, 35, 50], "la": [7, 31, 59], "91": [7, 41, 46, 50], "ce": 7, "98": [7, 50], "pr": 7, "75": [7, 18, 35, 46, 50], "nd": 7, "92": [7, 41, 50], "sm": 7, "eu": 7, "83": [7, 40, 50], "gd": 7, "79": [7, 50], "tb": 7, "dy": [7, 28, 59], "ho": 7, "er": 7, "80": [7, 12, 50], "tm": 7, "yb": 7, "lu": 7, "hf": [7, 18], "ir": [7, 11, 33], "50": [7, 15, 19, 30, 31, 32, 33, 35, 38, 41, 50, 53, 59], "au": [7, 46], "hg": 7, "72": [7, 28, 46, 50, 59], "bi": [7, 32, 52, 53], "th": [7, 21, 31, 59], "97": [7, 41, 50], "u": [7, 14, 32, 41, 46], "76": [7, 46, 50], "pu": 7, "71": [7, 50], "util": [8, 11, 16, 18, 36, 37, 38, 39, 40, 49, 53], "sure": [8, 10, 11, 12, 14, 23, 37, 38, 39, 52], "anaconda": [8, 15, 48, 49, 52, 57, 60], "manag": [8, 15, 23, 53], "block": [8, 14, 18, 35, 39, 40, 41, 48, 49, 57, 60, 61], "statement": [8, 15, 28, 29, 59], "next": [8, 9, 10, 11, 12, 14, 15, 18, 19, 32, 40, 48, 49, 53, 57, 60, 61], "crystallograph": 8, "cif": [8, 10], "along": [8, 32, 35, 36, 40], "found": [8, 11, 12, 19, 27, 28, 32, 36, 40, 48, 49, 50, 57, 59, 60, 61], "exercise_nam": 8, "zeolit": [8, 52], "applic": [8, 9, 23, 36, 40, 52, 53], "sever": [8, 9, 23, 27, 35, 36, 44, 49, 52], "throughout": [8, 32, 52], "train": [8, 11, 12, 14, 15, 22, 27, 32, 33, 34, 35, 36, 37, 38, 40, 41, 49, 51, 61], "cours": [8, 32, 33, 34, 36, 37, 40, 44, 48, 49, 57, 60, 61], "built": [8, 14, 18, 27, 28, 29, 32, 34, 35, 40, 41, 59], "manual": [8, 9, 23, 32, 40, 49, 61], "activ": [8, 9, 38, 44, 46, 49, 50], "lastli": [8, 11, 14, 15], "volum": [8, 10, 30, 35, 59], "One": [9, 27, 34, 35, 36, 37, 38, 40, 41, 50], "major": [9, 12, 37, 40, 52], "geometr": [9, 38, 48, 57, 60], "linear": [9, 22, 28, 34, 36, 37, 39, 40, 46], "bond": [9, 21, 32], "\u00e5": [9, 13], "confirm": [9, 46, 52], "match": [9, 28, 30, 33, 41, 59], "111": [9, 18, 35, 46, 50], "hcp": 9, "site": [9, 14, 16, 18, 29, 32, 37, 38, 39, 46, 49, 53, 59], "stabl": [9, 11, 12], "correspond": [9, 12, 15, 18, 31, 33, 34, 35, 37, 38, 39, 40, 49, 53, 59], "satur": 9, "one": [9, 10, 12, 14, 16, 18, 19, 23, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 40, 41, 45, 49, 50, 52, 53, 59, 61], "monolay": 9, "case": [9, 12, 28, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 48, 49, 57, 59, 60, 61], "shown": [9, 18, 21, 27, 38], "figur": [9, 40, 44, 46, 53], "larg": [9, 16, 29, 30, 31, 32, 34, 35, 36, 39, 40, 46, 48, 52, 53, 57, 59, 60], "teal": 9, "calcium": 9, "choic": [9, 12, 14, 36, 40], "add": [9, 15, 18, 21, 22, 28, 29, 33, 36, 37, 38, 40, 49, 59], "reduc": [9, 12, 34, 36, 41], "cost": [9, 13, 27, 37, 40], "comment": [9, 11, 12, 13, 53], "reason": [9, 12, 19, 23, 28, 32, 33, 35, 36, 41, 44, 53, 59], "domin": 9, "would": [9, 15, 18, 32, 34, 35, 38, 40], "expect": [9, 29, 31, 37, 46, 51, 52, 53, 59], "shift": [9, 18, 37], "pristin": 9, "allow": [9, 16, 18, 19, 23, 28, 30, 31, 32, 37, 38, 40, 41, 46, 50, 52, 53, 59], "co2": [9, 18, 46], "phase": [10, 46], "carbon": [10, 13], "dioxid": 10, "ammonia": 10, "common": [10, 18, 21, 23, 28, 30, 31, 33, 34, 36, 37, 40, 47, 52], "perdew": [10, 21], "burk": 10, "ernzerhof": 10, "gradient": [10, 21], "gga": [10, 21, 46, 48, 57, 60], "graphit": 10, "compar": [10, 11, 12, 21, 29, 31, 34, 35, 36, 39, 40, 41, 49, 53, 59, 61], "those": [10, 11, 46, 52], "notic": [10, 11, 16, 40, 46, 49], "json": [10, 13, 46], "get_e_form": 10, "e_form": 10, "abov": [10, 11, 12, 18, 28, 29, 32, 34, 37, 38, 40, 41, 52, 53, 59], "b3lyp": [10, 21], "hydrid": 10, "doe": [10, 11, 12, 18, 23, 27, 28, 29, 33, 36, 40, 41, 53, 59], "why": [10, 11, 13, 32], "revisit": [10, 33, 35, 36, 41], "prior": [10, 37, 39, 40, 49, 52, 53, 61], "empti": [10, 15, 28, 40, 59], "report": [10, 11, 13, 30, 48, 49, 53, 57, 59, 60], "both": [10, 14, 20, 27, 28, 31, 33, 34, 35, 36, 45, 46, 47, 48, 50, 52, 53, 57, 59, 60], "answer": [10, 19, 29, 31, 32, 40, 44, 59], "But": [10, 18], "lih5c5n2o5": 10, "pbc": [10, 18, 50], "len": [10, 28, 31, 33, 34, 35, 36, 37, 40, 46, 50, 59], "don": [10, 28, 32, 33, 35, 36, 38, 39, 41, 48, 49, 57, 59, 60, 61], "origin": [10, 11, 18, 28, 33, 34, 35, 36, 37, 38, 39, 40, 41, 59], "adjust": 10, "lattic": [10, 13, 18, 32], "fluctuat": 10, "equidist": 10, "fit": [10, 11, 12, 33, 34, 36, 37, 38, 39, 40, 41], "cubic": [10, 13, 18, 31, 59], "state": [10, 16, 21, 27, 32, 40, 46, 48, 57, 60], "poli": 10, "order": [10, 15, 33, 34, 36, 50], "find": [10, 19, 28, 32, 33, 34, 37, 38, 39, 41, 46, 48, 49, 51, 53, 57, 60, 61], "constant": [10, 13, 18, 27, 32, 33, 37, 53], "minim": [10, 13, 28, 31, 32, 33, 36, 37, 38, 40, 48, 49, 57, 59, 60, 61], "recal": [10, 12, 38, 40], "vec": [10, 27, 33, 34, 36, 37, 38, 39, 40], "v_1": 10, "cdot": [10, 16], "v_2": 10, "v_3": 10, "correpond": 10, "unmanipul": 10, "strategi": [11, 12, 21, 34, 36, 37, 38, 40, 41, 48], "regress": [11, 27, 34, 35, 36, 37], "interpol": [11, 30, 41], "hyperparamet": [11, 12, 33, 36, 40], "tune": [11, 12, 36, 37, 39, 40, 52], "dimension": [11, 12, 20, 21, 27, 31, 38, 39, 40, 41, 51], "reduct": [11, 40, 41, 51], "small": [11, 12, 28, 38, 40, 52, 59], "sampl": [11, 12, 27, 31, 35, 37, 38, 39, 40, 41, 49, 50, 59, 61], "techniqu": [11, 12, 32, 35, 36, 37, 40, 52], "implement": [11, 12, 19, 28, 29, 32, 34, 36, 37, 38, 39, 40, 41, 48, 50, 53, 57, 59, 60], "scikit": [11, 12, 15, 33, 34, 35, 36, 37, 38, 39, 40], "org": [11, 12, 15, 27, 28, 30, 31, 32, 50, 59], "spectrum": [11, 34], "ethanol": 11, "panda": [11, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46], "excel": [11, 18, 33], "csv": [11, 29, 33, 34, 59], "datafram": [11, 35, 41, 46], "radial": [11, 12, 27, 33, 36, 50], "basi": [11, 12, 33, 34, 36, 49, 61], "kernel": [11, 12, 34, 37, 40], "parametr": [11, 34, 51], "model": [11, 12, 21, 24, 27, 31, 32, 51, 52, 53, 59], "intepol": 11, "gaussian": [11, 12, 27, 33, 34, 35, 38, 39, 50], "100": [11, 13, 29, 30, 31, 32, 33, 35, 36, 40, 41, 46, 50, 59], "mae": [11, 15, 50], "color": [11, 12, 36, 38, 39, 40], "part": [11, 20, 28, 29, 33, 37, 38, 40, 48, 49, 51, 57, 59, 60], "everi": [11, 15, 27, 32, 33, 37, 40, 41, 44, 46, 50], "third": [11, 28, 38, 40, 59], "happen": [11, 12, 28, 38, 39, 48, 57, 59, 60], "observ": [11, 48, 53, 57, 60], "dataset": [11, 12, 29, 33, 34, 36, 39, 41, 59], "ridg": [11, 34, 38], "krr": [11, 34], "l2": [11, 34], "regular": [11, 32, 33, 38], "control": [11, 29, 33, 34, 38, 53], "smooth": [11, 38, 39], "strength": [11, 34, 38], "alpha": [11, 30, 37, 39, 40, 41, 46, 49, 59], "infin": [11, 12, 28, 31, 38, 59], "try": [11, 28, 31, 34, 36, 39, 40, 41, 59], "l1": [11, 34], "lasso": 11, "place": [11, 13, 29, 30, 31, 53, 59], "unlik": [11, 28, 35, 38, 40, 59], "remov": [11, 16, 18, 37, 38, 39], "unnecessari": 11, "featur": [11, 27, 28, 31, 33, 34, 36, 37, 38, 39, 40, 41, 59], "entir": [11, 21, 28, 29, 31, 37, 40, 52, 59], "sklearn": [11, 12, 33, 34, 35, 36, 37, 38, 39, 40, 41], "gridsearchcv": [11, 34], "fold": [11, 34], "valid": [11, 16, 18, 24, 32, 34, 38, 45, 49], "rang": [11, 28, 29, 30, 31, 33, 34, 35, 36, 37, 40, 41, 46, 50, 52, 59], "001": 11, "happend": 11, "increas": [11, 27, 35, 36, 38, 40, 41], "princip": [11, 40, 41], "compon": [11, 12, 16, 21, 27, 41, 53], "unsupervis": [11, 12, 36, 40, 41], "diabet": 11, "toi": [11, 12, 19, 35, 38, 39, 40, 47], "predict": [11, 12, 20, 27, 33, 34, 38, 40, 41, 53], "patient": 11, "suscept": 11, "ten": [11, 12], "onc": [11, 19, 23, 28, 29, 30, 32, 37, 39, 40, 41, 44, 49, 59, 61], "normal": [11, 29, 31, 34, 38, 40, 49, 50, 59, 61], "stanadrd": 11, "scaler": 11, "load_diabet": 11, "html": [11, 12, 28, 30, 31, 53, 59], "preprocess": [11, 46], "standardscal": 11, "pca": [11, 12, 41], "work": [11, 12, 14, 18, 23, 24, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 49, 53, 57, 59, 60], "orthogon": 11, "greatest": [11, 28, 59], "amount": [11, 36], "varianc": [11, 29, 31, 40, 41, 59], "keep": [11, 32, 33, 36, 41, 44, 51], "covari": [11, 12, 35, 40, 41], "matrix": [11, 12, 27, 31, 34, 37, 38, 40, 41], "minimum": [11, 12, 18, 40, 41, 44], "captur": [11, 21, 36, 40, 52], "90": [11, 12, 32, 50], "done": [11, 18, 19, 23, 30, 33, 34, 35, 38, 59], "weight": [11, 27, 38, 40, 50, 52, 53], "behav": [11, 28, 29, 31, 44, 59], "therefor": [11, 23, 27, 33, 35, 36, 37, 38, 39, 46, 48, 49, 57, 60], "redund": [11, 28, 59], "hint": [11, 34, 36], "components_": 11, "routin": 11, "custom": [11, 30, 59], "made": [11, 32, 38, 49, 53, 61], "myplot": 11, "score": [11, 12, 33, 34, 41, 53], "coeff": [11, 34], "label": [11, 12, 31, 35, 36, 37, 38, 39, 40, 50], "none": [11, 12, 28, 33, 34, 35, 36, 38, 40, 41, 59], "xs": 11, "ys": 11, "shape": [11, 29, 30, 33, 35, 36, 37, 38, 39, 40, 41, 46, 50, 59], "scalex": 11, "max": [11, 29, 30, 33, 34, 35, 37, 39, 40, 41, 59], "min": [11, 29, 30, 33, 34, 35, 37, 39, 40, 41, 59], "scalei": 11, "scatter": [11, 36, 37, 38, 39, 40, 41, 50], "y1": 11, "arrow": [11, 30, 59], "var": [11, 29, 31, 59], "va": 11, "xlim": [11, 38, 39], "ylim": [11, 38, 39], "xlabel": [11, 30, 50, 59], "pc": [11, 36], "ylabel": [11, 30, 50, 59], "call": [11, 12, 14, 15, 18, 19, 28, 29, 31, 33, 34, 36, 38, 47, 48, 49, 57, 59, 60, 61], "classif": [12, 36, 38, 40], "supper": 12, "vector": [12, 29, 30, 31, 33, 34, 35, 39, 40, 46, 59], "machin": [12, 18, 24, 27, 32, 34, 35, 39, 51, 52, 53, 54], "moon": [12, 36, 37], "200": [12, 31, 35, 36, 37, 38, 39, 50, 59], "nois": [12, 31, 36, 37, 38, 39, 40, 59], "make_moon": [12, 36, 37, 38, 39], "accord": [12, 27, 28, 59], "its": [12, 15, 16, 19, 23, 27, 29, 30, 31, 36, 37, 38, 39, 40, 48, 57, 59, 60], "assign": [12, 21, 28, 29, 37, 39, 40, 53, 59], "mpl": 12, "inlin": [12, 13, 19, 28, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 50, 59], "support": [12, 28, 30, 39, 40, 50, 53, 59], "rbf": [12, 33, 34, 36, 38, 40], "discrimin": [12, 36, 39], "gamma": [12, 28, 33, 34, 36, 40, 48, 50, 57, 59, 60], "achiev": [12, 29, 33, 34, 35, 38, 52, 53, 59], "split": [12, 39, 46], "show": [12, 18, 21, 23, 30, 33, 35, 36, 37, 38, 39, 40, 48, 57, 59, 60], "svm": [12, 37, 38], "decis": [12, 32, 37], "precis": [12, 28, 40, 59], "model_select": [12, 34, 39, 41], "train_test_split": [12, 34, 39, 41], "svc": [12, 37, 38], "metric": [12, 32, 34, 36, 38, 39, 41, 50], "accuracy_scor": [12, 41], "precision_scor": 12, "recall_scor": 12, "create_and_train_model": 12, "x_data": 12, "tupl": [12, 29, 50], "y_data": 12, "random_st": [12, 35, 36, 40, 41], "int": [12, 21, 28, 29, 35, 40, 59], "get_scor": 12, "x_test": [12, 33, 34, 39, 41], "y_test": [12, 34, 39, 41], "diminish": 12, "improv": [12, 21, 36, 37, 38, 40, 52], "remain": [12, 15, 27, 52], "confus": [12, 28, 40, 53, 59], "confusion_matrix": [12, 41], "confusionmatrixdisplai": 12, "random": [12, 29, 31, 34, 35, 36, 37, 38, 39, 40, 52, 59], "nearest": [12, 28, 40, 59], "neighbor": [12, 35, 36, 40, 41], "knn": [12, 37, 40], "laslti": 12, "discuss": [12, 27, 30, 31, 32, 45, 52, 53, 59], "loss": [12, 28, 33, 34, 39, 50, 59], "Is": 12, "supervis": [12, 36, 40, 41], "un": 12, "kneighborsclassifi": [12, 39], "via": [12, 18, 28, 36, 52, 53, 59], "democrat": 12, "vote": [12, 39], "known": [12, 18, 21, 31, 35, 39, 40, 46, 48, 52, 53, 57, 59, 60], "simpl": [12, 13, 15, 18, 19, 27, 28, 30, 31, 37, 39, 40, 46, 48, 59, 60], "win": 12, "dealt": 12, "decreas": [12, 36, 39, 41], "until": [12, 15, 19, 39, 40], "tie": [12, 39], "broken": [12, 39], "still": [12, 28, 32, 35, 36, 37, 39, 41, 46, 49, 52, 59, 61], "count": [12, 28, 34, 41, 52, 53, 59], "sinc": [12, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 52, 57, 59, 60], "target": [12, 35, 36, 41, 53], "multi": [12, 27, 29, 31, 36, 39, 40, 50, 59], "make_blob": [12, 35, 37, 38, 39], "150": [12, 40, 50], "cluster": [12, 36, 41, 48, 60], "decomposit": [12, 36, 40, 41, 46], "tree": [12, 40], "necessari": [12, 21, 32, 35, 38, 40, 41, 45, 48, 52, 53, 57, 60], "decid": [12, 30, 33, 39, 40, 48, 52, 57, 59, 60], "extent": [12, 30, 59], "decisiontreeclassifi": [12, 39], "classifi": [12, 37, 38, 39, 41], "train_tre": 12, "x_train": [12, 33, 34, 39, 41], "y_train": [12, 33, 34, 39, 41], "max_depth": 12, "naiv": 12, "naive_bay": [12, 39, 41], "gaussiannb": [12, 39, 41], "bay": [12, 37], "train_gnb": 12, "focus": [12, 20], "new": [12, 14, 21, 23, 24, 28, 29, 33, 34, 35, 36, 37, 38, 40, 49, 54, 59, 61], "pattern": [12, 36, 40], "exist": [12, 21, 28, 32, 41, 49, 59], "digit": [12, 15, 35, 36], "mnist": [12, 36, 41], "high": [12, 20, 27, 32, 36, 39, 40, 48, 51, 52, 53, 57, 60], "consist": [12, 21, 33, 35, 37, 46, 48, 49, 52, 53, 57, 60, 61], "hand": [12, 35, 36, 41, 48, 49, 57, 60], "drawn": [12, 39, 41], "commonli": [12, 23, 32, 33, 34, 37, 39, 40], "process": [12, 31, 32, 35, 38, 39, 40, 52, 53], "797": [12, 35], "present": [12, 15, 27, 41, 48, 52, 53, 57, 60], "pixel": [12, 35, 36], "thu": [12, 49, 52], "load_digit": [12, 35, 36, 41], "mixtur": 12, "gmm": 12, "exampl": [12, 13, 14, 15, 16, 18, 21, 27, 28, 29, 30, 33, 34, 39, 48, 49, 50, 57, 59, 60, 61], "y_mnist": [12, 35, 36, 41], "variabl": [12, 23, 29, 30, 31, 33, 35, 37, 38, 39, 40, 41, 49, 61], "quickli": [12, 41, 52], "subset": [12, 29, 39, 41, 59], "spheric": [12, 40, 41], "convinc": [12, 32, 37], "synthet": [12, 37, 41], "gaussianmixtur": [12, 40, 41], "train_gmm": 12, "n_compon": [12, 36, 40, 41], "8x8": [12, 35, 36], "plot_imag": 12, "imshow": [12, 30, 35, 36, 41, 59], "reshap": [12, 34, 35, 36, 37, 38, 39, 40, 41], "cmap": [12, 30, 35, 36, 38, 39, 41, 59], "grai": [12, 30, 59], "estim": [12, 32, 37, 39, 40, 46], "kde": 12, "bandwidth": [12, 40, 41], "kerneldens": [12, 41], "train_kde_model": 12, "start": [13, 19, 21, 23, 28, 29, 30, 32, 37, 38, 40, 46, 48, 49, 52, 57, 59, 60, 61], "isol": [13, 48, 57, 60], "box": [13, 18, 19, 45, 48, 57, 60], "dimens": [13, 27, 28, 29, 30, 33, 35, 36, 39, 40, 46, 59], "interv": 13, "increment": 13, "against": [13, 35], "matplolib": 13, "convent": [13, 27, 28, 50, 59], "per": [13, 27, 48, 49, 53, 57, 60, 61], "cpu": [13, 40, 48, 49, 57], "cutoff": [13, 27, 37, 40, 45, 48, 50, 57, 60], "versu": 13, "behavior": [13, 28, 34, 38, 44, 59], "diamond": 13, "smaller": [13, 28, 36, 38, 40, 59], "dens": [13, 40], "linux": [14, 49, 51, 61], "skill": [14, 15, 32, 53], "ic": [14, 23, 48, 49, 57, 60], "vip": [14, 27, 28, 48, 49, 50, 57, 59, 60, 61], "grad": [14, 44], "gtid": 14, "termin": [14, 38, 48, 49, 52, 57, 60, 61], "cheat": 14, "microsoft": [14, 52], "studio": 14, "phrase": 14, "hello": [14, 28, 29, 59], "world": [14, 28, 35, 52, 53, 59], "schedul": 14, "explicitli": [14, 21, 29, 30, 33, 40, 41, 53, 59], "alloc": [14, 46], "core": [14, 18, 19, 21], "minut": [14, 32, 52], "output": [14, 15, 28, 30, 31, 33, 35, 36, 37, 38, 39, 40, 41, 48, 49, 53, 57, 59, 60, 61], "save": [14, 15, 23, 48, 49, 50, 57, 60, 61], "sbatch": [14, 48, 49, 57], "remind": [14, 29, 44, 59], "squeue": 14, "usernam": [14, 23, 49], "subdirectori": 14, "move": [14, 33, 35, 36, 40, 41, 48, 49, 57, 60, 61], "view": [14, 18, 19, 29, 35, 36, 59], "delet": 14, "ensur": [14, 32, 37, 38, 39, 40, 53], "success": [14, 32, 33, 36, 38, 53], "individu": [14, 18, 34, 40, 52, 53], "loop": [14, 15, 23], "locat": [15, 18, 28, 30, 48, 49, 57, 59, 60], "repo": [15, 27], "version": [15, 28, 36, 37, 38, 39, 40, 41, 46, 48, 49, 52, 57, 60], "pylab": [15, 30, 59], "collatz": 15, "conjectur": 15, "famou": [15, 32, 35], "unsolv": 15, "problem": [15, 21, 22, 28, 31, 32, 33, 35, 36, 38, 39, 52, 53, 59], "ask": [15, 32, 49, 52, 53, 61], "whether": [15, 28, 35, 40, 52, 59], "arithmet": [15, 28, 29, 59], "oper": [15, 22, 23, 28, 34, 39, 52, 53], "eventu": 15, "transform": [15, 31, 33, 36, 38, 41, 59], "integ": [15, 28, 29, 37, 59], "argument": [15, 19, 29, 30, 31, 38, 40, 48, 49, 57, 60, 61], "If": [15, 18, 19, 23, 28, 29, 30, 32, 33, 34, 35, 36, 37, 40, 44, 48, 49, 50, 52, 57, 59, 60, 61], "even": [15, 19, 28, 29, 32, 35, 36, 39, 40, 41, 46, 59], "odd": 15, "multipli": [15, 29, 37, 38, 59], "number_i": 15, "n_iter": [15, 36], "init": [15, 36], "collatz_exercis": 15, "png": [15, 18, 30, 59], "string": [15, 50], "charact": [15, 28, 32, 59], "pass": [15, 28, 31, 40, 59], "being": [15, 21, 28, 33, 34, 35, 36, 40, 41, 59], "print_even": 15, "string_in": 15, "gojacket": 15, "me": 15, "ishmael": 15, "ilovechb": 15, "incom": 15, "tax": 15, "salari": 15, "scheme": [15, 37, 46], "000": 15, "rate": [15, 37, 53], "get_tax": 15, "58500": 15, "revers": [15, 28, 36, 59], "6572": 15, "2756": [15, 50], "658": 15, "2940": 15, "44112": 15, "print_revers": 15, "number_revers": 15, "mean_absolute_error": 15, "calcualt": [15, 27], "describ": [16, 27, 28, 31, 32, 34, 35, 37, 40, 41, 52, 59], "releas": 16, "chemic": [16, 18, 19, 27, 40, 48, 50, 52, 53, 57, 60], "speci": [16, 18, 40], "raw": [16, 33], "typic": [16, 33, 34, 35, 36, 37, 39, 40], "quit": [16, 18, 23, 37], "often": [16, 28, 29, 30, 33, 34, 35, 37, 39, 40, 45, 59], "inconveni": [16, 28, 30, 59], "own": [16, 28, 34, 36, 38, 46, 49, 52, 59, 61], "form": [16, 19, 21, 23, 31, 33, 34, 36, 37, 38, 40, 59], "h_": [16, 48, 57, 60], "o_": 16, "equal": [16, 28, 31, 33, 34, 35, 37, 38, 40, 41, 46, 59], "uniqu": [16, 21, 40, 53, 54], "element": [16, 27, 36, 37, 40, 50], "h2": [16, 18, 19], "kpoint": 16, "04": [16, 36, 40, 46, 50], "regist": 16, "hice1": [16, 49], "nyu49": [16, 49, 53], "local": [16, 18, 21, 27, 30, 36, 40, 49, 52, 59], "python3": [16, 18, 28, 29, 37, 38, 39, 49, 52, 59], "471": [16, 50], "userwarn": [16, 49], "fd_grid": 16, "mesh_spac": 16, "convers": [16, 49, 52], "ignor": [16, 40, 49], "warn": [16, 37, 38, 39, 49, 61], "sparc_pars": [16, 49], "kei": [16, 22, 27, 28, 32, 33, 34, 36, 37, 38, 39, 40, 49, 53, 59], "poisson_solv": [16, 49], "verbos": [16, 49, 50], "h2_energi": 16, "h2o_energi": 16, "108": [16, 49, 50], "mass": [16, 31, 49, 59], "outputfil": [16, 49], "final": [16, 21, 28, 33, 36, 40, 41, 46, 52, 53, 59], "e_h2o": [16, 19], "e_h2": [16, 19], "e_f": 16, "462": [16, 50], "712": 16, "theoret": 17, "est": [17, 52], "draw": [17, 30, 41, 53, 59], "insprir": 17, "szabo": 17, "ostlund": 17, "intro": [17, 53], "modern": 17, "fall": [17, 22, 40], "2024": [17, 22], "reformul": 17, "chbe": 17, "6745": 17, "jupyt": [17, 18, 28, 52, 53, 54, 59], "atomist": [18, 50, 53], "extrem": [18, 23, 35, 36, 41], "power": [18, 23, 28, 30, 34, 36, 37, 38, 39, 52, 59], "remot": [18, 23, 53], "nglview": [18, 19], "through": [18, 19, 28, 32, 33, 34, 36, 40, 41, 46, 48, 49, 52, 53, 57, 59, 60, 61], "notebook": [18, 27, 50, 52], "nbextens": 18, "might": [18, 29, 32, 46, 48, 49, 57, 59, 60, 61], "alreadi": [18, 28, 29, 33, 34, 35, 36, 41, 48, 49, 57, 59, 60], "satisfi": [18, 29, 59], "scipi": [18, 30, 36, 37, 38, 39, 40, 41], "cycler": 18, "kiwisolv": 18, "pypars": 18, "dateutil": 18, "six": 18, "setuptool": 18, "ipywidget": 18, "nbformat": 18, "ipykernel": 18, "ipython": [18, 27, 28, 29, 39, 50, 59], "python_vers": 18, "traitlet": 18, "widgetsnbextens": 18, "jsonschema": 18, "genutil": 18, "tornado": 18, "client": 18, "pexpect": 18, "sys_platform": 18, "win32": 18, "jedi": 18, "decor": 18, "pygment": 18, "backcal": 18, "appnop": 18, "darwin": [18, 28, 59], "prompt": 18, "toolkit": [18, 30, 59], "pickleshar": 18, "pyrsist": 18, "attr": 18, "pyzmq": 18, "ptyprocess": 18, "parso": 18, "wcwidth": 18, "terminado": 18, "send2trash": 18, "prometheu": 18, "nbconvert": 18, "jinja2": 18, "testpath": 18, "bleach": 18, "pandocfilt": 18, "mistun": 18, "entrypoint": 18, "defusedxml": 18, "markupsaf": 18, "webencod": 18, "extens": [18, 30, 39, 59], "js": 18, "widget": 18, "32mok": 18, "0m": [18, 50], "like": [18, 19, 23, 27, 28, 31, 32, 33, 35, 37, 38, 39, 41, 48, 49, 50, 57, 60, 61], "programit": 18, "pretti": [18, 29, 41, 59], "abstract": [18, 32, 40], "symbol": [18, 30, 50, 59], "hh": 18, "_2": [18, 19, 34, 36, 38, 46, 55, 56, 58], "now": [18, 28, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 48, 49, 50, 57, 59, 60, 61], "interest": [18, 27, 36, 38, 52], "let": [18, 19, 23, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 48, 49, 52, 57, 59, 60, 61], "sai": 18, "want": [18, 19, 23, 28, 29, 30, 33, 35, 37, 40, 48, 49, 57, 59, 60, 61], "second": [18, 28, 34, 38, 59], "awai": [18, 38], "h4": 18, "though": [18, 35, 36, 40], "viewer": [18, 19], "ngl": 18, "backend": 18, "project": [18, 30, 35, 36, 53, 59], "10x": 18, "20y": 18, "2z": 18, "savefig": [18, 30, 59], "cell_exampl": 18, "svg": [18, 30, 59], "_subplot": 18, "axessubplot": 18, "0x7f8796493690": 18, "repres": [18, 27, 28, 33, 35, 36, 37, 40, 41, 46, 59], "collect": 18, "involv": [18, 21, 28, 29, 31, 33, 40, 46, 52, 59], "oxid": [18, 52], "put": [18, 30, 33, 48, 57, 59, 60], "almost": [18, 31, 41, 59], "type": [18, 19, 21, 23, 27, 29, 30, 31, 33, 38, 39, 46, 47, 50], "imagin": 18, "0x7f8796542550": 18, "2_hydrogen": 18, "xyz": 18, "h2_2": 18, "lot": [18, 30, 34, 35, 37, 38, 39, 41, 49, 52, 59, 61], "thing": [18, 23, 28, 29, 30, 33, 34, 35, 36, 37, 40, 49, 59, 61], "oner": 18, "luckili": [18, 40, 41], "databas": [18, 32], "miller": 18, "hold": [18, 34, 40], "similarli": [18, 28, 31, 35, 36, 59], "ton": [18, 19], "ll": [18, 19, 23, 52], "littl": [18, 28, 30, 38, 40, 41, 53, 59], "oh2": [18, 50], "119262": 18, "763239": 18, "477047": 18, "0x7f8796cb5450": 18, "g2": [18, 50], "ph3": 18, "p2": [18, 28, 59], "ch3cho": 18, "h2coh": 18, "ochcho": 18, "c3h9c": 18, "ch3cof": 18, "ch3ch2och3": 18, "hcooh": [18, 46], "hccl3": 18, "hocl": 18, "sh2": 18, "c2h2": 18, "c4h4nh": 18, "ch3sch3": 18, "sih2_s3b1d": 18, "ch3sh": 18, "ch3co": 18, "clf3": 18, "sih4": 18, "c2h6choh": 18, "ch2nhch2": 18, "isobuten": 18, "hco": [18, 46], "bicyclobutan": 18, "lif": 18, "c2h6": 18, "cn": 18, "clno": 18, "sif4": 18, "h3cnh2": 18, "methylenecyclopropan": 18, "ch3ch2oh": 18, "nacl": 18, "ch3cl": 18, "ch3sih3": 18, "alf3": 18, "c2h3": 18, "clf": 18, "pf3": 18, "ph2": 18, "ch3cn": 18, "cyclobuten": 18, "ch3ono": 18, "sih3": 18, "c3h6_d3h": 18, "NO": 18, "tran": 18, "butan": 18, "h2cchcl": 18, "lih": 18, "nh2": 18, "ch": [18, 38], "ch2och2": 18, "c6h6": 18, "ch3conh2": 18, "cyclobutan": 18, "h2cchcn": 18, "butadien": 18, "h2co": 18, "ch3cooh": 18, "hcf3": 18, "ch3": 18, "cs2": 18, "sih2_s1a1d": 18, "c4h4": 18, "n2h4": 18, "oh": [18, 46], "ch3och3": 18, "c5h5n": 18, "hcl": 18, "ch2_s1a1d": 18, "ch3ch2sh": 18, "ch3no2": 18, "bcl3": 18, "c4h4o": 18, "ch3o": [18, 46], "ch3oh": [18, 46], "c3h7cl": 18, "isobutan": 18, "ccl4": 18, "ch3ch2o": 18, "h2cchf": 18, "c3h7": 18, "c2h4": 18, "nccn": 18, "s2": [18, 28, 59], "alcl3": 18, "sicl4": 18, "sio": 18, "c3h4_d2d": 18, "cof2": 18, "butyn": 18, "c2h5": 18, "bf3": 18, "n2o": 18, "f2o": 18, "so2": 18, "h2ccl2": 18, "cf3cn": 18, "hcn": 18, "c2h6nh": 18, "oc": 18, "clo": 18, "c3h8": 18, "nh": 18, "c2f4": 18, "nf3": 18, "ch2_s3b1d": 18, "ch3ch2cl": 18, "ch3cocl": 18, "nh3": 18, "c3h9n": 18, "cf4": 18, "c3h6_c": 18, "si2h6": 18, "hcooch3": [18, 46], "cch": 18, "si2": 18, "c2h6so": 18, "c5h8": 18, "h2cf2": 18, "li2": 18, "ch2sch2": 18, "c2cl4": 18, "c3h4_c3v": 18, "ch3coch3": 18, "f2": [18, 28, 59], "ch4": 18, "h2cco": 18, "ch3ch2nh2": 18, "n2": 18, "cl2": 18, "h2o2": 18, "na2": 18, "beh": 18, "c3h4_c2v": 18, "no2": 18, "orthorhomb": 18, "iron": [18, 21], "fe2": 18, "87": [18, 46, 50], "435": [18, 50], "0x7f8796d676d0": 18, "0x7f8796ea14d0": 18, "cu_orthorhomb": 18, "0x7f8797230f50": 18, "cu_cub": 18, "0x7f879736ea50": 18, "mani": [18, 21, 23, 28, 30, 31, 32, 33, 34, 36, 38, 39, 40, 41, 49, 52, 53, 59, 61], "easier": [18, 28, 30, 34, 35, 36, 38, 39, 40, 49, 52, 59, 61], "few": [18, 19, 23, 29, 31, 32, 34, 35, 36, 37, 38, 40, 48, 57, 59, 60], "side": [18, 38], "1z": 18, "0x7f879984ee10": 18, "2x2x3": 18, "possibl": [18, 28, 30, 32, 36, 37, 40, 49, 53, 59], "twice": [18, 28, 33, 53, 59], "thrice": 18, "top": [18, 31, 32, 39, 49, 59, 61], "ontop": 18, "90x": 18, "0x7f879aa51050": 18, "tag": [18, 48, 49, 57, 60], "go": [18, 19, 32, 34, 36, 39, 40, 41, 46, 48, 49, 52, 57, 60, 61], "been": [18, 19, 34, 35, 37, 40, 46, 48, 49, 52, 53, 57, 60], "summaris": 18, "mechan": [18, 19, 32, 40, 46], "dynam": [18, 47], "degre": [18, 28, 41, 46, 59], "freedom": [18, 46], "directli": [18, 27, 28, 30, 35, 36, 37, 38, 41, 46, 59], "freez": 18, "atoms_obj": 18, "mask": [18, 39], "won": [18, 38, 39], "similar": [18, 28, 29, 33, 34, 36, 37, 38, 39, 40, 41, 48, 57, 59, 60], "fixbonglength": 18, "fixedlin": 18, "fixedplan": 18, "come": [18, 21, 34, 35, 36, 41, 49, 53, 61], "handi": 18, "molecular": [18, 21, 47], "graphic": [18, 30, 40, 59], "interfac": [18, 44, 52], "line": [18, 28, 30, 33, 34, 48, 49, 57, 59, 60, 61], "beyond": [18, 34, 36, 39, 40, 41], "scope": [18, 34, 39, 40, 52], "help": [18, 23, 28, 32, 34, 35, 37, 40, 41, 51, 52, 53, 59], "abil": [19, 41, 53, 54], "At": [19, 32, 44, 49, 61], "fundament": [19, 39, 52], "level": [19, 28, 31, 35, 38, 39, 46, 52, 59], "That": [19, 28, 46, 59], "classic": [19, 27], "leonard": 19, "jone": 19, "implment": 19, "act": [19, 33], "black": [19, 30, 59], "instanc": [19, 28, 33, 34, 59], "quatum": 19, "abinit": 19, "primari": [19, 35], "lowest": 19, "rs": 19, "linspac": [19, 29, 30, 31, 33, 34, 38, 39, 41, 50, 59], "set_dist": [19, 50], "append": [19, 28, 34, 35, 36, 37, 38, 39, 40, 41, 50, 59], "scienc": [19, 20, 24, 31, 32, 35, 41, 44, 52, 53, 59], "meant": [19, 50], "combin": [19, 23, 29, 32, 36, 40, 41, 52, 59], "separ": [19, 29, 35, 36, 37, 38, 39, 40, 46, 59], "rxn": [19, 46], "product": [19, 31, 52, 59], "reactant": 19, "chanc": 19, "quasinewton": 19, "nice": [19, 34, 35, 40], "e_rxn": 19, "veri": [19, 28, 29, 31, 32, 34, 35, 36, 37, 38, 39, 41, 45, 48, 49, 52, 53, 57, 59, 60, 61], "real": [19, 28, 31, 32, 34, 35, 40, 41, 45, 47, 52, 53, 59], "285": [19, 50], "8261": 19, "physic": [19, 27, 32, 35, 52, 53], "howev": [19, 24, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 46, 47, 52, 53, 59], "fast": [19, 23, 29, 36, 59], "principl": [19, 21, 36, 37, 39, 41], "behind": [19, 33, 34], "supercomput": [19, 48, 52, 60], "futur": [19, 21, 24, 48, 52, 53, 57, 60], "true_valu": 19, "varieti": [19, 36], "nativ": 19, "keyword": [19, 29, 30, 32, 40, 49, 61], "pars": 19, "exchang": [19, 32, 48, 49, 57, 60, 61], "correl": [19, 32, 39, 40, 48, 49, 57, 60, 61], "nband": [19, 48, 57, 60], "properti": [19, 27, 29, 30, 48, 57, 59, 60], "membership": [20, 40], "qualit": [20, 40], "increasingli": [20, 35], "popular": [20, 21, 36], "context": [20, 32, 53], "llm": [20, 52], "speech": 20, "simpler": 20, "difficulti": 21, "topic": [21, 24, 28, 32, 45, 52, 53, 59], "kitchin": [21, 27], "hohenberg": 21, "ground": [21, 27, 48, 57, 60], "variat": [21, 46], "3n": 21, "trial": 21, "wave": [21, 48, 57, 60], "extern": [21, 27, 28, 53, 59], "map": [21, 30, 36, 37, 40, 59], "noninteract": 21, "effect": [21, 27, 32, 38, 45], "led": [21, 52], "develop": [21, 23, 32, 44, 53], "self": [21, 28, 48, 49, 52, 53, 57, 59, 60, 61], "particl": 21, "frac": [21, 33, 34, 36, 37, 38, 39, 40, 41], "triangledown": 21, "v_": 21, "eff": 21, "epsilon_j": 21, "phi_j": [21, 40], "mid": 21, "depend": [21, 27, 33, 34, 36, 37, 38, 39, 40], "eq": 21, "orbit": 21, "sum_": [21, 27, 36, 40], "till": 21, "epsilon": [21, 33, 38, 40], "literatur": [21, 34, 52, 53], "across": [21, 27, 29, 49, 53, 59, 61], "lda": [21, 49, 61], "analog": 21, "jacob": 21, "ladder": 21, "trend": 21, "nonloc": 21, "systemat": [21, 37], "deloc": 21, "uniform": [21, 29, 30, 59], "fa": 21, "rpbe": 21, "revpb": 21, "meta": 21, "upon": 21, "kinet": 21, "hybrid": [21, 52, 53], "semiloc": 21, "fulli": [21, 52], "pbe0": 21, "hse06": 21, "john": [21, 34], "deal": [21, 28, 35, 37, 39, 40, 41, 59], "highli": [21, 28, 30, 32, 36, 37, 39, 40, 52, 59], "contribut": [21, 32, 33, 52, 53], "neglig": 21, "valenc": 21, "kind": [21, 31, 35, 36, 37, 59], "norm": [21, 31, 34, 36, 38, 39, 40, 41, 59], "conserv": 21, "vanderbilt": 21, "ultrasoft": [21, 48, 57, 60], "constitut": 21, "cobalt": 21, "nickel": 21, "down": [21, 49, 53, 61], "vice": [21, 37], "versa": [21, 37], "unpair": 21, "singlet": 21, "triplet": 21, "moment": 21, "sensit": [21, 40, 41], "essenti": [21, 28, 33, 35, 39, 40, 48, 49, 57, 59, 60], "serv": [22, 53], "algebra": [22, 28, 37], "notat": 22, "eigenvalu": [22, 36], "eigenvector": [22, 36], "hamiltonian": 22, "placehold": 22, "linu": 23, "torvald": 23, "unix": 23, "maco": 23, "internet": [23, 32], "freeli": 23, "issu": [23, 27, 36, 38, 41, 44, 49, 53, 61], "complic": [23, 31, 59], "master": [23, 28, 59], "edit": [23, 27, 30, 50, 59], "stand": [23, 48, 57, 60], "insid": [23, 49, 61], "beneath": 23, "kept": 23, "slash": 23, "tmp": 23, "man": 23, "press": 23, "doesn": [23, 28, 34, 39, 48, 57, 59, 60], "hidden": [23, 30, 36, 37, 59], "tidl": 23, "backup": 23, "mkdir": [23, 49, 61], "thesi": 23, "nano": [23, 49, 52], "draft": 23, "ctrl": 23, "question": [23, 44, 52, 53], "care": [23, 28, 38, 59], "recycl": [23, 35, 53], "rm": 23, "shell": 23, "fish": 23, "strung": 23, "togeth": [23, 28, 30, 33, 52, 59], "rc": 23, "tell": [23, 28, 32, 34, 35, 37, 38, 40, 49, 52, 59, 61], "shortcut": 23, "secur": 23, "putti": 23, "sent": 23, "connect": [23, 32, 36, 40], "big": [23, 28, 32, 37, 59], "visit": 23, "instruct": [23, 27, 49, 51, 52, 53, 61], "educ": [23, 52], "compris": 24, "field": [24, 27, 31, 32, 36, 48, 49, 52, 54, 57, 59, 60, 61], "rapidli": 24, "evolv": [24, 35], "overfit": [24, 34, 39], "underfit": [24, 34], "orient": [24, 28, 44], "languag": [24, 28, 32, 52, 59], "foundat": [24, 33], "area": [24, 30, 32, 37, 53, 59], "hu": [27, 50], "updat": [27, 40, 49, 50, 52, 53], "02": [27, 36, 40, 46, 50, 61], "nnff": 27, "bdqm": [27, 28, 50, 59], "symmetri": 27, "finger": [27, 50], "behler": [27, 50], "parrnello": [27, 50], "nn": [27, 50], "pole": [27, 50], "singlenn": 27, "paper": [27, 46, 50, 53], "gmp": 27, "arxiv": [27, 32, 50], "ab": [27, 28, 30, 34, 40, 47, 50, 59], "2102": [27, 50], "02390": [27, 50], "utm_sourc": [27, 50], "feedburn": [27, 50], "utm_medium": [27, 50], "feed": [27, 32, 35, 50], "utm_campaign": [27, 50], "253a": [27, 50], "252fqsxk": [27, 50], "2528excitingad": [27, 50], "2521": [27, 50], "2529": [27, 50], "electorn": 27, "viabl": 27, "overcom": [27, 37, 38, 39], "yet": [27, 36], "univers": [27, 35], "proven": 27, "parrinello": 27, "engin": [27, 29, 35, 40, 52, 53, 59], "2015": 27, "construct": [27, 33, 36, 37, 38, 40], "tutori": [27, 30, 59], "review": [27, 31, 44, 52, 59], "intern": 27, "journal": [27, 45], "115": [27, 50], "1032": [27, 50], "1050": [27, 50], "doi": [27, 32], "1002": [27, 50], "qua": 27, "24890": 27, "born": 27, "oppenheim": 27, "dictat": 27, "nuclear": 27, "coordin": [27, 28, 50, 52, 59], "charg": 27, "mathbf": 27, "main": [27, 30, 36, 38, 40, 41, 49, 52, 53, 59, 61], "assumpt": [27, 34, 35, 38, 39, 40], "partit": 27, "design": [27, 30, 44, 52, 53, 54, 59], "breifli": 27, "sf": 27, "mainli": [27, 28, 59], "lei": 27, "2021": [27, 46], "translat": [27, 28, 59], "euclidean": [27, 28, 36, 39, 40, 59], "undesir": 27, "resolv": 27, "invari": 27, "permut": 27, "bodi": 27, "radiu": [27, 40], "describv": 27, "angular": [27, 50], "express": [27, 29, 31, 36, 59], "account": [27, 35, 36, 38, 46, 48, 49, 50, 53, 57, 60, 61], "among": 27, "column": [27, 29, 31, 32, 34, 35, 36, 40, 41, 46, 59], "whose": [27, 28, 48, 57, 59, 60], "regardless": [27, 28, 52, 59], "probe": [27, 54], "mcsh": [27, 50], "expans": 27, "mu_": 27, "abc": 27, "hat": [27, 41], "rho": 27, "s_": 27, "g_": [27, 38], "substack": 27, "den": 27, "surroud": 27, "central": [27, 54], "g_i": 27, "gen": 27, "bias": [27, 50], "molcul": 27, "schemat": [27, 34], "liu": 27, "m": [27, 28, 29, 30, 33, 36, 37, 38, 40, 46, 49, 59], "2020": [27, 61], "transfer": 27, "124": [27, 50], "17811": 27, "17818": 27, "1021": 27, "ac": [27, 46], "jpcc": 27, "0c04225": 27, "magic": [28, 59], "pytext": [28, 59], "nlp": [28, 59], "special": [28, 31, 37, 59], "math": [28, 33, 38, 59], "everyth": [28, 59], "namespac": [28, 59], "collis": [28, 59], "sin": [28, 30, 31, 50, 59], "gluttoni": [28, 59], "alias": [28, 59], "allevi": [28, 38, 59], "isn": [28, 37, 40, 41, 59], "dir": [28, 59], "__doc__": [28, 59], "__file__": [28, 59], "__loader__": [28, 59], "__name__": [28, 59], "__package__": [28, 59], "__spec__": [28, 59], "aco": [28, 59], "acosh": [28, 59], "asin": [28, 59], "asinh": [28, 59], "atan": [28, 59], "atan2": [28, 59], "atanh": [28, 59], "ceil": [28, 59], "copysign": [28, 59], "cosh": [28, 59], "erf": [28, 59], "erfc": [28, 59], "exp": [28, 31, 33, 34, 36, 38, 39, 40, 41, 59], "expm1": [28, 59], "fab": [28, 59], "factori": [28, 59], "floor": [28, 59], "fmod": [28, 59], "frexp": [28, 59], "fsum": [28, 59], "gcd": [28, 59], "hypot": [28, 59], "inf": [28, 31, 59], "isclos": [28, 34, 50, 59], "isfinit": [28, 35, 40, 41, 59], "isinf": [28, 59], "isnan": [28, 59], "ldexp": [28, 59], "lgamma": [28, 59], "log10": [28, 29, 50, 59], "log1p": [28, 59], "log2": [28, 59], "modf": [28, 59], "nan": [28, 59], "pow": [28, 59], "radian": [28, 59], "remaind": [28, 59], "sinh": [28, 59], "sqrt": [28, 34, 35, 36, 40, 41, 59], "tan": [28, 59], "tanh": [28, 50, 59], "tau": [28, 59], "trunc": [28, 59], "doc": [28, 30, 31, 52, 53, 59], "incomplet": [28, 53, 59], "incorrect": [28, 37, 40, 59], "doubt": [28, 59], "consult": [28, 52, 59], "descript": [28, 40, 59], "arc": [28, 59], "cosin": [28, 59], "measur": [28, 31, 32, 33, 40, 52, 53, 59], "invers": [28, 29, 36, 37, 38, 41, 46, 49, 59, 61], "hyperbol": [28, 59], "sine": [28, 59], "tangent": [28, 36, 59], "sign": [28, 37, 59], "smallest": [28, 36, 59], "magnitud": [28, 59], "On": [28, 59], "platform": [28, 32, 59], "zero": [28, 29, 33, 34, 35, 37, 38, 40, 46, 59], "angl": [28, 41, 50, 59], "complementari": [28, 59], "avoid": [28, 32, 35, 59], "valueerror": [28, 29, 59], "neg": [28, 59], "largest": [28, 34, 35, 36, 59], "mantissa": [28, 59], "expon": [28, 59], "seq": [28, 59], "ieee": [28, 59], "754": [28, 59], "divisor": [28, 59], "rel_tol": [28, 59], "09": [28, 46, 59], "abs_tol": [28, 59], "otherwis": [28, 59], "must": [28, 29, 33, 38, 46, 50, 51, 52, 59], "least": [28, 29, 32, 34, 36, 38, 49, 52, 53, 59], "toler": [28, 40, 59], "anyth": [28, 37, 38, 39, 59], "themselv": [28, 33, 59], "neither": [28, 59], "nor": [28, 59], "logarithm": [28, 59], "fraction": [28, 36, 59], "carri": [28, 59], "closest": [28, 36, 38, 39, 40, 59], "exactli": [28, 29, 33, 37, 39, 40, 41, 59], "halfwai": [28, 59], "squar": [28, 29, 33, 34, 36, 38, 59], "truncat": [28, 40, 59], "toward": [28, 40, 44, 52, 53, 59], "__trunc__": [28, 59], "718281828459045": [28, 59], "141592653589793": [28, 59], "283185307179586": [28, 59], "dynload": [28, 59], "cpython": [28, 59], "37m": [28, 59], "docstr": [28, 59], "unhelp": [28, 59], "__abs__": [28, 59], "__add__": [28, 59], "__bool__": [28, 59], "__divmod__": [28, 59], "divmod": [28, 59], "__eq__": [28, 59], "__float__": [28, 59], "__floordiv__": [28, 59], "__format__": [28, 59], "format_spec": [28, 59], "__ge__": [28, 59], "__getattribute__": [28, 59], "getattr": [28, 59], "__getnewargs__": [28, 59], "__gt__": [28, 59], "__hash__": [28, 59], "hash": [28, 59], "__int__": [28, 59], "__le__": [28, 59], "__lt__": [28, 59], "__mod__": [28, 59], "__mul__": [28, 59], "__ne__": [28, 59], "__neg__": [28, 59], "__pos__": [28, 59], "__pow__": [28, 59], "mod": [28, 59], "__radd__": [28, 59], "__rdivmod__": [28, 59], "__repr__": [28, 59], "repr": [28, 59], "__rfloordiv__": [28, 59], "__rmod__": [28, 59], "__rmul__": [28, 59], "__round__": [28, 59], "ndigit": [28, 59], "round": [28, 39, 59], "__rpow__": [28, 59], "__rsub__": [28, 59], "__rtruediv__": [28, 59], "__str__": [28, 59], "__sub__": [28, 59], "__truediv__": [28, 59], "as_integer_ratio": [28, 59], "ratio": [28, 36, 40], "denomin": [28, 59], "overflowerror": [28, 59], "conjug": [28, 59], "complex": [28, 29, 33, 35, 38, 39, 40, 41, 52, 59], "hex": [28, 30, 59], "hexadecim": [28, 59], "represent": [28, 36, 40, 46, 59], "0x1": [28, 59], "999999999999ap": [28, 59], "14159": [28, 59], "921f9f01b866ep": [28, 59], "is_integ": [28, 59], "__getformat__": [28, 59], "typestr": [28, 59], "builtin": [28, 59], "probabl": [28, 31, 34, 37, 38, 39, 40, 41, 59], "doubl": [28, 31, 59], "suit": [28, 35, 36, 59], "whichev": [28, 39, 59], "unknown": [28, 59], "endian": [28, 59], "__set_format__": [28, 59], "fmt": [28, 35, 59], "latter": [28, 59], "underli": [28, 39, 40, 41, 59], "realiti": [28, 59], "overrid": [28, 59], "affect": [28, 32, 34, 59], "binari": [28, 35, 36, 37, 41, 59], "fromhex": [28, 59], "ffffp10": [28, 59], "2047": [28, 59], "984375": [28, 59], "0x1p": [28, 59], "1074": [28, 59], "5e": [28, 59], "324": [28, 50, 59], "static": [28, 59], "__new__": [28, 59], "arg": [28, 31, 38, 59], "kwarg": [28, 41, 59], "signatur": [28, 59], "descriptor": [28, 50, 59], "imaginari": [28, 59], "cannot": [28, 33, 35, 37, 38, 39, 40, 44, 52, 59], "assert": [28, 59], "break": [28, 32, 39, 44, 49, 52, 53, 59, 61], "del": [28, 59], "elif": [28, 35, 37, 40, 41, 59], "exec": [28, 59], "global": [28, 30, 36, 59], "yield": [28, 32, 33, 34, 59], "awar": [28, 36, 45, 59], "boolean": [28, 29, 59], "b1": [28, 59], "b2": [28, 59], "bool": [28, 59], "0j": [28, 59], "substr": [28, 59], "rld": [28, 59], "str1": [28, 59], "str2": [28, 59], "str3": [28, 59], "concaten": [28, 59], "1j": [28, 59], "without": [28, 29, 34, 36, 38, 40, 49, 59], "str1str2str3": [28, 59], "altern": [28, 38, 41, 52, 59], "intuit": [28, 34, 35, 36, 37, 39, 40, 59], "s3": [28, 59], "value1": [28, 59], "value2": [28, 59], "1415": [28, 59], "syntax": [28, 29, 30, 59], "nest": [28, 29, 50, 59], "nested_list": [28, 59], "stop": [28, 29, 59], "d": [28, 29, 32, 35, 36, 40, 50, 53, 59], "technic": [28, 32, 33, 36, 44, 47, 53, 59], "jargon": [28, 32, 59], "mutabl": [28, 59], "immut": [28, 59], "typeerror": [28, 59], "traceback": [28, 29, 59], "recent": [28, 29, 32, 52, 59], "last": [28, 29, 33, 35, 38, 40, 41, 59], "9734b1daa940": [28, 59], "item": [28, 59], "two_numb": [28, 59], "key1": [28, 59], "param": [28, 59], "parameter1": [28, 59], "parameter2": [28, 59], "parameter3": [28, 59], "entri": [28, 35, 36, 40, 59], "parameter4": [28, 59], "subdict_kei": [28, 59], "val": [28, 31, 59], "__________": [28, 59], "scwp": [28, 59], "scientif": [28, 30, 52], "word": [28, 36, 53, 59], "sometim": [28, 29, 30, 33, 34, 35, 37, 40, 41, 49, 59, 61], "over": [28, 34, 36, 37, 38, 39], "enumer": [28, 35, 37, 38, 39, 40, 51, 59], "idx": [28, 59], "id_x": [28, 59], "compact": [28, 59], "xx": [28, 37, 39, 59], "x0": [28, 59], "xi": [28, 29, 37, 38, 39, 40, 59], "definit": [28, 36, 37, 38, 40, 59], "indent": [28, 59], "func0": [28, 59], "func1": [28, 59], "__main__": [28, 59], "xsquar": [28, 59], "myfunc": [28, 59], "debug": [28, 44, 50, 59], "343": [28, 50, 59], "advanc": [28, 31, 40, 59], "multiarg": [28, 59], "matlab": [28, 29], "suck": [28, 59], "rule": [28, 29, 31, 37, 59], "thank": [28, 59], "f1": [28, 59], "attribut": [28, 34, 59], "denot": [28, 59], "underscor": [28, 59], "__init__": [28, 59], "invok": [28, 59], "datamodel": [28, 59], "cartesian": [28, 59], "dx": [28, 31, 59], "2d": [28, 38, 41, 59], "p1": [28, 59], "000000": [28, 30, 46, 59], "250000": [28, 59], "500000": [28, 59], "expert": [28, 44, 59], "encount": [28, 40, 44, 59], "pointlist": [28, 59], "unneccesarili": [28, 59], "pin": [28, 59], "IT": [28, 59], "__class__": [28, 59], "__delattr__": [28, 59], "__dict__": [28, 59], "__dir__": [28, 59], "__init_subclass__": [28, 59], "__module__": [28, 59], "__reduce__": [28, 59], "__reduce_ex__": [28, 59], "__setattr__": [28, 59], "__sizeof__": [28, 59], "__subclasshook__": [28, 59], "__weakref__": [28, 59], "__contains__": [28, 59], "__delitem__": [28, 59], "__getitem__": [28, 59], "__iadd__": [28, 59], "__imul__": [28, 59], "__iter__": [28, 59], "__len__": [28, 59], "__reversed__": [28, 59], "__setitem__": [28, 59], "clear": [28, 36, 40, 41, 52, 53, 59], "extend": [28, 39, 46, 59], "sort": [28, 32, 36, 39, 59], "pl1": [28, 59], "unexpectedli": [28, 44, 59], "wise": 28, "good": [28, 30, 32, 33, 34, 35, 36, 40, 59], "wrong": [28, 46, 59], "easili": [28, 29, 31, 34, 35, 36, 37, 39, 40, 41, 52, 59], "better": [28, 30, 35, 36, 38, 41, 59], "readabl": [28, 59], "maintan": [28, 59], "troubleshoot": [28, 59], "mymodul": [28, 59], "my_vari": [28, 59], "my_funct": [28, 59], "myclass": [28, 59], "set_vari": [28, 59], "new_valu": [28, 59], "get_vari": [28, 59], "overwrit": [28, 59], "weak": [28, 36, 40, 59], "jagritisahoo": [28, 59], "coursework": [28, 59], "third_sem": [28, 59], "python_intro": [28, 59], "myvar": [28, 59], "my_class": [28, 59], "81": [28, 46, 50, 59], "c32f93e4dfa0": [28, 59], "keyerror": [28, 59], "6494c0fd3f22": [28, 59], "abort": [28, 59], "occur": [28, 35, 53, 59], "myfunct": [28, 59], "int_arg": [28, 59], "67483f723860": [28, 59], "61": [28, 36, 50, 59], "728ee3a9d065": [28, 59], "catch": [28, 59], "notdefin": [28, 59], "caught": [28, 59], "nameerror": [28, 59], "9b2d40d19c87": [28, 59], "jrjohansson": [28, 30, 59], "www": [28, 30, 41, 52, 59], "offici": [28, 30, 52, 59], "web": [28, 30, 32, 59], "page": [28, 30, 59], "pep": [28, 59], "0008": [28, 59], "style": [28, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 59], "guid": [28, 30, 59], "greenteapress": [28, 59], "thinkpython": [28, 59], "back": [29, 34, 35, 36, 40, 41, 59], "dedic": [29, 59], "arang": [29, 30, 31, 37, 39, 40, 41, 59], "ndarrai": [29, 50, 59], "e1f336250f69": [29, 59], "invalid": [29, 59], "liter": [29, 35, 59], "dtype": [29, 35, 40, 41, 50, 59], "effici": [29, 36, 37, 39, 40, 41, 59], "endpoint": [29, 50, 59], "logspac": [29, 50, 59], "mgrid": [29, 59], "meshgrid": [29, 30, 37, 38, 39, 59], "rand": [29, 31, 59], "distribut": [29, 31, 34, 36, 37, 38, 39, 40, 52, 59], "randn": [29, 31, 59], "ey": [29, 46, 59], "71428571": [29, 59], "42857143": [29, 59], "14285714": [29, 59], "85714286": [29, 59], "57142857": [29, 59], "28571429": [29, 59], "15443469": [29, 59], "64158883": [29, 59], "5443469": [29, 59], "41588834": [29, 59], "215": [29, 50, 59], "443469": [29, 59], "464": [29, 50, 59], "15888336": [29, 59], "33333333333333337": [29, 59], "6666666666666666": [29, 59], "3333333333333333": [29, 59], "6666666666666665": [29, 59], "333333333333333": [29, 59], "rand_uniform": [29, 59], "rand_norm": [29, 59], "48012987": [29, 59], "47237413": [29, 59], "69472084": [29, 59], "96773638": [29, 59], "90948751": [29, 59], "98234481": [29, 59], "04180248": [29, 59], "35583907": [29, 59], "86649923": [29, 59], "74037594": [29, 59], "44313288": [29, 59], "1305822": [29, 59], "27459825": [29, 59], "6022369": [29, 59], "80975182": [29, 59], "92298721": [29, 59], "21303185": [29, 59], "75858636": [29, 59], "annoi": [29, 59], "inconsist": [29, 40, 53, 59], "tsv": [29, 59], "tab": [29, 59], "head": [29, 35, 46, 59], "stockholm_td_adj": [29, 59], "dat": [29, 59], "1800": [29, 59], "genfromtxt": [29, 59], "77431": [29, 59], "savetxt": [29, 59], "m1": [29, 59], "certain": [29, 48, 49, 57, 59, 60], "bracket": [29, 59], "ommit": [29, 59], "whole": [29, 39, 40, 52, 59], "row": [29, 33, 34, 35, 40, 41, 46, 59], "48592621526273416": [29, 59], "39320197": [29, 59], "48592622": [29, 59], "36324379": [29, 59], "01187931": [29, 59], "16797644": [29, 59], "59601437": [29, 59], "00146124": [29, 59], "63602386": [29, 59], "34178976": [29, 59], "26215253": [29, 59], "90135028": [29, 59], "65320253": [29, 59], "53819379": [29, 59], "85305548": [29, 59], "15992202": [29, 59], "12604362": [29, 59], "87630864": [29, 59], "81996614": [29, 59], "84820733": [29, 59], "83141949": [29, 59], "86420059": [29, 59], "24237393": [29, 59], "82042579": [29, 59], "46236983": [29, 59], "72346029": [29, 59], "15369664": [29, 59], "290678": [29, 59], "70923425": [29, 59], "72081884": [29, 59], "79705541": [29, 59], "41168725": [29, 59], "8154973": [29, 59], "22475208": [29, 59], "32129672": [29, 59], "36781922": [29, 59], "upper": [29, 30, 31, 59], "extract": [29, 36, 40, 41, 59], "usag": [29, 50, 59], "subr": [29, 59], "58999857": [29, 59], "72976466": [29, 59], "56025706": [29, 59], "03397562": [29, 59], "33914918": [29, 59], "33279598": [29, 59], "row_indic": [29, 59], "66063383": [29, 59], "78185722": [29, 59], "08538858": [29, 59], "50967112": [29, 59], "96025493": [29, 59], "9992953": [29, 59], "81209343": [29, 59], "64494647": [29, 59], "88079298": [29, 59], "35600591": [29, 59], "59912385": [29, 59], "27916972": [29, 59], "0380985": [29, 59], "52180105": [29, 59], "84137092": [29, 59], "99267959": [29, 59], "col_indic": [29, 59], "rememb": [29, 32, 36, 44, 59], "skinni": [29, 59], "fat": [29, 59], "8828413": [29, 59], "95798832": [29, 59], "63045611": [29, 59], "16988725": [29, 59], "00438886": [29, 59], "78269257": [29, 59], "55362746": [29, 59], "00678702": [29, 59], "92757275": [29, 59], "74391061": [29, 59], "26054478": [29, 59], "94333052": [29, 59], "27704329": [29, 59], "62743922": [29, 59], "59401807": [29, 59], "54693468": [29, 59], "briefli": [29, 36, 37, 52, 59], "subtract": [29, 59], "v1": [29, 48, 57, 59, 60], "matric": [29, 31, 33, 36, 40, 59], "80135151": [29, 59], "98493697": [29, 59], "87576621": [29, 59], "15106052": [29, 59], "60270302": [29, 59], "96987393": [29, 59], "75153243": [29, 59], "30212105": [29, 59], "behaviour": [29, 59], "mutipl": [29, 59], "dot": [29, 31, 36, 37, 38, 46, 59], "inv": [29, 59], "det": [29, 59], "linalg": [29, 31, 36, 38, 39, 40, 41, 46, 59], "000000000000001": [29, 59], "statist": [29, 34, 36, 40], "stockholm": [29, 59], "temperatur": [29, 35, 59], "tempeatur": [29, 59], "avg": [29, 40, 59], "hi": [29, 34, 59], "loc": [29, 30, 31, 59], "deviat": [29, 34, 38, 39, 40, 41, 59], "meaningless": [29, 59], "278": [29, 50, 59], "0810699664401": [29, 59], "197109684751585": [29, 59], "stdev": [29, 35, 39, 59], "282271621340573": [29, 59], "59602320966341": [29, 59], "90550041e": [29, 59], "52304633e": [29, 59], "57292945e": [29, 59], "19710968e": [29, 59], "83217058e": [29, 59], "78546190e": [29, 59], "00000000e": [29, 36, 40, 59], "5852023410024356": [29, 59], "495667": [29, 59], "53786811": [29, 59], "62776447": [29, 59], "5308831": [29, 59], "65776438": [29, 59], "5564225": [29, 59], "67219267": [29, 59], "55226669": [29, 59], "63599215": [29, 59], "20205199": [29, 59], "43400518": [29, 59], "85094382": [29, 59], "90902935": [29, 59], "53537367": [29, 59], "16920129": [29, 59], "86653719": [29, 59], "18185072": [29, 59], "8349055": [29, 59], "65254124": [29, 59], "02925621": [29, 59], "91085185": [29, 59], "53407727": [29, 59], "9578823": [29, 59], "48133358": [29, 59], "54450772": [29, 59], "94190815": [29, 59], "18285163": [29, 59], "68145727": [29, 59], "80588745": [29, 59], "52923329": [29, 59], "07569367": [29, 59], "87914578": [29, 59], "70196062": [29, 59], "11497311": [29, 59], "95688812": [29, 59], "83611522": [29, 59], "underlai": [29, 59], "govern": [29, 59], "flatten": [29, 59], "pitfal": [29, 59], "20205199044075084": [29, 59], "9090293527816719": [29, 59], "4340051832902998": [29, 59], "realli": [29, 30, 38, 41, 59], "acopi": [29, 59], "ambigu": [29, 59], "member": [29, 40, 48, 49, 52, 53, 57, 59, 60], "advantag": [30, 34, 36, 37, 40, 59], "easi": [30, 33, 35, 36, 39, 40, 41, 59], "latex": [30, 59], "pdf": [30, 31, 41, 59], "ep": [30, 40, 59], "pgf": [30, 59], "galleri": [30, 59], "programmat": [30, 59], "bless": [30, 40, 41, 59], "curs": [30, 59], "plotli": [30, 59], "bokeh": [30, 59], "workhors": [30, 59], "oreint": [30, 59], "harder": [30, 59], "easiest": [30, 59], "familiar": [30, 32, 34, 35, 36, 52, 59], "relat": [30, 31, 35, 38, 40, 48, 52, 57, 59, 60], "limit": [30, 31, 33, 40, 59], "implicitli": [30, 40, 59], "add_ax": [30, 59], "left": [30, 33, 34, 36, 38, 39, 40, 46, 59], "set_xlabel": [30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 59], "set_ylabel": [30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 46, 59], "set_titl": [30, 33, 34, 36, 37, 38, 39, 40, 41, 59], "axes1": [30, 59], "axes2": [30, 59], "inset": [30, 59], "insert": 30, "life": [30, 59], "nrow": [30, 59], "ncol": [30, 59], "tight_layout": [30, 35, 40, 59], "ration": [30, 59], "resolut": [30, 33, 35, 59], "plan": [30, 52, 53, 59], "manuscript": [30, 59], "worthwhil": [30, 40, 59], "OR": [30, 59], "raster": [30, 59], "jpg": [30, 59], "great": [30, 34, 40, 59], "afterward": [30, 59], "inkscap": [30, 59], "adob": [30, 59], "illustr": [30, 40, 59], "300": [30, 33, 34, 38, 50, 59], "curve1": [30, 59], "curve2": [30, 59], "right": [30, 33, 34, 36, 38, 39, 40, 41, 46, 53, 59], "corner": [30, 35, 59], "transpar": [30, 59], "marker": [30, 33, 34, 40, 59], "linestyl": [30, 38, 59], "ls": [30, 37, 38, 39, 59], "lw": [30, 31, 46, 59], "red": [30, 59], "1155dd": [30, 59], "rgb": [30, 59], "bluish": [30, 59], "15cc55": [30, 59], "greenish": [30, 59], "dash": [30, 59], "blue": [30, 39, 59], "triangl": [30, 59], "ok": [30, 59], "circl": [30, 37, 38, 59], "linestyp": [30, 59], "green": [30, 59], "purpl": [30, 59], "markers": [30, 40, 59], "markerfacecolor": [30, 33, 34, 59], "yellow": [30, 59], "markeredgewidth": [30, 59], "markeredgecolor": [30, 40, 59], "set_xlim": [30, 33, 35, 38, 39, 59], "set_ylim": [30, 38, 39, 59], "tight": [30, 59], "automaticlli": [30, 59], "tighten": [30, 59], "tick": [30, 59], "onlin": [30, 53, 59], "dual": [30, 35, 59], "twinx": [30, 59], "twini": [30, 59], "ax1": [30, 59], "fontsiz": [30, 35, 59], "get_yticklabel": [30, 59], "set_color": [30, 59], "ax2": [30, 59], "xy": [30, 36, 38, 59], "xytext": [30, 59], "arrowprop": [30, 59], "facecolor": [30, 38, 59], "shrink": [30, 59], "encod": [30, 35, 59], "predefin": [30, 59], "straightforward": [30, 59], "pre": [30, 32, 53, 59], "cookbook": [30, 59], "show_colormap": [30, 59], "pcolor": [30, 59], "transpos": [30, 34], "perceptu": [30, 59], "prefer": [30, 34, 49, 52, 53, 59], "greyscal": [30, 59], "colorblind": [30, 59], "peopl": [30, 41, 59], "cook": [30, 59], "phi_ext": [30, 59], "flux_qubit_potenti": [30, 59], "phi_m": [30, 59], "phi_p": [30, 59], "cm": [30, 33, 34, 41, 59], "jet": [30, 59], "rdbu": [30, 38, 59], "viridi": [30, 59], "plasma": [30, 59], "vmin": [30, 35, 36, 59], "vmax": [30, 35, 36, 59], "cb": [30, 59], "colorbar": [30, 36, 59], "cnt": [30, 59], "im": [30, 59], "set_interpol": [30, 59], "bilinear": [30, 59], "treat": [30, 59], "mpimg": [30, 59], "img": [30, 35, 36, 41, 59], "imread": [30, 59], "bug": [30, 44, 59], "histogram": [30, 31, 59], "hist": [30, 31, 34, 35, 37, 38, 41, 46, 59], "ravel": [30, 35, 37, 38, 39, 40, 59], "256": [30, 50, 59], "search": [30, 34, 40, 53, 59], "think": [30, 32, 33, 34, 35, 36, 37, 41, 53, 59], "mpl_toolkit": [30, 35, 59], "mplot3d": [30, 35, 59], "axes3d": [30, 35, 59], "gca": [30, 38, 41, 46, 59], "get_test_data": [30, 59], "plot_surfac": [30, 59], "rstride": [30, 59], "cstride": [30, 59], "cset": [30, 59], "contourf": [30, 37, 39, 59], "zdir": [30, 59], "offset": [30, 59], "set_zlabel": [30, 35, 59], "set_zlim": [30, 59], "tentative_numpy_tutori": [30, 59], "numpy_for_matlab_us": [30, 59], "johanssen": [30, 31, 59], "showcas": [30, 59], "variou": [30, 32, 39, 40, 48, 52, 57, 59, 60], "loria": [30, 59], "fr": [30, 59], "rougier": [30, 59], "teach": [30, 59], "reload_ext": [30, 59], "version_inform": [30, 59], "multidimension": 31, "todai": [31, 59], "stat": [31, 39, 41, 59], "wish": [31, 59], "fourier": [31, 59], "fftpack": [31, 59], "signal": [31, 59], "spars": [31, 36, 41, 59], "ndimag": [31, 59], "sp": [31, 46, 59], "trapezoid": [31, 59], "simpson": [31, 59], "trapz": [31, 59], "simp": [31, 59], "x3": [31, 35, 59], "x3_integr": [31, 59], "x3_trapz": [31, 59], "x3_simp": [31, 59], "displaystyl": [31, 59], "int_a": [31, 59], "tripl": [31, 59], "quad": [31, 59], "dblquad": [31, 59], "tplquad": [31, 59], "x_lower": [31, 59], "x_upper": [31, 59], "abserr": [31, 59], "integrand": [31, 59], "y_lower": [31, 59], "y_upper": [31, 59], "interp1d": [31, 59], "y_mea": [31, 59], "y_real": [31, 59], "bs": [31, 59], "noisi": [31, 37, 38, 39, 59], "linear_interpol": [31, 59], "y_interp1": [31, 59], "cubic_interpol": [31, 59], "y_interp2": [31, 59], "interp": [31, 59], "legend": [31, 33, 34, 38, 40, 41, 50], "maxima": [31, 59], "rather": [31, 34, 36, 37, 39, 40, 41, 54, 59], "introduct": [31, 32, 50, 51, 53, 54], "mathematical_optim": [31, 59], "cg": [31, 59], "x_min": [31, 37, 39, 59], "fsolv": [31, 59], "contin": [31, 59], "sharex": [31, 59], "commul": [31, 59], "distributin": [31, 59], "cdf": [31, 59], "realiz": [31, 32, 41, 59], "stochast": [31, 36, 59], "rv": [31, 41, 59], "poisson": [31, 59], "frequenc": [31, 59], "event": [31, 59], "pmf": [31, 59], "poission": [31, 59], "independ": [31, 33, 35, 36, 52, 59], "null": [31, 59], "hypothesi": [31, 32, 59], "t_statist": [31, 59], "p_valu": [31, 59], "ttest_ind": [31, 59], "equal_var": [31, 59], "ttest_1samp": [31, 59], "solver": [31, 59], "documet": [31, 59], "v_n": [31, 59], "lambda_n": [31, 59], "eigval": [31, 59], "eig": [31, 36, 59], "eval": [31, 53, 59], "evec": [31, 59], "mutipli": [31, 59], "public": [32, 45], "commun": [32, 53], "motiv": 32, "scopu": 32, "quotat": 32, "mark": 32, "wildcard": 32, "exclud": 32, "unwant": 32, "refin": [32, 38, 41, 49, 61], "cite": 32, "particularli": [32, 41], "introductori": 32, "crossref": 32, "metadata": 32, "articl": 32, "citat": [32, 53], "link": [32, 36, 38, 48, 49, 52, 57, 60], "author": 32, "websit": [32, 34, 52, 53], "valuabl": 32, "overview": [32, 53], "branch": [32, 40], "stai": 32, "curat": 32, "citrin": 32, "us3": 32, "subscrib": 32, "014639e57e11aa6a7d2f2e4a8": 32, "id": 32, "60e6d7fee0": 32, "alert": 32, "googl": 32, "scholar": 32, "2023": 32, "danger": 32, "emerg": 32, "claim": 32, "artifici": [32, 37], "intellig": 32, "acceler": 32, "seem": [32, 34, 41], "promis": [32, 52], "miser": [32, 33], "strongli": [32, 37, 44], "ventur": 32, "allur": 32, "strong": 32, "highlight": 32, "perplex": [32, 36], "referenc": [32, 53], "paragraph": 32, "peer": [32, 52, 53], "unfamiliar": [32, 44], "carefulli": 32, "yourself": [32, 34, 37, 44, 52], "mistak": 32, "terribl": [32, 34], "failur": [32, 37, 52], "apolog": 32, "nauseum": 32, "my": 32, "never": [32, 35], "caution": [32, 36], "impact": [32, 40, 45], "factor": [32, 36, 37, 38, 39, 53], "canon": 32, "pna": 32, "famili": 32, "jac": [32, 38], "eigenfactor": 32, "confer": 32, "prestigi": 32, "post": [32, 33, 53], "server": 32, "drink": 32, "firehos": 32, "enter": [32, 49, 61], "overload": 32, "friend": 32, "differenti": [32, 37, 38], "overhead": 32, "deepli": 32, "priorit": 32, "mendelei": 32, "offer": [32, 41, 48, 49, 53, 57, 60], "bibtex": 32, "softwar": [32, 44], "servic": 32, "leverag": 32, "newest": 32, "older": 32, "phy": 32, "rev": 32, "balanc": [32, 34, 37], "vs": [32, 36, 37, 38, 47], "perspect": [32, 36, 38], "hypothes": 32, "explan": 32, "outlin": [32, 53], "could": [32, 33, 34, 35, 36, 38, 40, 41], "conclus": [32, 36], "summari": 32, "appendic": 32, "supplementari": 32, "caption": 32, "tabl": 32, "deep": [32, 41, 44], "dive": 32, "70": [32, 50], "week": [32, 53], "60": [32, 34, 39, 50, 53], "weekli": [32, 52, 53], "aj": [32, 38], "wellendorff": 32, "lundgaard": 32, "m\u00f8gelh\u00f8j": 32, "petzold": 32, "landi": 32, "n\u00f8rskov": 32, "jacobsen": 32, "2012": 32, "bayesian": [32, 34, 40], "1103": 32, "physrevb": 32, "235149": 32, "methodolog": 32, "semiempir": 32, "solid": [32, 34, 48, 57, 60], "adsorptoin": 32, "demonstr": [32, 50, 52], "approach": [32, 34, 35, 37, 38, 39, 40, 41], "fact": [32, 35, 38, 52], "outsid": 32, "establish": [32, 37, 52], "polynomi": [33, 34, 38], "obviou": 33, "audio": 33, "fingerprint": 33, "Of": [33, 40], "gross": 33, "oversimplif": 33, "previous": 33, "y_i": [33, 37, 38, 39, 40], "sum_j": [33, 34, 36, 38, 39, 40], "w_j": [33, 34, 38], "x_": [33, 34, 38], "ij": [33, 34, 36, 38, 40], "epsilon_i": [33, 34, 38], "mu": [33, 39, 40, 41], "saw": [33, 38, 39], "had": [33, 35, 36, 44], "eta": [33, 34, 50], "seek": [33, 36, 40, 52], "idea": [33, 34, 36, 37, 38, 40, 52], "quantifi": [33, 34], "analyt": [33, 34, 52], "forward": [33, 44], "aspect": [33, 52], "parameter": [33, 46], "domain": [33, 53], "spline": 33, "nonparametr": 33, "extrapol": 33, "proper": 33, "spectra": [33, 34], "dure": [33, 40, 52, 53], "plot_styl": [33, 34, 35, 36, 37, 38, 39, 40, 41], "mplstyle": [33, 34, 35, 36, 37, 38, 39, 40, 41], "df": [33, 34, 35, 40, 41], "read_csv": [33, 34], "ethanol_ir": [33, 34], "x_all": [33, 34], "wavenumb": [33, 34], "y_all": [33, 34], "absorb": [33, 34], "x_peak": [33, 34], "475": [33, 34, 50], "575": [33, 34], "y_peak": [33, 34], "straight": [33, 37], "piecewis": 33, "x_i": [33, 36, 40], "x_j": [33, 36, 39], "piecewise_linear": 33, "actual": [33, 34, 36, 37, 39, 40, 41], "clearli": [33, 34, 36, 41, 52, 53], "intercept": [33, 38], "slope": [33, 35], "linear_model": [33, 34, 37], "linearregress": [33, 34], "r2": [33, 34], "yhat": [33, 34, 41], "x_predict": [33, 34], "2650": 33, "3150": 33, "expand": [33, 54], "yhat_predict": 33, "2850": 33, "2900": 33, "x_rbf": 33, "model_rbf": 33, "yhat_rbf": 33, "9987634078177691": 33, "fewer": [33, 41], "9984890582179191": 33, "rout": 33, "enough": [34, 38], "reproduc": [34, 52], "bad": [34, 37, 40], "memor": [34, 39], "perfect": [34, 38, 41, 52], "earlier": [34, 35, 36, 40], "linearli": [34, 37, 38, 39], "curvatur": 34, "With": [34, 46], "four": [34, 52], "eleph": 34, "five": 34, "him": 34, "wiggl": 34, "trunk": 34, "von": 34, "neumann": 34, "criterion": [34, 40], "tradeoff": 34, "bic": [34, 40, 41], "deriv": [34, 36, 38, 39, 40], "conceptu": [34, 36, 37, 44, 47, 54], "ln": [34, 41], "2_e": 34, "sigma_": 34, "critera": [34, 40], "akaik": 34, "aic": 34, "err": [34, 48, 49, 57], "evenli": [34, 37], "polynomial_featur": 34, "liner": 34, "comprehens": [34, 54], "inclus": 34, "x_poli": 34, "lr_poli": 34, "yhat_poli": 34, "bic_poli": 34, "283": [34, 40, 50], "0752960301787": 34, "gaussian_featur": 34, "xk_vec": 34, "xk": 34, "x_gauss": 34, "lr_gauss": 34, "yhat_gauss": 34, "bic_gauss": 34, "896": 34, "252613200568": 34, "correctli": [34, 37, 38], "aikak": 34, "slightli": [34, 36, 38, 39, 40], "challeng": [34, 35, 36, 37, 52, 53, 54], "rigor": 34, "substitut": [34, 49], "sens": [34, 35, 39, 40, 41, 49, 61], "difficult": [34, 37, 39, 40, 52], "imposs": 34, "penal": [34, 37], "sharpli": 34, "penalti": 34, "sum_i": [34, 36, 37, 38], "especi": [34, 35, 36, 40], "greater": [34, 35, 47], "kernel_ridg": 34, "kernelridg": 34, "yhat_krr": 34, "flat": 34, "wors": [34, 41], "assess": [34, 37, 39, 40, 50, 53], "seed": [34, 37, 38, 39, 50], "test_siz": [34, 39, 41], "r2_test": 34, "9816791895375319": 34, "dual_coef_": 34, "coeffici": [34, 40], "984": 34, "nonzero": 34, "ideal": 34, "l_1": [34, 40], "w_i": [34, 38], "shrinkag": 34, "acronym": 34, "l_": [34, 40], "_1": [34, 36], "caus": [34, 40, 49], "borrow": 34, "beta": [34, 38], "unfortun": 34, "pairwis": [34, 38], "rbf_kernel": [34, 38], "coef_": 34, "yhat_lasso": 34, "discard": [34, 37], "tediou": 34, "fortun": [34, 41], "brute": 34, "performac": 34, "optimum": 34, "parameter_rang": 34, "krr_search": 34, "cv": 34, "best_estimator_": 34, "best_score_": 34, "0005555555555555556": 34, "9953287405140007": 34, "000555": 34, "6f": 34, "gridpoint": 34, "clr": [35, 36, 37, 38, 39, 40, 41], "003057": [35, 36, 37, 38, 39, 40, 41], "eaaa00": [35, 36, 37, 38, 39, 40, 41], "4b8b9b": [35, 36, 37, 38, 39, 40, 41], "b3a369": [35, 36, 37, 38, 39, 40, 41], "377117": [35, 36, 37, 38, 39, 40, 41], "1879db": [35, 36, 37, 38, 39, 40, 41], "8e8b76": [35, 36, 37, 38, 39, 40, 41], "f5d580": [35, 36, 37, 38, 39, 40, 41], "002233": [35, 36, 37, 38, 39, 40, 41], "brain": 35, "gain": 35, "read_excel": [35, 40, 41], "impurity_dataset": [35, 40, 41], "xlsx": [35, 40, 41], "is_real_and_finit": [35, 40, 41], "isreal": [35, 40, 41], "all_data": [35, 40, 41], "drop": [35, 36, 37, 40, 41, 46], "date": [35, 40, 41, 52], "numeric_map": [35, 40, 41], "applymap": [35, 40, 41], "real_row": [35, 40, 41], "x_dow": [35, 40, 41], "col": [35, 40, 41], "y_dow": [35, 40, 41], "10297": [35, 40, 41], "297": [35, 50], "impur": 35, "sole": 35, "variant": 35, "x_mnist": [35, 36, 41], "1797": [35, 36, 41], "unravel": 35, "show_imag": [35, 36, 41], "digit_data": [35, 36, 41], "forth": 35, "10k": 35, "phenomena": 35, "exponenti": 35, "cube": 35, "v_d": 35, "moder": 35, "somewhat": [35, 36, 37, 40], "lesser": 35, "phenomenon": 35, "sparsiti": 35, "aris": [35, 37], "simplist": 35, "averag": [35, 40, 52, 53], "guarante": 35, "cluster_std": [35, 37, 38, 39], "3d": 35, "simplest": [35, 40, 41], "titl": [35, 37, 38], "surpris": [35, 41], "middl": 35, "edg": [35, 44], "x1": [35, 39, 40], "reflux": 35, "flow": 35, "363": [35, 50], "769474": 35, "648106": 35, "x2": [35, 39, 40], "tail": 35, "042734": 35, "343551": 35, "bed": 35, "2531": 35, "650693": 35, "571": 35, "295049": 35, "x4": 35, "2462": 35, "787740": 35, "503": 35, "647057": 35, "x5": 35, "401576": 35, "229915": 35, "x6": 35, "105": [35, 50], "252978": 35, "085373": 35, "x7": 35, "54": [35, 46, 50], "301929": 35, "014898": 35, "x8": 35, "drum": 35, "pressur": 35, "617144": 35, "617643": 35, "x9": 35, "condens": 35, "161516": 35, "889529": 35, "x10": 35, "bed1": 35, "dp": 35, "620064": 35, "790575": 35, "x11": 35, "bed2": 35, "297826": 35, "376748": 35, "x12": 35, "bed3": 35, "760801": 35, "500018": 35, "x13": 35, "bed4": 35, "422103": 35, "693002": 35, "x14": 35, "672023": 35, "976839": 35, "x15": 35, "819512": 35, "684090": 35, "x16": 35, "284512": 35, "713857": 35, "x17": 35, "060650": 35, "613390": 35, "x18": 35, "317231": 35, "754447": 35, "x19": 35, "518271": 35, "810075": 35, "x20": 35, "014718": 35, "894118": 35, "x21": 35, "912289": 35, "940277": 35, "x22": 35, "secondari": 35, "concentr": 35, "038943": 35, "147693": 35, "x23": 35, "1887": [35, 50], "386387": 35, "452": [35, 50], "475951": 35, "x24": 35, "605942": 35, "264677": 35, "x25": 35, "trai": 35, "788218": 35, "313940": 35, "x26": 35, "297118": 35, "018735": 35, "x27": 35, "261101": 35, "140908": 35, "x28": 35, "138": [35, 50], "144429": 35, "295254": 35, "x29": 35, "335413": 35, "438166": 35, "x30": 35, "554801": 35, "378714": 35, "x31": 35, "55": [35, 46, 50], "752824": 35, "700494": 35, "x32": 35, "839195": 35, "303496": 35, "x33": 35, "103": [35, 50], "999019": 35, "989058": 35, "x34": 35, "420756": 35, "883768": 35, "x35": 35, "015137": 35, "025845": 35, "x36": 35, "291409": 35, "291106": 35, "x37": 35, "007949": 35, "001319": 35, "x38": 35, "466772": 35, "048953": 35, "x39": 35, "steam": 35, "318070": 35, "788862": 35, "x40": 35, "113": [35, 50], "176332": 35, "190984": 35, "insight": [35, 36, 40, 45], "hard": [35, 38], "interpret": [35, 36, 39], "meaning": 35, "dpi": [35, 38, 40, 46], "ax_list": 35, "n_dimens": 35, "64x64": [35, 36], "4096": 35, "diagon": [35, 37, 40], "seaborn": [35, 41], "mnist_df": 35, "pairplot": 35, "df_dow_clean": 35, "include_column": 35, "bit": [35, 41, 44], "slower": 35, "zoom": [35, 52, 53], "again": [35, 40], "closer": [35, 36, 40, 41], "relationship": [35, 46], "x_col": 35, "y_col": 35, "jp": 35, "jointplot": 35, "particular": [35, 37, 41, 46, 48, 49, 57, 60], "reg": 35, "x_reduc": [35, 36], "corr_mnist": 35, "corrcoef": 35, "corr": 35, "hm": 35, "heatmap": [35, 41], "annot": [35, 36, 41], "2f": [35, 40], "annot_kw": 35, "full": [35, 36, 40, 41, 46], "corr_dow": 35, "align": [35, 36, 40], "808080": [36, 40, 41], "compress": [36, 40], "denois": 36, "primarili": [36, 37, 44, 47, 48, 52, 53, 57, 60], "aid": [36, 37, 52, 53], "subspac": 36, "onto": 36, "nonetheless": 36, "retain": 36, "_n": 36, "d_": [36, 40], "_i": [36, 40], "_j": [36, 40], "helper": [36, 39, 41], "worri": [36, 39], "spatial": [36, 40], "pdist": [36, 40], "d_red": 36, "d_tot": 36, "denom": 36, "pragmat": 36, "quick": 36, "refresh": 36, "cov": 36, "intens": 36, "mostli": 36, "came": 36, "eig_val": 36, "eig_vec": 36, "reperes": 36, "sorted_idx": 36, "argsort": 36, "colormap": 36, "get_figur": 36, "associ": [36, 46], "matrix_rank": 36, "79006930e": 36, "63717747e": 36, "41788439e": 36, "01100375e": 36, "95131656e": 36, "91085249e": 36, "18845391e": 36, "40151067e": 36, "03109953e": 36, "70117984e": 36, "85190412e": 36, "73211698e": 36, "19014881e": 36, "13243565e": 36, "76367222e": 36, "69468639e": 36, "58513899e": 36, "50044602e": 36, "22344732e": 36, "08868593e": 36, "06935663e": 36, "58259779e": 36, "22640260e": 36, "69036872e": 36, "36561190e": 36, "16577961e": 36, "91973881e": 36, "19295508e": 36, "88499123e": 36, "15586690e": 36, "49129656e": 36, "24687799e": 36, "04743883e": 36, "94340334e": 36, "70647245e": 36, "53165306e": 36, "08457409e": 36, "73780002e": 36, "67210896e": 36, "54170563e": 36, "28298744e": 36, "90724229e": 36, "81716569e": 36, "68996439e": 36, "40197220e": 36, "29221888e": 36, "15893419e": 36, "31220008e": 36, "69850594e": 36, "86065217e": 36, "52350432e": 36, "91527944e": 36, "31307848e": 36, "07377581e": 36, "96662297e": 36, "49505636e": 36, "47307261e": 36, "62365957e": 36, "27705113e": 36, "61270906e": 36, "12223305e": 36, "orthonorm": 36, "underlin": [36, 40], "_f": 36, "m_": [36, 46], "frobeniu": 36, "obvious": 36, "trivial": [36, 38], "min_": 36, "subject": [36, 53], "leq": [36, 38], "hasti": 36, "tibshirani": 36, "projector": 36, "x_k": [36, 41], "qualiti": [36, 40, 54], "8943031165985261": 36, "scree": 36, "componenet": 36, "cumsum": 36, "add_label": 36, "xpo": 36, "xycoord": 36, "07": [36, 38], "invert": [36, 41, 46], "x_reconstruct": 36, "reconstruct": 36, "de": [36, 46], "memori": [36, 48, 49, 57, 60], "aren": [36, 41], "digit_idx": 36, "x_lowd_digit": 36, "x_lowd_8": 36, "28714734": 36, "4125737": 36, "12896496": 36, "33976559": 36, "93898522": 36, "36268307": 36, "83730922": 36, "23672289": 36, "4251487": 36, "22891825": 36, "reli": [36, 40], "speed": [36, 40], "pca_model": [36, 41], "inverse_transform": [36, 41], "evr": 36, "explained_variance_ratio_": 36, "k_": 36, "kappa": 36, "kappa_": 36, "kernelpca": [36, 40], "x_m": 36, "y_m": 36, "n_sampl": [36, 37, 38, 39], "lpca": 36, "kpca": [36, 40], "fit_inverse_transform": 36, "x_pca": [36, 40], "x_kpca": [36, 40], "x_0": [36, 37, 38, 39, 40], "x_1": [36, 37, 38, 39, 40], "x_pca_reconstruct": 36, "x_kpca_reconstruct": 36, "worth": [36, 40], "mention": 36, "robust": [36, 37, 44], "outlier": 36, "partial": [36, 38, 52, 53], "maxim": [36, 38], "inter": 36, "exploit": 36, "prototyp": 36, "md": 36, "favor": 36, "n_init": 36, "max_it": 36, "max_iter": 36, "x_md": 36, "fit_transform": [36, 40], "3476710001843273": 36, "5405344832395483": 36, "tsne": [36, 40], "embed": [36, 53], "probabilist": [36, 39], "early_exagger": 36, "learning_r": 36, "x_tsne": [36, 40], "7890299639828614": 36, "hyper": 36, "outcom": [36, 52], "substanti": [36, 40, 53], "effort": [36, 53], "isomap": [36, 40], "lle": 36, "spectral": 36, "ltsa": 36, "comparison": [36, 40], "suffer": [36, 37], "disadvantag": [36, 37], "Not": [36, 40], "slow": [36, 39, 40], "neural": [36, 37, 41, 52], "network": [36, 37, 40, 41, 52], "intermedi": [36, 52], "bottleneck": 36, "net": 36, "scalabl": 36, "architectur": [36, 52], "discret": [37, 39], "ordin": 37, "categor": 37, "significantli": 37, "samples_gener": [37, 38, 39], "make_circl": [37, 38, 39], "x_blob": [37, 38, 39], "y_blob": [37, 38, 39], "n_featur": [37, 38, 39], "x_mc": [37, 38, 39], "y_mc": [37, 38, 39], "x_circl": [37, 38, 39], "y_circl": [37, 38, 39], "x_moon": [37, 38, 39], "y_moon": [37, 38, 39], "all_dataset": [37, 38, 39], "blob": [37, 38], "xy_i": [37, 38, 39], "yi": [37, 38, 39, 40], "sihoonchoi": [37, 39], "deprec": [37, 38, 39, 50], "143": [37, 39, 50], "futurewarn": [37, 38, 39], "privat": [37, 38, 39], "messag": [37, 38, 39], "examin": [37, 40], "plane": [37, 48, 57, 60], "seri": 37, "rest": 37, "logist": [37, 52], "minor": [37, 38], "although": [37, 39], "serial": 37, "imbalanc": [37, 41], "roughli": [37, 40], "imbal": [37, 39], "subsequ": [37, 52], "x_blob1": 37, "y_blob1": 37, "x_blob2": 37, "y_blob2": 37, "x_circles1": 37, "y_circles1": 37, "insepar": 37, "distinct": 37, "threshold": [37, 38, 40, 48, 57, 60], "belong": [37, 39, 40], "Then": [37, 38], "counter": 37, "conjunct": [37, 40], "indirectli": 37, "rightarrow": 37, "diagnos": 37, "arbitrarili": [37, 38, 41], "switch": 37, "distinctli": 37, "tp": 37, "tn": 37, "fp": 37, "fn": 37, "summar": 37, "harmon": 37, "perfec": 37, "acc_prec_recal": 37, "y_model": 37, "y_actual": 37, "logical_and": 37, "acc": 37, "prec": 37, "truli": [37, 40], "n_includ": 37, "y_imbalanc": 37, "set_xtick": [37, 40, 41], "y_guess": 37, "7692307692307693": 37, "under": [37, 39, 40, 44, 50, 52], "roc_curv": 37, "sgdclassifi": 37, "randomforestclassifi": 37, "sgd": 37, "rf": 37, "y_sgd": 37, "y_rf": 37, "fpr": 37, "tpr": 37, "c0c0c0": 37, "auc": 37, "postiv": 37, "hide": 37, "wrinkl": 37, "manner": 37, "overal": [37, 40], "mi": 37, "inner": 37, "undersampl": 37, "ineffici": 37, "oversampl": 37, "knowledg": 37, "smote": 37, "248": [37, 50], "x_blob3": 37, "y_blob3": 37, "decision_function_shap": 37, "ovr": 37, "y_mc_hat": 37, "x_max": [37, 39], "y_min": [37, 39], "y_max": [37, 39], "yy": [37, 39], "c_": [37, 39], "investig": 37, "bar": [37, 38, 52], "add_intercept": [37, 38], "x_intercept": [37, 38], "linear_classifi": [37, 38], "w_0": 37, "w_1": 37, "w_2": 37, "x_0w_0": 37, "x_1w_1": 37, "tricki": [37, 40], "pm": [37, 39], "inequ": [37, 38], "perceptron": 37, "max_cost": [37, 38], "xb": [37, 38], "75103040564972": [37, 38], "n_wrong": 37, "w_count": 37, "misclassif": 37, "tranform": 38, "y_": 38, "glm": 38, "osi": 38, "144": [38, 50], "clever": 38, "w_perceptron": 38, "fun": 38, "hess_inv": 38, "nfev": 38, "nit": 38, "njev": 38, "69214391": 38, "42205481": 38, "67940886": 38, "invent": 38, "frank": 38, "rosenblatt": 38, "1958": 38, "biolog": 38, "neuron": 38, "fire": 38, "exce": 38, "softmax": 38, "approx": 38, "soft": 38, "rid": 38, "softmax_cost": 38, "exp_yxb": 38, "7745706457998764": 38, "newton": 38, "w_logit": 38, "y_moons_scal": 38, "5796169252392186e": 38, "939495485292476": 38, "elimin": 38, "recogn": 38, "buffer": 38, "geq": 38, "trick": 38, "replax": 38, "margin_cost": 38, "13950": 38, "826906338369": 38, "w_opt_margin": 38, "margin_cost_squar": 38, "margin_cost_softmax": 38, "w_opt_margin2": 38, "w_opt_softmax": 38, "plot_lin": 38, "w_set": 38, "infinit": 38, "proport": 38, "l_2": [38, 40], "tild": 38, "omit": [38, 53], "regularized_cost": 38, "w_guess": 38, "w_svm": 38, "sound": 38, "scari": 38, "modif": 38, "endow": 38, "trickier": 38, "nonlinear": [38, 39], "x_new": [38, 41], "x_nonlinear": 38, "x_2": 38, "extra": 38, "x_kernel": 38, "bigger": [38, 40], "unless": 38, "y_predict": [38, 39, 40], "slight": 38, "plot_svc_decision_funct": 38, "plot_support": 38, "get_xlim": [38, 39], "get_ylim": [38, 39], "vstack": [38, 39], "decision_funct": 38, "contour": [38, 39], "support_vectors_": 38, "linewidth": [38, 41], "edgecolor": [38, 40], "1e2": 38, "ci": [38, 40], "ax_i": 38, "accept": 38, "enclos": 38, "plai": [38, 40, 49, 61], "depth": [39, 40, 53], "democraci": 39, "distinguish": 39, "poll": 39, "get_neighbor_idx": 39, "x_list": [39, 40], "dist_pair": [39, 40], "dist": [39, 40, 50], "k_dist": 39, "knn_idx": 39, "di": 39, "mode": [39, 52], "assign_class": 39, "y_list": 39, "properli": 39, "wrap": [39, 50], "y_out": 39, "y_knn": 39, "perfectli": 39, "No": [39, 52, 53], "visualize_neighbor": 39, "nj": 39, "xj": 39, "flexibl": [39, 40], "n_neighbor": 39, "sim": [39, 48, 57, 60], "mu_i": 39, "sigma_i": 39, "centroid": [39, 40], "formula": [39, 40, 41], "xg": 39, "yg": 39, "xgrid": 39, "ylorbr": 39, "bugn": 39, "prod": 39, "ma": [39, 46], "masked_arrai": 39, "pcolorfast": 39, "sophist": [39, 41], "na\u00efv": 39, "quadrat": 39, "nearli": [39, 40], "attempt": [39, 40, 44], "recurs": 39, "gini": 39, "entropi": 39, "prone": 39, "forest": 39, "bootstrap": 39, "produc": 39, "brief": [39, 51], "y_tree": 39, "stringio": 39, "export_graphviz": 39, "pydotplu": 39, "dot_data": 39, "out_fil": 39, "fill": 39, "special_charact": 39, "graph": [39, 46], "graph_from_dot_data": 39, "getvalu": 39, "create_png": 39, "datapoint": [40, 41], "consider": 40, "inher": 40, "identif": 40, "detect": 40, "algorthim": 40, "region": 40, "understood": 40, "demand": 40, "quantit": [40, 46], "silhoutt": 40, "impli": 40, "calinski": 40, "harabasz": 40, "intra": 40, "classificaiton": 40, "interclass": 40, "bound": [40, 46], "priori": 40, "likelihood": [40, 41], "proxim": 40, "downsid": 40, "analys": 40, "manhattan": 40, "chebyshev": 40, "infti": 40, "minkowski": 40, "l_p": 40, "nearbi": 40, "mahalanobi": 40, "simplic": 40, "short": 40, "cophenet": 40, "linkag": 40, "dow": [40, 41], "5th": 40, "2060": [40, 50], "exploratori": 40, "manifold": 40, "ms": [40, 53], "wall": 40, "470": [40, 50], "512": 40, "scenario": 40, "steadi": 40, "remark": [40, 53], "violat": 40, "anywai": 40, "revis": [40, 52, 53], "pt1": 40, "pt2": 40, "expected_assign": 40, "cluster_cent": 40, "min_index": 40, "new_cent": 40, "cluster_point": 40, "mec": 40, "pc1": 40, "pc2": 40, "repeatedli": 40, "old_cent": 40, "cluster_idx": 40, "88397179": 40, "09374578": 40, "88903744": 40, "89714391": 40, "77233592": 40, "03861822": 40, "74453066": 40, "28727407": 40, "3rd": 40, "73658236": 40, "06425897": 40, "89284524": 40, "43335379": 40, "kmean": 40, "n_cluster": [40, 41], "datset": 40, "cluster_centers_": 40, "navi": 40, "moreov": 40, "sum_k": 40, "phi_k": 40, "mathcal": 40, "1d": 40, "gamma_": 40, "ik": 40, "_k": 40, "phi": 40, "mu_k": 40, "sigma_k": 40, "covariance_typ": [40, 41], "means_": [40, 41], "longest": 40, "beforehand": 40, "silhouette_scor": 40, "calinski_harabasz_scor": 40, "c_h_score": 40, "3889340481198901": 40, "5375": 40, "873303272862": 40, "n_clusters_list": 40, "silhouette_list": 40, "predict_proba": 40, "59901044e": 40, "85204790e": 40, "73882805e": 40, "90943391e": 40, "08": [40, 46], "35967386e": 40, "87052747e": 40, "11297046e": 40, "point_idx": 40, "well_defin": 40, "prob": 40, "95": [40, 41, 50], "x_welldefin": 40, "y_welldefin": 40, "660": 40, "silhouette_welldefin": 40, "6344883005388762": 40, "12428": 40, "380003864966": 40, "get_dist": [40, 50], "get_nearby_point": 40, "in_window": 40, "get_new_centroid": 40, "old_centroid": 40, "in_rang": 40, "new_centroid": 40, "watch": [40, 52], "rerun": 40, "around": [40, 41, 49, 52, 61], "mean_shift_iter": 40, "centrod": 40, "mean_shift_clust": 40, "unique_centroid": 40, "uc": 40, "min_dist": 40, "1e99": 40, "120": [40, 50], "137": [40, 50], "meanshift": 40, "labels_": 40, "185": [40, 50], "slide": 40, "neigbhor": 40, "suffici": 40, "min_sampl": 40, "anim": 40, "fit_predict": 40, "hierarchi": 40, "feasibl": 40, "biologi": 40, "characterist": 40, "2059": 40, "77000000e": 40, "91000000e": 40, "83256746e": 40, "677": 40, "691": 40, "00098": 40, "fourth": 40, "descripton": 40, "agglomer": 40, "centriod": 40, "ward": 40, "dij": 40, "coph_dist": 40, "9549424125877355": 40, "9332039766375549": 40, "9781265675460892": 40, "9568082912812889": 40, "9786287346144893": 40, "8212908347506772": 40, "color_threshold": 40, "truncate_mod": 40, "lastp": 40, "58000000e": 40, "93700000e": 40, "38691346e": 40, "fcluster": 40, "max_d": 40, "clusters_dist": 40, "clusters_k": 40, "maxclust": 40, "monitor": 40, "jump": 40, "merg": [40, 53], "directon": 40, "i_cutoff": 40, "clusters_i": 40, "mimic": 41, "augment": 41, "gauss": [41, 48, 57, 60], "100000": 41, "machineri": 41, "x_1d": 41, "x_synthet": 41, "feature_a": 41, "feature_b": 41, "x_2d": 41, "y_2d": 41, "handbook": 41, "patch": 41, "ellips": 41, "draw_ellips": 41, "vt": [41, 46], "svd": [41, 46], "arctan2": 41, "nsig": 41, "add_patch": 41, "plot_gmm": 41, "zorder": 41, "w_factor": 41, "po": 41, "covar": 41, "covariances_": 41, "weights_": 41, "agreement": 41, "y_new": 41, "2000": 41, "evaul": 41, "gmm_n": 41, "n_d": 41, "gmm_best": 41, "resembl": 41, "min_idx": 41, "n_gmm": 41, "example_lowd": 41, "x_mnist_6": 41, "logic": 41, "instanti": 41, "x_continu": 41, "score_sampl": 41, "logprob": 41, "10000": 41, "logprob_synthet": 41, "realtiv": 41, "kde_imag": 41, "perhap": 41, "face": [41, 53], "who": [41, 52, 53], "thispersondoesnotexist": 41, "208": [41, 50], "48758285": 41, "220": [41, 50], "39043884": 41, "218": [41, 50], "35226166": 41, "85097378e": 41, "93040551e": 41, "96": [41, 50], "48189573e": 41, "proba_0": 41, "post_proba": 41, "82400297e": 41, "91214347e": 41, "46787669e": 41, "not_so_na": 41, "proba_i": 41, "argmax": 41, "9907407407407407": 41, "df_cm": 41, "8314814814814815": 41, "industri": [44, 53], "notabl": 44, "bleed": 44, "scientist": 44, "portion": [44, 51], "mind": [44, 51], "unexpect": 44, "pull": 44, "request": [44, 48, 49, 57, 60], "repositori": [44, 49, 61], "overwhelm": 44, "conceptr": 44, "stduent": 44, "breath": 44, "practiction": 44, "beginn": 44, "happi": 44, "address": 44, "nitti": 44, "gritti": 44, "leav": 44, "stuck": 44, "reach": 44, "tremend": 45, "egg": 45, "dramat": 45, "hegihten": 45, "compuat": 45, "aug": 46, "config": [46, 50], "use_jedi": 46, "mavrikaki": 46, "synthesi": 46, "catal": 46, "365": [46, 50], "384": [46, 50], "2011": 46, "followig": 46, "reservoir": 46, "raw_data": [46, 50], "read_json": 46, "co2_g": 46, "_s": 46, "h2_g": 46, "_h": 46, "2h": 46, "co_g": 46, "h2o_g": 46, "hcooh_g": 46, "ch2o_g": 46, "ch2o": 46, "ch3oh_g": 46, "hcooch3_g": 46, "cooh": 46, "59": [46, 50], "2oh": 46, "hcoo": 46, "h2co2": 46, "ch3o2": 46, "74": [46, 50], "78": [46, 50], "coh": 46, "hcoh": 46, "ch2oh": 46, "06": 46, "co3": 46, "hco3": 46, "99": [46, 50], "h2cooch3": 46, "2ch2o": 46, "n_": 46, "encompass": 46, "ma_": 46, "atomic_matrix": 46, "And": 46, "folow": 46, "individi": 46, "e_raw": 46, "raw_dft": 46, "211": [46, 50], "197764": 46, "135245": 46, "197765": 46, "085060": 46, "123999": 46, "125283": 46, "103185": 46, "773434": 46, "106234": 46, "599516": 46, "140714": 46, "147663": 46, "134520": 46, "546438": 46, "198613": 46, "265305": 46, "816588": 46, "124848": 46, "330119": 46, "104034": 46, "866635": 46, "107083": 46, "793192": 46, "141562": 46, "980995": 46, "135369": 46, "376106": 46, "198629": 46, "463463": 46, "895913": 46, "124864": 46, "792637": 46, "104051": 46, "846973": 46, "107100": 46, "679487": 46, "141578": 46, "898364": 46, "135385": 46, "740832": 46, "848": 46, "688366": 46, "co_": [46, 48, 57, 60], "h_2o_": 46, "ext": 46, "m_a": 46, "rank": 46, "dummi": 46, "ref_sp": 46, "eref": 46, "mref": 46, "mcol": 46, "def_a": 46, "mext": 46, "hstack": 46, "refrenc": 46, "es": 46, "multiindex": 46, "from_tupl": 46, "ef": 46, "605626": 46, "823442": 46, "562464": 46, "198630": 46, "805365": 46, "732895": 46, "199197": 46, "450711": 46, "304541": 46, "198646": 46, "958871": 46, "024892": 46, "881": 46, "686666": 46, "837747": 46, "198582": 46, "258153": 46, "770208": 46, "199149": 46, "583594": 46, "021949": 46, "1384": 46, "476584": 46, "199715": 46, "612772": 46, "022571": 46, "198597": 46, "111176": 46, "238278": 46, "199165": 46, "053933": 46, "369220": 46, "816": 46, "402885": 46, "197781": 46, "131496": 46, "184928": 46, "199180": 46, "952833": 46, "331829": 46, "199480": 46, "172844": 46, "974471": 46, "198364": 46, "322075": 46, "559701": 46, "599": 46, "047721": 46, "748995": 46, "723017": 46, "497763": 46, "148309": 46, "199732": 46, "874257": 46, "622596": 46, "355603": 46, "144641": 46, "814737": 46, "391584": 46, "199464": 46, "223855": 46, "886991": 46, "1699": 46, "054584": 46, "802780": 46, "199181": 46, "606326": 46, "321665": 46, "1416": [46, 50], "294467": 46, "094866": 46, "198331": 46, "439796": 46, "718963": 46, "198348": 46, "124986": 46, "895282": 46, "stoichiometri": 46, "stoich_matrix": 46, "freem": 46, "multiplici": 46, "der": [46, 48, 57, 60], "thrown": 46, "moor": 46, "penros": 46, "singular": 46, "ref": 46, "pinv": 46, "grei": 46, "set_xbound": 46, "set_ybound": 46, "rereferenc": 46, "der_grbw": 46, "def_grbw": 46, "moleculecul": 46, "methyl": 46, "longer": 46, "chain": 46, "Such": 46, "discrep": 46, "long": [46, 53], "initio": 47, "licens": 47, "capabl": 47, "band": 47, "concern": 47, "submiss": [48, 49, 52, 57, 60], "shouldn": [48, 49, 57], "pai": [48, 49, 57, 60], "judici": [48, 49, 57, 60], "ntask": [48, 49, 57], "mem": [48, 49, 57], "3g": [48, 49, 57], "t12": [48, 49, 57], "joe": [48, 49, 57], "report_err": [48, 49, 57], "slurm_submit_dir": [48, 49, 57], "qsub": [48, 57, 60], "queu": [48, 49, 57, 60], "scan": [48, 49, 57, 60], "gb": [48, 49, 57, 60], "queue": [48, 49, 57, 60], "inferno": [48, 49, 57, 60], "whoami": [48, 49, 57, 60], "himem": [48, 49, 57, 60], "alia": [48, 49, 57, 60], "compil": [48, 49, 52, 53, 57, 60, 61], "codeblock": [48, 57, 60], "electrostat": [48, 57, 60], "van": [48, 57, 60], "waal": [48, 57, 60], "pool": [48, 57, 60], "sparc_latest_2021": [48, 57, 60], "test_mostafa": [48, 57, 60], "210128": [48, 57, 60], "210217": [48, 57, 60], "v0": [48, 49, 57, 60], "test_oncv": [48, 57, 60], "210224": [48, 57, 60], "oncv": [48, 57, 60], "psps_soft": [48, 57, 60], "psps_standard": [48, 57, 60], "espresso_sg15_pp": [48, 57, 60], "brown": [48, 57, 60], "brenda": [48, 57, 60], "espresso_sg15_sparc": [48, 57, 60], "qimen_sg15": [48, 57, 60], "upf_lda": [48, 57, 60], "upf_pb": [48, 57, 60], "espresso_sg15_rel": [48, 57, 60], "pseudo_dir": [48, 57, 60], "psppath": [48, 57, 60], "espresso_sg15_mcsh": [48, 57, 60], "psps_mcsh": [48, 57, 60], "psps_qe": [48, 57, 60], "0005": [48, 57, 60], "750": [48, 57, 60], "nosym": [48, 57, 60], "phoenix": 49, "wih": 49, "4g": 49, "hpaceice1": [49, 61], "ssahoo41": [49, 61], "sparc_env": [49, 61], "conda": 49, "environemnt": 49, "multibyt": 49, "char": 49, "deafault": 49, "liabal": 49, "ever": 49, "unavail": 49, "makefil": [49, 61], "pseduopotenti": 49, "download_data": 49, "editor": 49, "eg": 49, "vim": 49, "execut": 49, "psp_dir": 49, "slurm_ntask": 49, "ase_sparc_command": [49, 61], "srun": 49, "fi": [49, 61], "ve": [49, 51, 61], "calc_sparc": [49, 61], "482": [49, 50], "41097204076414": 49, "cycl": [49, 61], "relaxt": [49, 61], "headnod": [49, 61], "ionic": 49, "desir": [49, 61], "mixing_vari": [49, 61], "mixing_paramet": [49, 61], "mixing_histori": [49, 61], "mixing_precond": [49, 61], "cheb_degress": [49, 61], "batch": [49, 61], "broad": [49, 61], "hit": [49, 61], "sprac": [49, 61], "amptorch": [50, 52], "bpnn": 50, "torch": 50, "ase_util": 50, "atomstrain": 50, "gs": 50, "num": 50, "rs_": 50, "g4": 50, "zeta": 50, "ulissigroup": 50, "num_lay": 50, "num_nod": 50, "batchnorm": 50, "force_coeffici": 50, "lr": 50, "batch_siz": 50, "epoch": 50, "mse": 50, "gpu": 50, "fp_param": 50, "save_fp": 50, "val_split": 50, "cmd": 50, "run_dir": 50, "logger": 50, "set_num_thread": 50, "checkpoint": 50, "xavier": 50, "1143": 50, "skorch": 50, "train_energy_ma": 50, "train_forces_ma": 50, "train_loss": 50, "cp": 50, "dur": 50, "36m0": 50, "9776": 50, "32m0": 50, "5535": 50, "35m1": 50, "0490": 50, "0410": 50, "7315": 50, "5250": 50, "35m0": 50, "6843": 50, "0355": 50, "5812": 50, "5261": 50, "4445": 50, "0353": 50, "5395": 50, "5208": 50, "3698": 50, "5281": 50, "5913": 50, "0354": 50, "visibledeprecationwarn": 50, "rag": 50, "sequenc": 50, "5183": 50, "5130": 50, "3640": 50, "5247": 50, "5123": 50, "3282": 50, "0352": 50, "4966": 50, "5133": 50, "3748": 50, "4578": 50, "5022": 50, "3122": 50, "4195": 50, "4864": 50, "2077": 50, "43488168716430664": 50, "true_energi": 50, "pred_energi": 50, "316875487045523": 50, "4133532974220065": 50, "200410481656832": 50, "quantem": 50, "water_2d": 50, "10th": 50, "get_cel": 50, "get_pbc": 50, "82418565": 50, "2981545": 50, "58742465": 50, "7018455": 50, "41257535": 50, "77131852": 50, "593": 50, "6701598080588": 50, "22263082": 50, "76981108": 50, "73799984": 50, "01589577": 50, "96063066": 50, "78570684": 50, "singlepointcalcul": 50, "pseduo": 50, "nsigma": 50, "mcshs_index": 50, "mcshs_dict": 50, "atom_gaussian": 50, "valence_gaussian": 50, "h_pseudodensity_2": 50, "o_pseudodensity_4": 50, "solid_harmon": 50, "fp_scheme": 50, "gmpordernorm": 50, "601": 50, "val_energy_ma": 50, "val_forces_ma": 50, "valid_loss": 50, "9166": 50, "32m3": 50, "6067": 50, "3347": 50, "31m1": 50, "0759": 50, "94m2": 50, "8713": 50, "4352": 50, "1192": 50, "5748": 50, "2845": 50, "1749": 50, "31m0": 50, "4722": 50, "9645": 50, "1838": 50, "1186": 50, "4819": 50, "1487": 50, "1435": 50, "3749": 50, "0119": 50, "1310": 50, "1183": 50, "4268": 50, "0484": 50, "1212": 50, "3292": 50, "8507": 50, "1095": 50, "4574": 50, "32m2": 50, "9619": 50, "1221": 50, "3286": 50, "7766": 50, "1025": 50, "1187": 50, "4648": 50, "7649": 50, "1240": 50, "2889": 50, "7284": 50, "0901": 50, "1188": 50, "4483": 50, "7782": 50, "1140": 50, "3000": 50, "7083": 50, "0952": 50, "1206": 50, "4126": 50, "5931": 50, "0946": 50, "3138": 50, "8513": 50, "0937": 50, "3965": 50, "5699": 50, "0932": 50, "2876": 50, "6931": 50, "0827": 50, "1190": 50, "4545": 50, "5266": 50, "1008": 50, "3681": 50, "6409": 50, "1191": 50, "4035": 50, "5349": 50, "0909": 50, "2769": 50, "0764": 50, "1185": 50, "3541": 50, "4835": 50, "0801": 50, "2840": 50, "6637": 50, "0824": 50, "3933": 50, "4446": 50, "0830": 50, "2911": 50, "4129": 50, "0763": 50, "4083": 50, "3820": 50, "0890": 50, "2717": 50, "4372": 50, "0778": 50, "1176": 50, "3653": 50, "4379": 50, "0783": 50, "2651": 50, "3123": 50, "0712": 50, "3446": 50, "2296": 50, "0671": 50, "2514": 50, "0683": 50, "3463": 50, "3116": 50, "0668": 50, "3127": 50, "3053": 50, "0805": 50, "3048": 50, "2741": 50, "0576": 50, "2565": 50, "3971": 50, "0677": 50, "3850": 50, "2143": 50, "0685": 50, "2590": 50, "2416": 50, "0662": 50, "3074": 50, "1823": 50, "0596": 50, "2150": 50, "3052": 50, "0602": 50, "3284": 50, "1531": 50, "0558": 50, "2061": 50, "2051": 50, "1177": 50, "3458": 50, "1348": 50, "0599": 50, "2997": 50, "2439": 50, "0717": 50, "1182": 50, "2967": 50, "32m1": 50, "9998": 50, "0498": 50, "1795": 50, "2532": 50, "0592": 50, "3580": 50, "9891": 50, "0553": 50, "2544": 50, "3604": 50, "0642": 50, "2489": 50, "9221": 50, "0380": 50, "1968": 50, "94m1": 50, "9220": 50, "0457": 50, "1173": 50, "2962": 50, "8199": 50, "0428": 50, "2825": 50, "1843": 50, "0617": 50, "1184": 50, "2990": 50, "8033": 50, "9435": 50, "0502": 50, "1174": 50, "2753": 50, "7510": 50, "0368": 50, "1692": 50, "1083": 50, "0449": 50, "2613": 50, "7697": 50, "0365": 50, "2200": 50, "0161": 50, "0528": 50, "2596": 50, "7125": 50, "2203": 50, "1059": 50, "1181": 50, "2783": 50, "6646": 50, "0358": 50, "1909": 50, "8565": 50, "0418": 50, "2414": 50, "7629": 50, "0331": 50, "1373": 50, "8587": 50, "0390": 50, "1175": 50, "2468": 50, "5570": 50, "0290": 50, "1899": 50, "7846": 50, "0431": 50, "2359": 50, "5886": 50, "0306": 50, "1814": 50, "6228": 50, "0319": 50, "2765": 50, "6077": 50, "0341": 50, "2342": 50, "7899": 50, "0419": 50, "2398": 50, "5575": 50, "0283": 50, "1651": 50, "8781": 50, "0392": 50, "2822": 50, "7392": 50, "0406": 50, "2555": 50, "9149": 50, "0586": 50, "2562": 50, "5598": 50, "0304": 50, "3649": 50, "8912": 50, "0619": 50, "3189": 50, "6295": 50, "0400": 50, "2663": 50, "7968": 50, "0520": 50, "5291": 50, "0263": 50, "1850": 50, "7202": 50, "2548": 50, "4544": 50, "0277": 50, "1653": 50, "5609": 50, "0307": 50, "2338": 50, "5538": 50, "0261": 50, "2569": 50, "6327": 50, "1180": 50, "3237": 50, "5730": 50, "0434": 50, "1876": 50, "7730": 50, "0351": 50, "2190": 50, "4909": 50, "0259": 50, "1981": 50, "8695": 50, "0416": 50, "2470": 50, "4461": 50, "0296": 50, "2063": 50, "6211": 50, "0391": 50, "2545": 50, "4647": 50, "0278": 50, "1457": 50, "0542": 50, "2509": 50, "3907": 50, "0273": 50, "2374": 50, "8997": 50, "0501": 50, "1189": 50, "2098": 50, "2785": 50, "0204": 50, "1729": 50, "7333": 50, "0385": 50, "1997": 50, "2821": 50, "0186": 50, "1746": 50, "7228": 50, "0378": 50, "2181": 50, "3120": 50, "0209": 50, "1432": 50, "7438": 50, "0396": 50, "2447": 50, "3298": 50, "0251": 50, "1576": 50, "7314": 50, "0427": 50, "2130": 50, "3597": 50, "0220": 50, "1423": 50, "7671": 50, "1194": 50, "2057": 50, "2844": 50, "0199": 50, "3523": 50, "8464": 50, "0615": 50, "1195": 50, "2247": 50, "2996": 50, "0221": 50, "1599": 50, "6260": 50, "0320": 50, "3864": 50, "0232": 50, "1648": 50, "6399": 50, "2332": 50, "3098": 50, "0235": 50, "1491": 50, "6725": 50, "0377": 50, "2238": 50, "3408": 50, "1198": 50, "6988": 50, "0340": 50, "2219": 50, "3041": 50, "0224": 50, "8580": 50, "0477": 50, "1922": 50, "2458": 50, "0197": 50, "1524": 50, "6290": 50, "0318": 50, "2528": 50, "2925": 50, "0267": 50, "1425": 50, "5187": 50, "2082": 50, "2592": 50, "0226": 50, "1927": 50, "6108": 50, "1200": 50, "2038": 50, "1396": 50, "0177": 50, "1853": 50, "5376": 50, "0356": 50, "1925": 50, "2383": 50, "0187": 50, "1483": 50, "7141": 50, "0347": 50, "1951": 50, "1452": 50, "6025": 50, "2262": 50, "2882": 50, "1392": 50, "4542": 50, "0302": 50, "1878": 50, "1722": 50, "0160": 50, "1701": 50, "6339": 50, "67": 50, "2006": 50, "2483": 50, "2441": 50, "6383": 50, "0384": 50, "1952": 50, "1128": 50, "0167": 50, "1572": 50, "6495": 50, "69": 50, "2066": 50, "1974": 50, "0205": 50, "2361": 50, "6223": 50, "0388": 50, "1920": 50, "1656": 50, "0179": 50, "1501": 50, "4612": 50, "1849": 50, "1818": 50, "5071": 50, "0299": 50, "2032": 50, "1515": 50, "0203": 50, "1732": 50, "4123": 50, "0262": 50, "1820": 50, "1566": 50, "0176": 50, "1571": 50, "5981": 50, "0324": 50, "0877": 50, "0178": 50, "1744": 50, "3633": 50, "0293": 50, "1884": 50, "1474": 50, "0170": 50, "1414": 50, "5712": 50, "0323": 50, "0007": 50, "0148": 50, "1242": 50, "3598": 50, "0266": 50, "77": 50, "1848": 50, "1080": 50, "0185": 50, "1219": 50, "4795": 50, "0294": 50, "1993": 50, "0957": 50, "0180": 50, "1529": 50, "4254": 50, "1706": 50, "0934": 50, "0143": 50, "1779": 50, "4566": 50, "1944": 50, "1454": 50, "0279": 50, "2485": 50, "4522": 50, "0383": 50, "2195": 50, "0491": 50, "0196": 50, "2480": 50, "4458": 50, "2165": 50, "0892": 50, "0181": 50, "1600": 50, "6799": 50, "0308": 50, "1681": 50, "1044": 50, "0152": 50, "1473": 50, "6765": 50, "0272": 50, "1559": 50, "9669": 50, "0111": 50, "1443": 50, "5447": 50, "0257": 50, "1598": 50, "0200": 50, "0126": 50, "0997": 50, "5499": 50, "0265": 50, "1903": 50, "2092": 50, "0193": 50, "1719": 50, "3387": 50, "0275": 50, "1943": 50, "0164": 50, "1453": 50, "3405": 50, "0215": 50, "1214": 50, "1725": 50, "9987": 50, "0150": 50, "1819": 50, "3577": 50, "0274": 50, "1696": 50, "0132": 50, "1218": 50, "4168": 50, "0247": 50, "1574": 50, "9592": 50, "0112": 50, "5069": 50, "0316": 50, "0206": 50, "1193": 50, "2031": 50, "0174": 50, "1582": 50, "2927": 50, "0234": 50, "93": 50, "1742": 50, "0450": 50, "0134": 50, "1026": 50, "5851": 50, "0271": 50, "94": 50, "1659": 50, "0118": 50, "0138": 50, "0925": 50, "2795": 50, "0190": 50, "1794": 50, "9443": 50, "1046": 50, "3093": 50, "1615": 50, "9903": 50, "0117": 50, "2493": 50, "2139": 50, "0289": 50, "1640": 50, "0023": 50, "0139": 50, "1319": 50, "2085": 50, "1854": 50, "9160": 50, "0129": 50, "1611": 50, "2746": 50, "0124": 50, "1350": 50, "0207": 50, "1641": 50, "9786": 50, "0123": 50, "1179": 50, "1676": 50, "0171": 50, "101": 50, "1804": 50, "1477": 50, "2252": 50, "0189": 50, "102": 50, "9660": 50, "0107": 50, "1288": 50, "2065": 50, "0165": 50, "1426": 50, "9126": 50, "0101": 50, "3017": 50, "1178": 50, "104": 50, "1552": 50, "9626": 50, "1023": 50, "2177": 50, "1565": 50, "9197": 50, "0109": 50, "2271": 50, "4304": 50, "106": 50, "1577": 50, "9519": 50, "0113": 50, "4217": 50, "0254": 50, "107": 50, "1809": 50, "9428": 50, "0142": 50, "0833": 50, "1636": 50, "0155": 50, "1801": 50, "9507": 50, "0125": 50, "0964": 50, "2912": 50, "1197": 50, "109": 50, "1591": 50, "9774": 50, "0122": 50, "1149": 50, "110": 50, "1349": 50, "9597": 50, "0104": 50, "1361": 50, "2539": 50, "0192": 50, "1405": 50, "8962": 50, "0094": 50, "0816": 50, "112": 50, "1480": 50, "9738": 50, "1081": 50, "0701": 50, "1661": 50, "9641": 50, "2968": 50, "0228": 50, "114": 50, "1623": 50, "9531": 50, "1888": 50, "0162": 50, "1359": 50, "8503": 50, "0085": 50, "1217": 50, "116": 50, "1621": 50, "9877": 50, "0120": 50, "1662": 50, "1458": 50, "117": 50, "8891": 50, "1146": 50, "0696": 50, "118": 50, "9480": 50, "1502": 50, "0151": 50, "119": 50, "1595": 50, "1356": 50, "2482": 50, "1535": 50, "9552": 50, "1923": 50, "0914": 50, "0198": 50, "121": 50, "1450": 50, "8861": 50, "0106": 50, "122": 50, "1509": 50, "9165": 50, "1030": 50, "0825": 50, "0144": 50, "123": 50, "8574": 50, "1312": 50, "0556": 50, "1506": 50, "8273": 50, "0096": 50, "1543": 50, "1073": 50, "0158": 50, "125": 50, "1545": 50, "8432": 50, "0099": 50, "1287": 50, "94m0": 50, "9952": 50, "126": 50, "8679": 50, "0086": 50, "0762": 50, "0127": 50, "127": 50, "1528": 50, "9099": 50, "1525": 50, "8785": 50, "128": 50, "1374": 50, "8302": 50, "0090": 50, "9460": 50, "0091": 50, "129": 50, "1318": 50, "7688": 50, "0078": 50, "0802": 50, "0244": 50, "0105": 50, "130": 50, "1353": 50, "7623": 50, "0079": 50, "1567": 50, "0040": 50, "0149": 50, "131": 50, "1527": 50, "8691": 50, "1043": 50, "0609": 50, "132": 50, "1686": 50, "8479": 50, "1507": 50, "9635": 50, "133": 50, "1322": 50, "7931": 50, "0080": 50, "0870": 50, "9142": 50, "134": 50, "8312": 50, "1635": 50, "0102": 50, "0147": 50, "135": 50, "1330": 50, "7695": 50, "0077": 50, "1202": 50, "9829": 50, "0153": 50, "136": 50, "1226": 50, "7906": 50, "0074": 50, "0986": 50, "9018": 50, "1351": 50, "7942": 50, "1005": 50, "9806": 50, "9174": 50, "0115": 50, "1399": 50, "0194": 50, "139": 50, "8172": 50, "1711": 50, "9990": 50, "140": 50, "1580": 50, "9496": 50, "1126": 50, "8930": 50, "141": 50, "1461": 50, "8817": 50, "0097": 50, "1077": 50, "9365": 50, "0095": 50, "142": 50, "1526": 50, "8705": 50, "0100": 50, "0999": 50, "9754": 50, "1338": 50, "7657": 50, "0775": 50, "0579": 50, "1364": 50, "8011": 50, "1761": 50, "9498": 50, "145": 50, "1394": 50, "7912": 50, "1129": 50, "0292": 50, "146": 50, "1295": 50, "7706": 50, "0073": 50, "1053": 50, "8015": 50, "147": 50, "1215": 50, "8331": 50, "0686": 50, "8843": 50, "148": 50, "1245": 50, "7949": 50, "0081": 50, "0857": 50, "9046": 50, "149": 50, "1551": 50, "9423": 50, "8230": 50, "0754": 50, "9350": 50, "151": 50, "1393": 50, "7908": 50, "1164": 50, "9746": 50, "1209": 50, "152": 50, "7792": 50, "0089": 50, "1160": 50, "153": 50, "8357": 50, "1705": 50, "9471": 50, "154": 50, "1370": 50, "7229": 50, "0087": 50, "0899": 50, "8019": 50, "155": 50, "1285": 50, "7421": 50, "0075": 50, "1201": 50, "9718": 50, "0108": 50, "156": 50, "1252": 50, "7525": 50, "1541": 50, "7143": 50, "0110": 50, "157": 50, "1236": 50, "7696": 50, "0796": 50, "9163": 50, "0098": 50, "158": 50, "1223": 50, "6858": 50, "0065": 50, "0921": 50, "8994": 50, "0088": 50, "159": 50, "1127": 50, "6739": 50, "0060": 50, "0744": 50, "8196": 50, "0068": 50, "160": 50, "7398": 50, "7667": 50, "161": 50, "7674": 50, "9475": 50, "162": 50, "1205": 50, "7363": 50, "0069": 50, "1038": 50, "8700": 50, "0093": 50, "163": 50, "7053": 50, "0071": 50, "9017": 50, "164": 50, "1234": 50, "7153": 50, "0888": 50, "8497": 50, "0092": 50, "165": 50, "7297": 50, "1171": 50, "7997": 50, "166": 50, "7341": 50, "7787": 50, "0084": 50, "167": 50, "7128": 50, "0070": 50, "9008": 50, "168": 50, "1272": 50, "7624": 50, "0076": 50, "0846": 50, "8150": 50, "169": 50, "1224": 50, "7107": 50, "0842": 50, "8130": 50, "1196": 50, "170": 50, "1323": 50, "7400": 50, "0845": 50, "9176": 50, "0103": 50, "171": 50, "7273": 50, "0898": 50, "7833": 50, "172": 50, "1076": 50, "6885": 50, "0056": 50, "0981": 50, "7013": 50, "0066": 50, "173": 50, "1246": 50, "7272": 50, "1121": 50, "7430": 50, "174": 50, "6685": 50, "0061": 50, "0724": 50, "8539": 50, "175": 50, "1230": 50, "7167": 50, "1329": 50, "6367": 50, "176": 50, "1131": 50, "7260": 50, "1036": 50, "7427": 50, "177": 50, "1302": 50, "7387": 50, "0620": 50, "7615": 50, "0051": 50, "178": 50, "6989": 50, "0067": 50, "0987": 50, "8368": 50, "0072": 50, "179": 50, "1247": 50, "6560": 50, "0873": 50, "180": 50, "6762": 50, "8068": 50, "0114": 50, "181": 50, "1199": 50, "7025": 50, "0973": 50, "8420": 50, "182": 50, "6486": 50, "0052": 50, "1067": 50, "9095": 50, "183": 50, "1378": 50, "7040": 50, "1208": 50, "7002": 50, "184": 50, "1296": 50, "6818": 50, "0938": 50, "1400": 50, "7245": 50, "186": 50, "1110": 50, "6289": 50, "0785": 50, "8084": 50, "187": 50, "6449": 50, "0062": 50, "1020": 50, "188": 50, "1165": 50, "6292": 50, "0058": 50, "1047": 50, "7291": 50, "0083": 50, "189": 50, "1135": 50, "6321": 50, "0057": 50, "1122": 50, "7895": 50, "190": 50, "1270": 50, "7463": 50, "8664": 50, "191": 50, "1298": 50, "6623": 50, "1514": 50, "6081": 50, "192": 50, "1031": 50, "6271": 50, "0941": 50, "193": 50, "6415": 50, "1093": 50, "6384": 50, "194": 50, "1013": 50, "6129": 50, "0047": 50, "0584": 50, "6457": 50, "0053": 50, "195": 50, "1203": 50, "6251": 50, "0059": 50, "0756": 50, "6638": 50, "0049": 50, "196": 50, "1249": 50, "6396": 50, "0782": 50, "7870": 50, "197": 50, "6467": 50, "7249": 50, "198": 50, "1120": 50, "5842": 50, "0054": 50, "0757": 50, "6520": 50, "199": 50, "1111": 50, "5966": 50, "0867": 50, "6933": 50, "0063": 50, "1082": 50, "5888": 50, "0050": 50, "1079": 50, "6692": 50, "201": 50, "6021": 50, "5942": 50, "202": 50, "6008": 50, "0604": 50, "6368": 50, "0044": 50, "203": 50, "0939": 50, "5695": 50, "0039": 50, "0660": 50, "6642": 50, "204": 50, "6013": 50, "0681": 50, "7266": 50, "205": 50, "1388": 50, "6395": 50, "1418": 50, "5713": 50, "206": 50, "1283": 50, "6371": 50, "0869": 50, "207": 50, "0991": 50, "5916": 50, "7554": 50, "1311": 50, "6750": 50, "6491": 50, "209": 50, "6475": 50, "1096": 50, "8154": 50, "210": 50, "5956": 50, "1092": 50, "7451": 50, "6198": 50, "0667": 50, "7854": 50, "212": 50, "6001": 50, "0048": 50, "213": 50, "6631": 50, "1007": 50, "214": 50, "1065": 50, "6323": 50, "0704": 50, "6277": 50, "1017": 50, "0046": 50, "0603": 50, "5519": 50, "0033": 50, "216": 50, "1057": 50, "5801": 50, "5797": 50, "0045": 50, "217": 50, "6024": 50, "5444": 50, "1009": 50, "6050": 50, "0519": 50, "6390": 50, "0038": 50, "219": 50, "5450": 50, "0738": 50, "6451": 50, "6916": 50, "0676": 50, "7642": 50, "221": 50, "0975": 50, "5647": 50, "0585": 50, "6847": 50, "222": 50, "0947": 50, "5648": 50, "0791": 50, "6787": 50, "1204": 50, "223": 50, "6012": 50, "0711": 50, "6444": 50, "224": 50, "5934": 50, "0652": 50, "225": 50, "0945": 50, "6434": 50, "0748": 50, "4919": 50, "0029": 50, "226": 50, "0919": 50, "5586": 50, "0679": 50, "6727": 50, "227": 50, "0933": 50, "5449": 50, "0922": 50, "8041": 50, "228": 50, "1341": 50, "0779": 50, "7065": 50, "229": 50, "5731": 50, "0693": 50, "6032": 50, "0043": 50, "230": 50, "1037": 50, "6097": 50, "0929": 50, "231": 50, "5848": 50, "5744": 50, "232": 50, "6389": 50, "6360": 50, "233": 50, "1006": 50, "0923": 50, "234": 50, "0940": 50, "5722": 50, "0649": 50, "235": 50, "0853": 50, "5766": 50, "0650": 50, "5597": 50, "236": 50, "5814": 50, "0041": 50, "5576": 50, "0037": 50, "237": 50, "1105": 50, "5813": 50, "0516": 50, "5868": 50, "238": 50, "0968": 50, "239": 50, "0897": 50, "5212": 50, "4986": 50, "240": 50, "5534": 50, "0851": 50, "6098": 50, "241": 50, "1086": 50, "5741": 50, "0740": 50, "5500": 50, "242": 50, "0894": 50, "5313": 50, "5655": 50, "243": 50, "5333": 50, "0036": 50, "0720": 50, "6282": 50, "244": 50, "0958": 50, "5255": 50, "0621": 50, "6408": 50, "245": 50, "5276": 50, "0034": 50, "5871": 50, "246": 50, "1015": 50, "5462": 50, "0907": 50, "4786": 50, "0042": 50, "247": 50, "5669": 50, "0844": 50, "1024": 50, "5144": 50, "0794": 50, "6536": 50, "249": 50, "1145": 50, "6018": 50, "0809": 50, "250": 50, "5440": 50, "1055": 50, "5173": 50, "251": 50, "0906": 50, "5625": 50, "1112": 50, "5086": 50, "0055": 50, "252": 50, "1293": 50, "5562": 50, "7533": 50, "253": 50, "5439": 50, "0800": 50, "4422": 50, "0027": 50, "254": 50, "0666": 50, "5627": 50, "255": 50, "0821": 50, "5010": 50, "0031": 50, "0820": 50, "5943": 50, "5351": 50, "0771": 50, "5229": 50, "257": 50, "5778": 50, "0493": 50, "5619": 50, "0035": 50, "258": 50, "5100": 50, "1040": 50, "6059": 50, "259": 50, "5525": 50, "0772": 50, "260": 50, "5324": 50, "261": 50, "1132": 50, "5604": 50, "0766": 50, "4859": 50, "262": 50, "1085": 50, "5140": 50, "0735": 50, "5280": 50, "263": 50, "6835": 50, "0082": 50, "5635": 50, "264": 50, "5816": 50, "0733": 50, "6086": 50, "265": 50, "0926": 50, "5600": 50, "0980": 50, "5371": 50, "266": 50, "5649": 50, "5515": 50, "267": 50, "0953": 50, "5181": 50, "1010": 50, "4882": 50, "268": 50, "0936": 50, "5588": 50, "1071": 50, "5224": 50, "269": 50, "1028": 50, "5143": 50, "0690": 50, "5623": 50, "270": 50, "5666": 50, "2167": 50, "6445": 50, "271": 50, "1051": 50, "5066": 50, "0746": 50, "5421": 50, "272": 50, "0781": 50, "4619": 50, "0028": 50, "0550": 50, "5866": 50, "273": 50, "5132": 50, "0700": 50, "3993": 50, "0024": 50, "274": 50, "5919": 50, "1115": 50, "4314": 50, "275": 50, "0931": 50, "5251": 50, "5568": 50, "276": 50, "5491": 50, "4417": 50, "277": 50, "0896": 50, "5477": 50, "0655": 50, "4739": 50, "0864": 50, "4855": 50, "0032": 50, "0571": 50, "279": 50, "4854": 50, "0881": 50, "4540": 50, "280": 50, "0903": 50, "5056": 50, "5509": 50, "281": 50, "0927": 50, "1261": 50, "4381": 50, "282": 50, "0874": 50, "4728": 50, "0882": 50, "4273": 50, "1336": 50, "5366": 50, "0780": 50, "4388": 50, "284": 50, "4673": 50, "5338": 50, "4844": 50, "286": 50, "5002": 50, "0539": 50, "287": 50, "5122": 50, "0829": 50, "5180": 50, "288": 50, "1034": 50, "4579": 50, "289": 50, "0977": 50, "5310": 50, "0918": 50, "4889": 50, "290": 50, "4997": 50, "5296": 50, "291": 50, "5318": 50, "0787": 50, "5288": 50, "292": 50, "0865": 50, "5051": 50, "4685": 50, "293": 50, "0984": 50, "5192": 50, "0924": 50, "4257": 50, "294": 50, "0954": 50, "4874": 50, "0678": 50, "5350": 50, "295": 50, "0030": 50, "5621": 50, "296": 50, "4666": 50, "1116": 50, "4904": 50, "4704": 50, "5260": 50, "298": 50, "5345": 50, "0859": 50, "6286": 50, "299": 50, "4892": 50, "0718": 50, "0915": 50, "4560": 50, "5230": 50, "301": 50, "5008": 50, "4065": 50, "302": 50, "1035": 50, "5205": 50, "4593": 50, "303": 50, "0765": 50, "4813": 50, "0644": 50, "5108": 50, "304": 50, "5113": 50, "305": 50, "4532": 50, "0841": 50, "4653": 50, "306": 50, "4639": 50, "0566": 50, "307": 50, "4288": 50, "0025": 50, "0944": 50, "5556": 50, "308": 50, "4383": 50, "0471": 50, "4951": 50, "309": 50, "4518": 50, "1062": 50, "4879": 50, "310": 50, "0974": 50, "5052": 50, "311": 50, "4810": 50, "6897": 50, "312": 50, "4514": 50, "0648": 50, "5299": 50, "313": 50, "0734": 50, "4414": 50, "314": 50, "0967": 50, "4665": 50, "0593": 50, "4740": 50, "315": 50, "0911": 50, "5248": 50, "1118": 50, "4371": 50, "316": 50, "5135": 50, "0793": 50, "5386": 50, "317": 50, "0900": 50, "5616": 50, "0412": 50, "318": 50, "4941": 50, "5705": 50, "319": 50, "0876": 50, "4674": 50, "4789": 50, "320": 50, "1019": 50, "4950": 50, "0670": 50, "4777": 50, "321": 50, "4492": 50, "5242": 50, "322": 50, "4296": 50, "5220": 50, "323": 50, "0887": 50, "4401": 50, "0875": 50, "4787": 50, "0774": 50, "4597": 50, "4770": 50, "325": 50, "0850": 50, "4553": 50, "4517": 50, "326": 50, "0788": 50, "4651": 50, "0942": 50, "4938": 50, "327": 50, "4852": 50, "0529": 50, "328": 50, "0849": 50, "4641": 50, "1637": 50, "5106": 50, "329": 50, "4870": 50, "330": 50, "4701": 50, "4899": 50, "331": 50, "4490": 50, "0715": 50, "4387": 50, "332": 50, "5070": 50, "5392": 50, "333": 50, "4933": 50, "4604": 50, "334": 50, "0826": 50, "4714": 50, "4230": 50, "335": 50, "0776": 50, "4534": 50, "0716": 50, "4890": 50, "336": 50, "337": 50, "4377": 50, "0806": 50, "5137": 50, "338": 50, "4240": 50, "4896": 50, "339": 50, "0797": 50, "4316": 50, "0026": 50, "0883": 50, "5940": 50, "340": 50, "4396": 50, "0697": 50, "5289": 50, "341": 50, "0868": 50, "4330": 50, "1225": 50, "4125": 50, "0064": 50, "1207": 50, "342": 50, "4568": 50, "5372": 50, "4165": 50, "5404": 50, "344": 50, "0731": 50, "0575": 50, "5161": 50, "345": 50, "0858": 50, "4403": 50, "4211": 50, "346": 50, "4858": 50, "0714": 50, "4429": 50, "347": 50, "0872": 50, "4705": 50, "4521": 50, "348": 50, "0803": 50, "4600": 50, "349": 50, "4713": 50, "0810": 50, "5487": 50, "4095": 50, "0855": 50, "5493": 50, "351": 50, "4668": 50, "352": 50, "0688": 50, "4231": 50, "5158": 50, "353": 50, "4235": 50, "0664": 50, "354": 50, "4410": 50, "4277": 50, "0022": 50, "355": 50, "0694": 50, "4062": 50, "5751": 50, "356": 50, "0452": 50, "5207": 50, "357": 50, "0777": 50, "4606": 50, "0564": 50, "3778": 50, "0017": 50, "358": 50, "0706": 50, "3966": 50, "0460": 50, "359": 50, "0798": 50, "4322": 50, "5060": 50, "360": 50, "0728": 50, "4144": 50, "0737": 50, "4707": 50, "361": 50, "0707": 50, "4161": 50, "0631": 50, "5201": 50, "362": 50, "0741": 50, "4366": 50, "5581": 50, "0751": 50, "4335": 50, "4621": 50, "364": 50, "0815": 50, "4346": 50, "4944": 50, "0834": 50, "4138": 50, "0612": 50, "5849": 50, "366": 50, "0814": 50, "4509": 50, "367": 50, "4145": 50, "0020": 50, "5027": 50, "368": 50, "3853": 50, "5111": 50, "369": 50, "0835": 50, "4076": 50, "370": 50, "4210": 50, "0632": 50, "4395": 50, "371": 50, "0713": 50, "3989": 50, "0348": 50, "5196": 50, "372": 50, "0708": 50, "3985": 50, "0532": 50, "5302": 50, "373": 50, "0959": 50, "4061": 50, "0904": 50, "5035": 50, "374": 50, "0767": 50, "4303": 50, "0343": 50, "4582": 50, "375": 50, "4179": 50, "0645": 50, "5720": 50, "376": 50, "4281": 50, "0458": 50, "5657": 50, "377": 50, "3873": 50, "0552": 50, "4629": 50, "378": 50, "4103": 50, "379": 50, "0878": 50, "4369": 50, "4863": 50, "380": 50, "0786": 50, "4037": 50, "0538": 50, "5706": 50, "381": 50, "0948": 50, "4569": 50, "4806": 50, "382": 50, "4364": 50, "5546": 50, "383": 50, "0705": 50, "5322": 50, "3991": 50, "6034": 50, "385": 50, "0889": 50, "4552": 50, "6138": 50, "0910": 50, "0618": 50, "4932": 50, "387": 50, "3914": 50, "4449": 50, "388": 50, "4036": 50, "0533": 50, "4797": 50, "389": 50, "4398": 50, "5097": 50, "390": 50, "0895": 50, "4056": 50, "4088": 50, "391": 50, "0978": 50, "4452": 50, "0624": 50, "392": 50, "0822": 50, "3845": 50, "1018": 50, "5149": 50, "393": 50, "4289": 50, "0729": 50, "5755": 50, "394": 50, "4079": 50, "0727": 50, "5269": 50, "395": 50, "4791": 50, "0893": 50, "5234": 50, "396": 50, "4393": 50, "4481": 50, "397": 50, "0854": 50, "4142": 50, "0608": 50, "5127": 50, "398": 50, "4009": 50, "0653": 50, "4961": 50, "399": 50, "0902": 50, "0374": 50, "5084": 50, "0371": 50, "401": 50, "4249": 50, "0659": 50, "402": 50, "4511": 50, "0831": 50, "4219": 50, "403": 50, "0817": 50, "4355": 50, "6038": 50, "404": 50, "0709": 50, "4209": 50, "0742": 50, "5339": 50, "405": 50, "4290": 50, "0795": 50, "4016": 50, "406": 50, "0812": 50, "4112": 50, "0747": 50, "4709": 50, "407": 50, "0692": 50, "3903": 50, "0750": 50, "4942": 50, "408": 50, "409": 50, "3705": 50, "4977": 50, "410": 50, "4524": 50, "411": 50, "1345": 50, "4917": 50, "0654": 50, "6322": 50, "412": 50, "0732": 50, "5651": 50, "413": 50, "3874": 50, "0021": 50, "4374": 50, "414": 50, "3990": 50, "4624": 50, "415": 50, "4162": 50, "0689": 50, "5049": 50, "416": 50, "0843": 50, "4229": 50, "0627": 50, "4439": 50, "417": 50, "0758": 50, "3927": 50, "4910": 50, "418": 50, "0719": 50, "4391": 50, "419": 50, "3799": 50, "4788": 50, "420": 50, "3701": 50, "0760": 50, "4960": 50, "421": 50, "0739": 50, "3727": 50, "422": 50, "4266": 50, "0607": 50, "5397": 50, "423": 50, "0752": 50, "3911": 50, "424": 50, "3819": 50, "0019": 50, "0488": 50, "5174": 50, "425": 50, "3779": 50, "0466": 50, "426": 50, "0673": 50, "3724": 50, "0476": 50, "4499": 50, "427": 50, "3807": 50, "5214": 50, "428": 50, "3858": 50, "4972": 50, "429": 50, "3657": 50, "0703": 50, "4747": 50, "430": 50, "3559": 50, "0481": 50, "4710": 50, "431": 50, "0769": 50, "3650": 50, "5152": 50, "432": 50, "0828": 50, "4030": 50, "433": 50, "0790": 50, "3764": 50, "0461": 50, "434": 50, "0832": 50, "3753": 50, "5373": 50, "0730": 50, "3980": 50, "0453": 50, "5193": 50, "436": 50, "3591": 50, "437": 50, "3842": 50, "5185": 50, "438": 50, "3875": 50, "0536": 50, "5182": 50, "439": 50, "3832": 50, "440": 50, "3743": 50, "0661": 50, "4632": 50, "441": 50, "3535": 50, "4888": 50, "442": 50, "3785": 50, "0749": 50, "5117": 50, "443": 50, "0745": 50, "3857": 50, "4479": 50, "444": 50, "5368": 50, "445": 50, "3902": 50, "5306": 50, "446": 50, "447": 50, "448": 50, "3540": 50, "449": 50, "0658": 50, "3940": 50, "0443": 50, "5502": 50, "450": 50, "4040": 50, "0913": 50, "6746": 50, "451": 50, "4491": 50, "0908": 50, "5839": 50, "0799": 50, "4173": 50, "4650": 50, "453": 50, "4339": 50, "1456": 50, "4926": 50, "454": 50, "0972": 50, "3831": 50, "4293": 50, "455": 50, "0570": 50, "4457": 50, "456": 50, "4135": 50, "1386": 50, "457": 50, "4089": 50, "0595": 50, "5902": 50, "458": 50, "3803": 50, "5539": 50, "459": 50, "4140": 50, "5752": 50, "460": 50, "1136": 50, "6984": 50, "461": 50, "1251": 50, "4923": 50, "0444": 50, "5982": 50, "0891": 50, "5961": 50, "1220": 50, "463": 50, "3635": 50, "0376": 50, "5582": 50, "465": 50, "4245": 50, "6244": 50, "466": 50, "0837": 50, "0651": 50, "5165": 50, "467": 50, "0337": 50, "5544": 50, "468": 50, "4223": 50, "0360": 50, "5297": 50, "469": 50, "0606": 50, "3766": 50, "0435": 50, "5262": 50, "4166": 50, "0540": 50, "5024": 50, "472": 50, "3583": 50, "473": 50, "4074": 50, "5457": 50, "474": 50, "0657": 50, "0639": 50, "5001": 50, "3826": 50, "0349": 50, "5065": 50, "476": 50, "4043": 50, "0625": 50, "3692": 50, "477": 50, "3502": 50, "0018": 50, "4843": 50, "1210": 50, "478": 50, "4734": 50, "479": 50, "3898": 50, "0665": 50, "5486": 50, "480": 50, "4011": 50, "5938": 50, "481": 50, "3615": 50, "0554": 50, "4657": 50, "1254": 50, "4724": 50, "483": 50, "3553": 50, "5389": 50, "484": 50, "0641": 50, "3772": 50, "0636": 50, "5098": 50, "485": 50, "3835": 50, "0468": 50, "486": 50, "3344": 50, "5360": 50, "487": 50, "0726": 50, "3469": 50, "5053": 50, "488": 50, "3734": 50, "0949": 50, "4973": 50, "489": 50, "3685": 50, "0597": 50, "5401": 50, "490": 50, "3489": 50, "491": 50, "0753": 50, "3658": 50, "5687": 50, "492": 50, "3566": 50, "0541": 50, "5718": 50, "493": 50, "3746": 50, "494": 50, "0880": 50, "3679": 50, "5715": 50, "495": 50, "0789": 50, "3932": 50, "0807": 50, "4751": 50, "496": 50, "3854": 50, "4267": 50, "497": 50, "0861": 50, "3935": 50, "0691": 50, "498": 50, "3460": 50, "0513": 50, "5370": 50, "499": 50, "3592": 50, "5358": 50, "3690": 50, "5564": 50, "00053215026855": 50, "0017036549776706506": 50, "031901714312218415": 50, "7624330743726": 50, "set_angl": 50, "training_angle100": 50, "get_angl": 50, "atol": 50, "distances_train": 50, "energies_train": 50, "0x2aac25c3f518": 50, "welcom": 51, "sub": [51, 53], "team": [51, 53], "semest": [51, 52, 53], "professor": 52, "spring": 52, "2017": 52, "catmap": 52, "electrolen": 52, "tapsolv": 52, "instructor": [52, 53], "ourselv": 52, "everyon": 52, "speak": 52, "premis": 52, "sophomor": [52, 53], "graduat": [52, 53], "particip": [52, 53], "credit": [52, 53], "receiv": [52, 53], "biweekli": 52, "progress": [52, 53], "person": 52, "accomplish": 52, "teamwork": 52, "thursdai": 52, "canva": [52, 53], "midterm": [52, 53], "deliver": [52, 53], "adventur": 52, "slack": [52, 53], "channel": [52, 53], "hope": 52, "send": 52, "survei": 52, "bot": 52, "f24": 52, "conver": 52, "record": [52, 53], "fine": 52, "appreci": 52, "feedback": 52, "blindli": 52, "trust": 52, "subteam": [52, 53], "suryanarayana": 52, "massiv": 52, "tailor": 52, "reliabl": 52, "undergradu": [52, 53], "logan": [52, 53], "brabson": [52, 53], "sayan": [52, 53], "bhowmik": [52, 53], "represnet": 52, "advis": 52, "mentor": [52, 53], "transit": 52, "neung": [52, 53], "kyung": [52, 53], "yu": [52, 53], "catalyst": 52, "vast": 52, "opportun": [52, 53], "electrochem": 52, "kayle": [52, 53], "tian": [52, 53], "electrochemistri": 52, "electrocatalysi": 52, "sustain": 52, "fuel": 52, "wast": 52, "treatment": 52, "magnet": 52, "reactiv": 52, "influenc": 52, "electrocatalytr": 52, "nutrient": 52, "recoveri": 52, "sludg": 52, "porou": 52, "luca": [52, 53], "timmerman": [52, 53], "air": 52, "biomass": 52, "profici": 52, "underpin": 52, "broader": 52, "advisor": 52, "regularli": 52, "advic": 52, "organiz": 52, "virtual": [52, 53], "room": [52, 53], "attend": 52, "breakout": 52, "subgroup": 52, "campu": [52, 53], "elect": 52, "workshop": [52, 53], "unstructur": 52, "synchron": [52, 53], "lose": 52, "hour": [52, 53], "ahead": 52, "nobodi": 52, "extenst": 52, "button": 52, "ubuntu": 52, "subsystem": 52, "en": 52, "wsl": 52, "win10": 52, "ta": 53, "email": 53, "ajm": 53, "lbrabson3": 53, "ltimmerman3": 53, "ntian30": 53, "sbhowmik9": 53, "offic": 53, "appoint": 53, "am": 53, "app": 53, "vertic": 53, "earn": 53, "academ": 53, "discoveri": 53, "faculti": 53, "expertis": 53, "multidisciplinari": 53, "disciplin": 53, "maintain": 53, "phd": 53, "year": 53, "durat": 53, "career": 53, "disciplinari": 53, "breadth": 53, "profession": 53, "role": 53, "signific": 53, "benefit": 53, "intersect": 53, "electr": 53, "vip_overview": 53, "grade": 53, "login": [53, 61], "enterpris": 53, "workspac": 53, "categori": 53, "decim": 53, "lack": 53, "irrelev": 53, "reserv": 53, "unambigu": 53, "leader": 53, "realist": 53, "deliv": 53, "dialogu": 53, "readm": 53, "grader": 53, "meet": 53, "conduct": [53, 54], "teammat": 53, "flip": 53, "classroom": 53, "pitch": 53, "ex": 53, "thanksgiv": 53, "dai": 53, "notifi": 53, "fairli": 53, "cultiv": 54, "prepar": 54, "confluenc": 54, "coupl": 54, "submiit": 60, "sparc_run": 61, "pbe_pseudo": 61, "pbs_np": 61, "mpirun": 61, "sparc_cor": 61, "sprc": 61}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"adsorpt": [0, 1, 55, 56, 58], "energi": [0, 1, 16, 19, 46, 55, 56, 58], "calcul": [0, 1, 6, 16, 19, 29, 41, 45, 49, 50, 55, 56, 57, 58, 59, 60, 61], "us": [0, 16, 23, 28, 29, 36, 49, 50, 55, 56, 58, 59, 61], "dft": [0, 1, 6, 16, 45, 46, 49, 55, 56, 57, 58, 60, 61], "qe": [0, 48, 55, 58], "from": [1, 28, 32, 36, 38, 40, 46, 59], "sparc": [1, 16, 49, 56, 61], "appendix": 2, "applic": 3, "densiti": [3, 21, 40, 41, 47], "function": [3, 21, 28, 29, 37, 38, 40, 47, 50, 59], "theori": [3, 21, 22, 47], "introduct": [3, 4, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 44, 45, 47, 52, 59], "basic": [4, 32], "python": [4, 28, 30, 31, 44, 49, 59, 61], "tool": [4, 42], "converg": 5, "comput": [5, 23, 35], "paramet": [5, 34], "bulk": [5, 18], "structur": [5, 18, 22, 23, 27, 52, 53], "exercis": [5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 48, 49, 51, 57, 60, 61], "recommend": [5, 21], "read": [5, 21, 28, 30, 32, 59], "creat": [6, 28, 29, 41, 59], "environ": [6, 23], "quantum": [6, 48, 52, 53, 57, 60], "espresso": [6, 48, 57, 60], "7": 6, "0": [6, 34, 38, 41], "setup": 6, "knowledg": 6, "requir": 6, "walk": 6, "through": [6, 23], "exampl": [6, 19, 32, 35, 36, 37, 38, 40, 41], "lrt": 6, "compil": 6, "1": [7, 8, 9, 10, 11, 12, 13, 14, 15, 38, 52], "2": [7, 9, 10, 11, 12, 13, 14, 15, 38], "3": [9, 10, 11, 12, 13, 14, 15], "4": [12, 14, 15], "5": 15, "ga": [16, 46], "format": [16, 28, 32, 52, 53, 59], "develop": [17, 52], "goal": [17, 32], "intro": [18, 19, 20, 24], "build": [18, 41, 55, 56, 58], "ASE": [18, 19], "The": [18, 23, 27, 30, 35, 38, 59], "atom": [18, 44, 46, 55, 56, 58], "object": [18, 30, 50, 53, 59], "molecul": 18, "crystal": 18, "surfac": [18, 55, 56, 58], "set": [18, 30, 33, 49, 59, 61], "up": [18, 49, 61], "constraint": 18, "summari": [18, 21, 35], "reaction": [19, 46], "more": [19, 40], "about": [19, 52, 53], "support": [19, 38], "interfac": [19, 30, 49, 59, 61], "classif": [20, 37, 39], "gener": [20, 37, 38, 41], "model": [20, 33, 34, 36, 37, 38, 39, 40, 41, 46, 50], "exchang": 21, "correl": [21, 35, 36], "pseudopotenti": [21, 57, 60], "spin": 21, "polar": 21, "magnet": 21, "electron": 22, "linux": [23, 52], "high": [23, 24, 35, 41], "perform": [23, 36], "termin": 23, "move": 23, "file": [23, 29, 59], "ls": 23, "command": 23, "cd": 23, "quick": 23, "problem": [23, 37, 40], "make": [23, 29, 50, 59], "directori": 23, "remov": [23, 28, 59], "run": [23, 47, 48, 49, 57, 60, 61], "code": [23, 39, 49], "script": 23, "alias": 23, "ssh": 23, "To": 23, "get": [23, 49, 61], "onto": 23, "supercomput": [23, 49, 57], "cluster": [23, 40, 49, 57], "regress": [24, 33, 38], "dimension": [24, 29, 35, 36, 59], "data": [24, 29, 31, 35, 52, 53, 59], "ml": 25, "potenti": [25, 27], "content": [25, 26, 27, 43, 50], "machin": [26, 33, 38, 42, 43], "learn": [26, 32, 33, 36, 42, 43], "neural": [27, 38, 50], "network": [27, 38, 50], "nnp": [27, 50], "tabl": [27, 50], "name": [27, 28, 50, 59], "descriptor": 27, "fingerprint": [27, 50], "scheme": [27, 50], "fp_scheme": 27, "atomist": 27, "nn_structur": 27, "prepar": [27, 40], "instal": [27, 52], "amptorch": 27, "conda": 27, "refer": [27, 32], "program": [28, 59], "import": [28, 49, 59, 61], "modul": [28, 59], "document": [28, 53, 59], "inform": [28, 34, 41, 59], "variabl": [28, 59], "type": [28, 37, 40, 59], "protect": [28, 59], "fundament": [28, 59], "compound": [28, 59], "string": [28, 59], "list": [28, 59], "dictionari": [28, 59], "print": [28, 59], "ad": [28, 59], "insert": [28, 59], "modifi": [28, 40, 59], "element": [28, 29, 46, 59], "tupl": [28, 59], "loop": [28, 59], "comprehens": [28, 59], "default": [28, 59], "argument": [28, 59], "keyword": [28, 59], "unnam": [28, 59], "anonym": [28, 59], "lambda": [28, 59], "class": [28, 37, 59], "inherit": [28, 59], "except": [28, 59], "further": [28, 30, 59], "numpi": [29, 59], "multidimension": [29, 59], "arrai": [29, 59], "i": [29, 59], "o": [29, 50, 59], "manipul": [29, 44, 59], "index": [29, 59], "slice": [29, 59], "fanci": [29, 59], "transpos": [29, 59], "linear": [29, 31, 33, 38, 59], "algebra": [29, 31, 59], "scalar": [29, 59], "oper": [29, 37, 59], "wise": [29, 59], "matrix": [29, 33, 35, 36, 46, 59], "common": [29, 59], "process": [29, 37, 59], "higher": [29, 59], "reshap": [29, 59], "resiz": [29, 59], "deep": [29, 59], "copi": [29, 59], "condit": [29, 37, 59], "matplotlib": [30, 59], "plot": [30, 35, 38, 40, 59], "matlab": [30, 59], "like": [30, 52, 59], "api": [30, 59], "orient": [30, 59], "figur": [30, 32, 59], "size": [30, 34, 59], "aspect": [30, 59], "ratio": [30, 59], "dpi": [30, 59], "save": [30, 59], "titl": [30, 59], "label": [30, 41, 59], "legend": [30, 59], "color": [30, 59], "linewidth": [30, 59], "linetyp": [30, 59], "control": [30, 59], "over": [30, 59], "axi": [30, 59], "appear": [30, 59], "twin": [30, 59], "ax": [30, 59], "text": [30, 59], "annot": [30, 59], "colormap": [30, 59], "contour": [30, 59], "imag": [30, 59], "3d": [30, 59], "version": [30, 59], "scipi": [31, 59], "librari": [31, 59], "scientif": [31, 32, 59], "algorithm": [31, 32, 40, 59], "numer": [31, 59], "integr": [31, 59], "fix": [31, 59], "quadratur": [31, 59], "interpol": [31, 33, 59], "optim": [31, 34, 38, 59], "find": [31, 36, 40, 59], "minima": [31, 59], "solv": [31, 59], "an": [31, 32, 36, 50, 59], "equat": [31, 59], "statist": [31, 35, 59], "test": [31, 59], "system": [31, 59], "eigenvalu": [31, 59], "eigenvector": [31, 59], "search": 32, "literatur": 32, "strategi": [32, 57, 60], "absolut": 32, "rel": 32, "continu": [32, 43], "updat": 32, "ai": 32, "power": 32, "evalu": 32, "journal": 32, "manag": 32, "A": [32, 33], "new": [32, 39, 41, 52], "subject": 32, "paper": 32, "typic": 32, "zoom": 32, "In": 32, "arbitrari": 32, "guidelin": 32, "direct": 32, "vip": [32, 51, 52, 53], "student": [32, 52], "question": 32, "review": [32, 53], "assign": [32, 52], "skim": 32, "summar": 32, "overal": 32, "work": [32, 52], "what": [32, 33, 34, 35, 37, 38, 39, 40, 49, 61], "most": 32, "interest": 32, "relev": 32, "main": 32, "thing": 32, "you": [32, 38, 39, 52], "strongest": 32, "point": 32, "weakest": 32, "how": [32, 36, 38, 40, 52], "doe": [32, 35, 38, 52], "relat": [32, 34], "your": [32, 37], "research": [32, 52], "project": [32, 52], "non": [33, 38, 39], "parametr": [33, 38, 39], "perspect": 33, "vs": [33, 41, 46], "discuss": [33, 34, 35, 36, 37, 38, 39, 40], "column": 33, "space": 33, "why": [33, 34, 36], "do": [33, 35, 38, 39, 49, 61], "we": [33, 40], "fit_intercept": 33, "fals": [33, 37], "kernel": [33, 36, 38, 41], "complex": 34, "criteria": 34, "regular": [34, 52], "smooth": 34, "its": 34, "happen": [34, 40], "alpha": [34, 38], "rightarrow": 34, "infti": 34, "lasso": 34, "hyperparamet": [34, 39], "tune": 34, "dataset": [35, 37, 38, 40, 50], "dow": 35, "mnist": 35, "curs": 35, "bless": 35, "inspect": 35, "featur": 35, "mean": [35, 40], "standard": [35, 52], "deviat": 35, "each": 35, "histogram": [35, 41], "follow": 35, "normal": [35, 41], "distribut": [35, 41], "scatter": 35, "vertic": 35, "horizont": 35, "line": [35, 37, 38], "joint": 35, "reduct": 36, "overview": [36, 37, 40, 41, 52], "practic": 36, "consider": 36, "assess": 36, "varianc": 36, "distanc": [36, 40], "visual": 36, "princip": 36, "compon": 36, "analysi": 36, "pca": [36, 40], "thi": [36, 38, 39], "differ": [36, 37], "ar": [36, 37, 39], "block": 36, "rank": 36, "covari": 36, "averag": 36, "10": [36, 38], "vector": [36, 38], "8": 36, "other": 36, "variant": 36, "approach": 36, "manifold": 36, "autoencod": 36, "statement": [37, 40], "toi": 37, "which": [37, 38, 39, 40], "discrimin": [37, 38], "accuraci": [37, 40], "metric": [37, 40], "valid": 37, "posit": [37, 55, 56, 58], "neg": 37, "consid": [37, 55, 56, 58], "chemic": [37, 46], "where": 37, "predict": [37, 39, 50], "whether": 37, "reactor": 37, "runawai": 37, "implic": 37, "precis": 37, "recal": 37, "f1": 37, "score": [37, 40], "receiv": 37, "characterist": 37, "roc": 37, "curv": 37, "confus": 37, "matric": 37, "cross": 37, "resampl": 37, "multi": 37, "deriv": 37, "loss": [37, 38], "slope": 37, "intercept": 37, "between": 37, "two": 37, "count": 37, "some": 37, "perceptron": 38, "can": [38, 40, 41, 52], "go": [38, 50], "wrong": 38, "max": 38, "cost": 38, "logist": [38, 53], "compar": [38, 46], "after": 38, "moon": 38, "margin": 38, "best": 38, "100": 38, "Is": [38, 39], "think": [38, 39], "decis": [38, 39], "boundari": 38, "chang": [38, 50, 53], "c": 38, "gamma": 38, "altern": 39, "method": 39, "k": [39, 40], "nearest": 39, "neighbor": 39, "knn": 39, "reliabl": 39, "part": 39, "train": [39, 50, 52, 53, 54], "advantag": 39, "disadvantag": 39, "naiv": 39, "bay": [39, 41], "tree": 39, "conclus": 39, "expect": 40, "maxim": 40, "might": 40, "outlier": 40, "gaussian": [40, 41], "mixtur": [40, 41], "step": 40, "silhouett": 40, "number": 40, "gmm": [40, 41], "base": 40, "shift": [40, 46], "initi": 40, "guess": 40, "veri": 40, "far": 40, "awai": 40, "dbscan": 40, "hierarch": 40, "dendrogram": 40, "agglom": 40, "bayesian": 41, "criterion": 41, "dimens": 41, "digit": 41, "6": 41, "estim": 41, "kde": 41, "Not": 41, "so": 41, "na\u00efv": 41, "posterior": 41, "probail": 41, "simpl": [41, 49, 57], "concept": 42, "nut": 45, "bolt": 45, "referenc": 46, "bind": 46, "case": 46, "studi": 46, "microkinet": 46, "co": 46, "co_2": 46, "hydrogen": 46, "methanol": 46, "water": [46, 50], "dr": 46, "grabow": 46, "dagger": 46, "42": 46, "elementari": 46, "30": 46, "speci": 46, "raw": 46, "stoichiometr": 46, "y": 46, "ic": 46, "s": 46, "pace": [47, 48, 49, 57, 60], "phoenix": [48, 57, 60], "note": [49, 61], "submit": [49, 61], "cuco": 50, "symmetri": 50, "2nd": 50, "gen": 50, "nnff": 50, "training_bp": 50, "construct": 50, "defin": 50, "configur": 50, "trainer": 50, "hit": 50, "ase": 50, "2d": 50, "gmp": 50, "singlenn": 50, "training_gmp": 50, "fit": 50, "1d": 50, "pe": 50, "h": 50, "bond": 50, "length": 50, "materi": 51, "lectur": [51, 52, 56], "big": [52, 53], "mechan": [52, 53], "medford": [52, 54], "group": [52, 54], "prof": 52, "aj": 52, "grade": 52, "cours": [52, 53], "commun": 52, "overarch": 52, "chatdft": 52, "team": 52, "return": 52, "omsc": 52, "post": 52, "sub": 52, "meet": 52, "schedul": [52, 53], "syllabu": [52, 53], "week": 52, "softwar": 52, "anaconda3": 52, "ensur": 52, "access": 52, "unix": 52, "prompt": 52, "window": 52, "user": 52, "mac": 52, "descript": 53, "person": 53, "accomplish": 53, "submiss": 53, "teamwork": 53, "interact": 53, "graduat": 54, "o_2": [55, 56, 58], "platinum": [55, 56, 58], "pt": [55, 56, 58], "constrain": [55, 56, 58], "need": 56, "edit": 56, "link": 56, "select": [57, 60]}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9, "sphinx": 56}})
\ No newline at end of file