Skip to content

Commit

Permalink
chore: tests, tutorials
Browse files Browse the repository at this point in the history
  • Loading branch information
bagjohn committed Dec 17, 2024
1 parent f06c357 commit d16ec6b
Show file tree
Hide file tree
Showing 29 changed files with 798 additions and 710 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ coverage.xml
.hypothesis/
.pytest_cache/
cover/
.ruff_cache/

# Translations
*.mo
Expand All @@ -77,6 +78,7 @@ docs/_build/
/docs/source/content/
/docs/build/
/dist/
/docs/diagram/

# PyBuilder
.pybuilder/
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ Launch the web server :

`larvaworld-app`

Then open http://localhost:5006 in your browser (if not automatically opened).

## GUI (deprecated)

A user-friendly GUI allows easy importation, inspection and analysis of data, model, life-history and environment configuration, visualization and data-acquisition setup and control over simulations, essays and batch-runs. Videos and tutorials are also available. In principle the user shouldn't have to mess with the code at all.
Expand Down
26 changes: 13 additions & 13 deletions docs/tutorials/CONFTYPES.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -33,15 +33,6 @@
"The configuration types (conftypes) stored in the registry can be accessed easily :"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"print(larvaworld.CONFTYPES)"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand All @@ -55,6 +46,15 @@
"For example, the ConfType instance responsible for a conftype :\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"print(larvaworld.CONFTYPES)"
]
},
{
"cell_type": "code",
"execution_count": null,
Expand Down Expand Up @@ -190,7 +190,7 @@
},
{
"cell_type": "code",
"execution_count": 11,
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -201,7 +201,7 @@
},
{
"cell_type": "code",
"execution_count": 11,
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
Expand Down Expand Up @@ -274,7 +274,7 @@
"kernelspec": {
"display_name": "larvaworld_autoversioning",
"language": "python",
"name": "larvaworld_autoversioning"
"name": "python3"
},
"language_info": {
"codemirror_mode": {
Expand Down
91 changes: 6 additions & 85 deletions docs/tutorials/cli.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -95,34 +95,9 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": null,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Initializing larvaworld registry\n",
"Registry configured!\n"
]
},
{
"data": {
"text/plain": [
"['Box2D',\n",
" 'Nsteps',\n",
" 'constant_framerate',\n",
" 'dt',\n",
" 'duration',\n",
" 'fr',\n",
" 'larva_collisions']"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"outputs": [],
"source": [
"from larvaworld.lib.param import RuntimeOps, SimOps\n",
"from larvaworld.cli.argparser import ParserArgumentDict\n",
Expand Down Expand Up @@ -161,31 +136,9 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['agent_ids',\n",
" 'close_view',\n",
" 'draw_Nsegs',\n",
" 'env_params',\n",
" 'fix_point',\n",
" 'fix_segment',\n",
" 'overlap_mode',\n",
" 'refDir',\n",
" 'refID',\n",
" 'time_range',\n",
" 'track_point',\n",
" 'transposition']"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"outputs": [],
"source": [
"# Available replay-mode arguments\n",
"Replay = ParserArgumentDict.from_param(d0=reg.gen.Replay)\n",
Expand All @@ -201,17 +154,9 @@
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": null,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{'screen_kws': <larvaworld.cli.argparser.ParserArgumentDict object at 0x7f197f7a2100>, 'SimOps': <larvaworld.cli.argparser.ParserArgumentDict object at 0x7f197f4d10d0>, 'RuntimeOps': <larvaworld.cli.argparser.ParserArgumentDict object at 0x7f197f4235e0>, 'Replay': <larvaworld.cli.argparser.ParserArgumentDict object at 0x7f197f550940>, 'Eval': <larvaworld.cli.argparser.ParserArgumentDict object at 0x7f197f668d30>, 'GAselector': <larvaworld.cli.argparser.ParserArgumentDict object at 0x7f197f356c10>, 'GAevaluation': <larvaworld.cli.argparser.ParserArgumentDict object at 0x7f197f7c0c40>}\n"
]
}
],
"outputs": [],
"source": [
"from larvaworld.cli.argparser import SimModeParser\n",
"\n",
Expand All @@ -225,30 +170,6 @@
"# print(P.__dict__)"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{'VERBOSE': 2, 'show_parser_args': False, 'sim_mode': None}\n"
]
}
],
"source": [
"from cli_test_helpers import shell, ArgvContext\n",
"\n",
"\n",
"with ArgvContext(\"larvaworld -verbose 0 Exp dish -N 5 -duration 3\"):\n",
" P = SimModeParser()\n",
" P.parse_args()\n",
" print(P.args)\n",
" # P.configure(show_args=P.args.show_parser_args)"
]
},
{
"cell_type": "code",
"execution_count": null,
Expand Down
289 changes: 15 additions & 274 deletions docs/tutorials/environment_configuration.ipynb

Large diffs are not rendered by default.

Loading

0 comments on commit d16ec6b

Please sign in to comment.