Skip to content
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

Update rl_intro2.rst #385

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/spinningup/rl_intro2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Unlike model-free RL, there aren't a small number of easy-to-define clusters of
* The `ExIt`_ algorithm uses this approach to train deep neural networks to play Hex.
* `AlphaZero`_ is another example of this approach.

**Data Augmentation for Model-Free Methods.** Use a model-free RL algorithm to train a policy or Q-function, but either 1) augment real experiences with fictitious ones in updating the agent, or 2) use *only* fictitous experience for updating the agent.
**Data Augmentation for Model-Free Methods.** Use a model-free RL algorithm to train a policy or Q-function, but either 1) augment real experiences with fictitious ones in updating the agent, or 2) use *only* fictitious experience for updating the agent.

* See `MBVE`_ for an example of augmenting real experiences with fictitious ones.
* See `World Models`_ for an example of using purely fictitious experience to train the agent, which they call "training in the dream."
Expand Down