|
|
||
|---|---|---|
| alice_fast | ||
| alice_tools | ||
| bench | ||
| code | ||
| notebooks | ||
| papers | ||
| .gitignore | ||
| LICENSE | ||
| README.md | ||
| activate_env.sh | ||
| deactivate_env.sh | ||
| jupyter.sh | ||
| requirements-conda.txt | ||
| requirements-pip.txt | ||
| update_env.sh | ||
README.md
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)