Update README.md

fix some readme typos
This commit is contained in:
Kashif Rasul 2024-03-12 10:05:05 +01:00 committed by GitHub
parent 48e70e044e
commit 337208f28d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 8 deletions

View File

@ -2,7 +2,7 @@
## Installation
Create a virtual environment with python 3.10, e.g. using `conda`:
Create a virtual environment with Python 3.10, e.g. using `conda`:
```
conda create -y -n lerobot python=3.10
conda activate lerobot
@ -29,8 +29,6 @@ To use [Weights and Biases](https://docs.wandb.ai/quickstart) for experiments tr
wandb login
```
## Usage
@ -61,8 +59,8 @@ env=pusht
## TODO
- [x] priority update doesnt match FOWM or original paper
- [x] self.step=100000 should be updated at every step to adjust to horizon of planner
- [x] priority update doesn't match FOWM or original paper
- [x] self.step=100000 should be updated at every step to adjust to the horizon of the planner
- [ ] prefetch replay buffer to speedup training
- [ ] parallelize env to speed up eval
- [ ] clean checkpointing / loading
@ -145,7 +143,7 @@ Run tests
DATA_DIR="tests/data" pytest -sx tests
```
## Acknowledgements
## Acknowledgment
- Our Diffusion policy and Pusht environment are adapted from [Diffusion Policy](https://diffusion-policy.cs.columbia.edu/)
- Our TDMPC policy and Simxarm environment are adapted from [FOWM](https://www.yunhaifeng.com/FOWM/)
- Our ACT policy and ALOHA environment are adapted from [ALOHA](https://tonyzhaozh.github.io/aloha/)