929 B
929 B
curiosity
quickstart
. ./jupyter.shruns jupyter-lab (setting everything up if necessary)
Note, run scripts using source <scriptname> or . ./<scriptname>
helper scripts
. ./update_env.shcreates or updates the project python environment. ./activate_env.shactivate the project environment (calling update if missing). ./deactivate_env.shdeactivate the project environment. ./jupyter.shruns jupyter-lab (calling activate for safety)
structure
├── code
│ ├── agents/ # agent algorithms
│ ├── environments/ # test environments
│ └── evolve.py # sample evolution code
├── notebooks/ # example notebooks
├── papers/ # useful shared docs
├── requirements-conda.txt # conda project dependencies
├── requirements-pip.txt # pip project dependencies (sometimes necessary)