-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix broken examples documention links. #2118
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
.. _base_examples: | ||
|
||
Base Examples | ||
============== | ||
|
||
Several examples are made available to help you get started with SMARTS. | ||
|
||
|
||
#. Egoless | ||
|
||
+ script: :examples:`e1_egoless.py` | ||
+ No agent | ||
+ Using a SMARTS environment without an agent. | ||
|
||
#. Single-agent | ||
|
||
+ script: :examples:`e2_single_agent.py` | ||
+ Single-agent | ||
+ Using a SMARTS environment with a single agent. | ||
|
||
#. Multi-agent | ||
|
||
+ script: :examples:`e3_multi_agent.py` | ||
+ Multi-agent | ||
+ Using a SMARTS environment with multiple agents. | ||
|
||
#. Environment configuration | ||
|
||
+ script: :examples:`e4_environment_config.py` | ||
+ Demonstrates how to configure a SMARTS environment. | ||
|
||
#. Agent zoo | ||
|
||
+ script: :examples:`e5_agent_zoo.py` | ||
+ Demonstrates how to use the agent zoo to retrieve an agent. | ||
|
||
#. Agent configuration | ||
|
||
+ script: :examples:`e6_agent_action_space.py` | ||
+ Demonstrates how to configure the action space for an agent. | ||
|
||
#. Experiment base | ||
|
||
+ script: :examples:`e7_experiment_base.py` | ||
+ An example of how to put together a larger experiment with configuration files. | ||
|
||
#. Parallel Environments | ||
|
||
+ script: :examples:`e8_parallel_environment.py` | ||
+ A primitive use of SMARTS environments in parallel. | ||
|
||
#. Jupyter Notebook | ||
|
||
+ script: :examples:`e9_notebook.py` | ||
+ A primitive use of SMARTS in a Jupyter Notebook. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,24 @@ | ||
.. _rl_model: | ||
|
||
RL Model | ||
======== | ||
RL Models | ||
========= | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
These examples demonstrate some ways to use SMARTS to generate RL models. | ||
|
||
drive.rst | ||
platoon.rst | ||
|
||
#. Driving SMARTS Drive | ||
|
||
+ directory: :examples:`e10_drive` | ||
+ This example was developed in conjunction with the :ref:`Driving SMARTS 2023.1 & 2023.2 <driving_smarts_2023_1>` benchmark, hence refer to it for details. | ||
|
||
|
||
#. Driving SMARTS Platoon | ||
|
||
+ directory: :examples:`e11_platoon` | ||
+ This example was developed in conjunction with the :ref:`Driving SMARTS 2023.3 <driving_smarts_2023_3>` benchmark, hence refer to it for details. | ||
|
||
|
||
#. RLlib | ||
|
||
+ directory: :examples:`e12_rllib` | ||
+ See the :ref:`RLlib integration <rllib>` for additional examples. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider adding instructions to run the examples.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The examples have help integrated or run just on call.