Spaces:
Sleeping
Sleeping
Commit
·
7a8b3ff
1
Parent(s):
a272843
fix datasets import
Browse files- app.py +1 -0
- pyproject.toml +1 -0
- requirements.txt +1 -0
app.py
CHANGED
@@ -13,6 +13,7 @@ import urllib
|
|
13 |
from pathlib import Path
|
14 |
|
15 |
import gradio as gr
|
|
|
16 |
import rerun as rr
|
17 |
from datasets import load_dataset
|
18 |
from fastapi import FastAPI
|
|
|
13 |
from pathlib import Path
|
14 |
|
15 |
import gradio as gr
|
16 |
+
import lerobot.common.datasets.video_utils
|
17 |
import rerun as rr
|
18 |
from datasets import load_dataset
|
19 |
from fastapi import FastAPI
|
pyproject.toml
CHANGED
@@ -65,6 +65,7 @@ lint.unfixable = [
|
|
65 |
|
66 |
[tool.ruff.lint.per-file-ignores]
|
67 |
"__init__.py" = ["F401", "F403"]
|
|
|
68 |
|
69 |
[tool.ruff.lint.isort]
|
70 |
required-imports = ["from __future__ import annotations"]
|
|
|
65 |
|
66 |
[tool.ruff.lint.per-file-ignores]
|
67 |
"__init__.py" = ["F401", "F403"]
|
68 |
+
"app.py" = ["F401"]
|
69 |
|
70 |
[tool.ruff.lint.isort]
|
71 |
required-imports = ["from __future__ import annotations"]
|
requirements.txt
CHANGED
@@ -6,3 +6,4 @@ pillow
|
|
6 |
rerun-sdk>=0.15.0,<0.16.0
|
7 |
tqdm
|
8 |
webdataset
|
|
|
|
6 |
rerun-sdk>=0.15.0,<0.16.0
|
7 |
tqdm
|
8 |
webdataset
|
9 |
+
git+https://github.com/huggingface/lerobot@7bb5b15f4c0393ba16b73f6482611892301401d7#egg=lerobot
|