From d2dc1cc7b720e180c5399be6b799e5183c8a9e4f Mon Sep 17 00:00:00 2001 From: Ivan-267 <61947090+Ivan-267@users.noreply.github.com> Date: Wed, 30 Aug 2023 11:10:56 +0200 Subject: [PATCH] Update ADV_STABLE_BASELINES_3.md Small correction --- docs/ADV_STABLE_BASELINES_3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ADV_STABLE_BASELINES_3.md b/docs/ADV_STABLE_BASELINES_3.md index 74579d1d..9ba19a3a 100644 --- a/docs/ADV_STABLE_BASELINES_3.md +++ b/docs/ADV_STABLE_BASELINES_3.md @@ -78,7 +78,7 @@ You can optionally set an experiment directory and name to override the default. python stable_baselines3_example.py --experiment_dir="experiments" --experiment_name="experiment1" ``` -### Train a model for 10_000 steps then save and export the model +### Train a model for 100_000 steps then save and export the model The exported .onnx model can be used by the Godot sync node to run inference from Godot directly, while the saved .zip model can be used to resume training later or run inference from the example script by adding `--inference`. ```bash python stable_baselines3_example.py --timesteps=100_000 --onnx_export_path=model.onnx --save_model_path=model.zip