jleibs commited on
Commit
6c0bd0b
1 Parent(s): 424d52b

Consistent usage of Hugging Face

Browse files
Files changed (3) hide show
  1. Dockerfile +1 -1
  2. README.md +6 -6
  3. app.py +1 -1
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- # This Dockerfile is used for creating the HuggingFace docker space
2
  # See: https://huggingface.co/docs/hub/en/spaces-sdks-docker
3
 
4
  FROM python:3.11.8
 
1
+ # This Dockerfile is used for creating the Hugging Face docker space
2
  # See: https://huggingface.co/docs/hub/en/spaces-sdks-docker
3
 
4
  FROM python:3.11.8
README.md CHANGED
@@ -9,8 +9,8 @@ pinned: false
9
  license: mit
10
  ---
11
 
12
- # Rerun visualization of HuggingFace datasets
13
- Visualize HuggingFace datasets using [Rerun](https://www.rerun.io/).
14
 
15
  Originally built for the LeRobot datasets:
16
 
@@ -19,7 +19,7 @@ Originally built for the LeRobot datasets:
19
 
20
  https://github.com/rerun-io/python-example-lerobot/assets/1148717/19e9983c-531f-4c48-9b37-37c5cbe1e0bd
21
 
22
- Deployed live on hugging-face: https://huggingface.co/spaces/rerun/preview_dataset
23
 
24
  ## Getting started (native)
25
  Requires Python 3.10 or higher.
@@ -44,11 +44,11 @@ uvicorn app:app --reload
44
  * `nateraw/kitti`
45
  * `sayakpaul/nyu_depth_v2`
46
 
47
- ## Deploying to HuggingFace
48
 
49
- HuggingFace space runs off of the head `main` branch pushed to: https://huggingface.co/spaces/rerun/preview_dataset/tree/main
50
 
51
- To update this from the rerun repository, add the HuggingFace repository as an additional remote,
52
  and then push to it.
53
  ```sh
54
  git remote add huggingface [email protected]:spaces/rerun/preview_dataset
 
9
  license: mit
10
  ---
11
 
12
+ # Rerun visualization of Hugging Face datasets
13
+ Visualize Hugging Face datasets using [Rerun](https://www.rerun.io/).
14
 
15
  Originally built for the LeRobot datasets:
16
 
 
19
 
20
  https://github.com/rerun-io/python-example-lerobot/assets/1148717/19e9983c-531f-4c48-9b37-37c5cbe1e0bd
21
 
22
+ Deployed live on Hugging Face: https://huggingface.co/spaces/rerun/preview_dataset
23
 
24
  ## Getting started (native)
25
  Requires Python 3.10 or higher.
 
44
  * `nateraw/kitti`
45
  * `sayakpaul/nyu_depth_v2`
46
 
47
+ ## Deploying to Hugging Face
48
 
49
+ Hugging Face space runs off of the head `main` branch pushed to: https://huggingface.co/spaces/rerun/preview_dataset/tree/main
50
 
51
+ To update this from the rerun repository, add the Hugging Face repository as an additional remote,
52
  and then push to it.
53
  ```sh
54
  git remote add huggingface [email protected]:spaces/rerun/preview_dataset
app.py CHANGED
@@ -1,5 +1,5 @@
1
  """
2
- A Gradio app that uses Rerun to visualize a Huggingface dataset.
3
 
4
  This app mounts the Gradio app inside of FastAPI in order to set the CORS headers.
5
 
 
1
  """
2
+ A Gradio app that uses Rerun to visualize a Hugging Face dataset.
3
 
4
  This app mounts the Gradio app inside of FastAPI in order to set the CORS headers.
5