Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ashkan-software committed Dec 24, 2019
1 parent 2a084f4 commit 8f6b76d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tutorials/tutorial02_aimsun.ipynb
Expand Up @@ -351,7 +351,7 @@
"exp = Experiment(env)\n",
"\n",
"# run the experiment for a set number of rollouts / time steps\n",
"_ = exp.run(1, 3000)"
"_ = exp.run(1)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tutorials/tutorial04_visualize.ipynb
Expand Up @@ -121,7 +121,7 @@
"Then, you have to tell Flow to convert these XML emission files into CSV files. To do that, pass in `convert_to_csv=True` to the `run` method of your experiment object. For instance:\n",
"\n",
"```python\n",
"exp.run(1, 1500, convert_to_csv=True)\n",
"exp.run(1, convert_to_csv=True)\n",
"```"
]
},
Expand Down
2 changes: 1 addition & 1 deletion tutorials/tutorial05_networks.ipynb
Expand Up @@ -459,7 +459,7 @@
"exp = Experiment(env)\n",
"\n",
"# run the sumo simulation for a set number of time steps\n",
"_ = exp.run(1, 1500)"
"_ = exp.run(1)"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions tutorials/tutorial06_osm.ipynb
Expand Up @@ -122,9 +122,9 @@
" network=network\n",
")\n",
"\n",
"# run the simulation for 1000 steps\n",
"# run the simulation\n",
"exp = Experiment(env=env)\n",
"exp.run(1, 1000)"
"exp.run(1)"
]
},
{
Expand Down

0 comments on commit 8f6b76d

Please sign in to comment.