Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit c3fd94f

Browse files
committed
fix dependence and redirect url.
1 parent 3594979 commit c3fd94f

3 files changed

Lines changed: 17 additions & 11 deletions

File tree

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ We introduce **EO-1** model, an open-source unified embodied foundation model co
6767
Clone the repository:
6868

6969
```bash
70-
git clone https://github.com/EO-Robotics/EO-1.git
71-
cd EO-1
70+
git clone https://github.com/EO-Robotics/EO1.git
71+
cd EO1
7272
```
7373

7474
Create a conda environment and install dependencies:
@@ -79,14 +79,13 @@ conda create -n eo python=3.10
7979
conda activate eo
8080
pip install --upgrade setuptools
8181

82-
# install flash-attn 2
83-
MAX_JOBS=4 pip install flash-attn==2.8.3 --no-build-isolation
84-
8582
# [recommended] ⭐️ install flash-attn 3 from source with H100 / H800 GPU, CUDA 12.8 for best performance
8683
# git clone https://github.com/Dao-AILab/flash-attn.git -b v2.8.3 --recursive --depth 1
8784
# cd hopper && python setup.py install
88-
8985
pip install -e .
86+
87+
# install flash-attn 2
88+
MAX_JOBS=4 pip install flash-attn==2.8.3 --no-build-isolation
9089
```
9190

9291
## Examples
@@ -313,6 +312,10 @@ Robot Control Benchmark Results
313312
- [ ] ⚡️ Efficient LLM Inference over Long Sequences, Efficient KV-cache, etc.
314313
- [ ] 🤖 Integrate with human feedback fine-tuning.
315314

315+
## Troubleshooting
316+
317+
1. If you encounter the error `FFmpeg is not properly installed in your environment. We support`, you can install it with `conda install ffmpeg`.
318+
316319
## 🤝 Contributing
317320

318321
We welcome contributions! Please check out CONTRIBUTING.md. Join our community on Discord.

eo/data/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class MMDatasetConfig:
2929
@dataclass
3030
class LerobotConfig:
3131
repo_id: str
32-
root: str
32+
root: str | None = None
3333
episodes: list[int] | None = None
3434
delta_action: bool = False
3535
state_mode: str = "MEAN_STD"

pyproject.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ build-backend = "setuptools.build_meta"
44

55
[project.urls]
66
homepage = "https://eo-robotics.ai"
7-
documentation = "https://github.com/EO-Robotics/EO-1/getting_started"
8-
source = "https://github.com/EO-Robotics/EO-1"
9-
issues = "https://github.com/EO-Robotics/EO-1/issues"
7+
documentation = "https://github.com/EO-Robotics/EO1/getting_started"
8+
source = "https://github.com/EO-Robotics/EO1"
9+
issues = "https://github.com/EO-Robotics/EO1/issues"
1010
discord = "https://discord.com/invite/JqfDs6va"
1111

1212
[project]
@@ -36,8 +36,9 @@ dependencies = [
3636
# Hugging Face dependencies
3737
"datasets>=2.19.0,<=3.6.0",
3838
"huggingface-hub[hf-transfer,cli]>=0.34.2",
39-
"lerobot>=0.3.3",
39+
"lerobot>=0.3.3,<=0.3.4",
4040
"transformers==4.56.0",
41+
"accelerate>=1.10.1",
4142

4243
# Core dependencies
4344
"cmake>=3.29.0.1",
@@ -56,6 +57,8 @@ dependencies = [
5657

5758
# Binpacking dependency
5859
"binpacking>=1.5.0",
60+
"qwen_vl_utils>=0.0.11",
61+
"ujson>=5.11.0",
5962
]
6063
# Optional dependencies
6164
[project.optional-dependencies]

0 commit comments

Comments
 (0)