├── .devcontainer ├── devcontainer.json └── icon.svg ├── .gitignore ├── LICENSE ├── README.md ├── data └── atlantis.csv ├── notebooks ├── image-classifier.ipynb ├── matplotlib.ipynb └── population.ipynb └── requirements.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-jupyter/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-jupyter/HEAD/.devcontainer/icon.svg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-jupyter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-jupyter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-jupyter/HEAD/README.md -------------------------------------------------------------------------------- /data/atlantis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-jupyter/HEAD/data/atlantis.csv -------------------------------------------------------------------------------- /notebooks/image-classifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-jupyter/HEAD/notebooks/image-classifier.ipynb -------------------------------------------------------------------------------- /notebooks/matplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-jupyter/HEAD/notebooks/matplotlib.ipynb -------------------------------------------------------------------------------- /notebooks/population.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-jupyter/HEAD/notebooks/population.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-jupyter/HEAD/requirements.txt --------------------------------------------------------------------------------