update readme
Browse files
README.md
CHANGED
|
@@ -82,8 +82,8 @@ The models in this repository follow the naming convention `Tau_<series>_<max_st
|
|
| 82 |
|
| 83 |
1. Clone the repository:
|
| 84 |
```bash
|
| 85 |
-
git clone https://github.com/
|
| 86 |
-
cd tau
|
| 87 |
```
|
| 88 |
|
| 89 |
2. Install the required Python packages:
|
|
@@ -98,14 +98,15 @@ The models in this repository follow the naming convention `Tau_<series>_<max_st
|
|
| 98 |
|
| 99 |
To start training the agent, run the following command:
|
| 100 |
```bash
|
| 101 |
-
mlagents-learn config
|
| 102 |
```
|
|
|
|
| 103 |
|
| 104 |
### Monitoring Training
|
| 105 |
|
| 106 |
You can monitor the training progress using TensorBoard:
|
| 107 |
```bash
|
| 108 |
-
tensorboard --logdir
|
| 109 |
```
|
| 110 |
|
| 111 |
## Results
|
|
|
|
| 82 |
|
| 83 |
1. Clone the repository:
|
| 84 |
```bash
|
| 85 |
+
git clone https://github.com/p3nGu1nZz/Tau.git
|
| 86 |
+
cd tau\MLAgentsProject
|
| 87 |
```
|
| 88 |
|
| 89 |
2. Install the required Python packages:
|
|
|
|
| 98 |
|
| 99 |
To start training the agent, run the following command:
|
| 100 |
```bash
|
| 101 |
+
mlagents-learn .\config\tau_agent_ppo_c.yaml --run-id=tau_agent_ppo_A0 --env .\Build --torch-device cuda --timeout-wait 300 --force
|
| 102 |
```
|
| 103 |
+
Note: The preferred way to run a build is by creating a new build into the `Build` directory which is referenced by the above command.
|
| 104 |
|
| 105 |
### Monitoring Training
|
| 106 |
|
| 107 |
You can monitor the training progress using TensorBoard:
|
| 108 |
```bash
|
| 109 |
+
tensorboard --logdir results
|
| 110 |
```
|
| 111 |
|
| 112 |
## Results
|