Skip to content

Fix downloading of lerobot dataset #3

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

Merged
merged 6 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ RUN pip install --no-cache-dir --upgrade pip
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
COPY --chown=user . $HOME/app

# https://github.com/huggingface/lerobot/issues/105
RUN pip install --no-cache-dir --upgrade cmake

# Install requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt

Expand Down
1 change: 1 addition & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from pathlib import Path

import gradio as gr
import lerobot.common.datasets.video_utils
import rerun as rr
from datasets import load_dataset
from fastapi import FastAPI
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ lint.unfixable = [

[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
"app.py" = ["F401"]

[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ pillow
rerun-sdk>=0.15.0,<0.16.0
tqdm
webdataset
git+https://github.com/huggingface/lerobot@7bb5b15f4c0393ba16b73f6482611892301401d7#egg=lerobot
Loading