-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
2,175 additions
and
0 deletions.
There are no files selected for viewing
2,155 changes: 2,155 additions & 0 deletions
2,155
tutorials/actor-critic_tutorial/Actor_Critic.ipynb
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Value Based Methods and Q-learning | ||
|
||
Welcome to the Value Based Methods and Q-learning Tutorial. | ||
<br> | ||
<br> | ||
|
||
<img src="https://gymnasium.farama.org/_images/frozen_lake.gif"> | ||
|
||
|
||
## Setup | ||
|
||
You can run this code on your own machine or on Google Colab. | ||
|
||
1. **Local option:** If you choose to run locally, you will need to install some Python packages. | ||
2. **Colab:** The first few sections of the notebook will install all required dependencies. You can try out the Colab option by clicking the badge below: | ||
|
||
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/CLAIR-LAB-TECHNION/CLAI/blob/dev/tutorials/tut06/Value_Based_Methods.ipynb) | ||
|
||
|
||
We highly recommend running this tutorial on Colab as it will save you a lot of time and effort in dealing with the setup for the notebook. |