Skip to content

Commit 874c13b

Browse files
committed
fix build path
1 parent 43f6142 commit 874c13b

File tree

124 files changed

+531
-480
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+531
-480
lines changed

benches/llms/llama_cpp_python.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ nodes:
1212
TEXT_TRUTH: "This is a test"
1313

1414
- id: llm
15-
build: pip install -e ../../node-hub/dora-llama-cpp-python
15+
build: pip install -e ../../dora-llama-cpp-python
1616
path: dora-llama-cpp-python
1717
inputs:
1818
text:

benches/llms/phi4.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ nodes:
1414
- id: llm
1515
build: |
1616
pip install flash-attn --no-build-isolation
17-
pip install -e ../../node-hub/dora-phi4
17+
pip install -e ../../dora-phi4
1818
path: dora-phi4
1919
inputs:
2020
text: benchmark_script/text

benches/llms/qwen2.5.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ nodes:
1313

1414
- id: llm
1515
build: |
16-
pip install -e ../../node-hub/dora-qwen
16+
pip install -e ../../dora-qwen
1717
path: dora-qwen
1818
inputs:
1919
text: benchmark_script/text

benches/llms/transformers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ nodes:
1212
TEXT_TRUTH: "This is a test"
1313

1414
- id: llm
15-
build: pip install -e ../../node-hub/dora-transformers
15+
build: pip install -e ../../dora-transformers
1616
path: dora-transformers
1717
inputs:
1818
text: benchmark_script/text

benches/mllm/phi4.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ nodes:
1313

1414
- id: llm
1515
build: |
16-
pip install -e ../../node-hub/dora-phi4
16+
pip install -e ../../dora-phi4
1717
path: dora-phi4
1818
inputs:
1919
text: benchmark_script/text

benches/vlm/magma.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ nodes:
1111
TEXT_TRUTH: "This is a cat"
1212

1313
- id: llm
14-
build: pip install -e ../../node-hub/dora-magma
14+
build: pip install -e ../../dora-magma
1515
path: dora-magma
1616
inputs:
1717
text: benchmark_script/text

benches/vlm/phi4.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ nodes:
1313
- id: llm
1414
build: |
1515
pip install flash-attn --no-build-isolation
16-
pip install -e ../../node-hub/dora-phi4
16+
pip install -e ../../dora-phi4
1717
path: dora-phi4
1818
inputs:
1919
text: benchmark_script/text

benches/vlm/qwen2.5vl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ nodes:
1313
- id: vlm
1414
# Comment flash_attn if not on cuda hardware
1515
build: |
16-
pip install -e ../../node-hub/dora-qwen2-5-vl
16+
pip install -e ../../dora-qwen2-5-vl
1717
path: dora-qwen2-5-vl
1818
inputs:
1919
image: benchmark_script/image

dora-dataset-record/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Node for recording robot datasets in LeRobot format. You can captures synchroniz
1212
### 1. Installation
1313

1414
```bash
15-
# Source your venv
15+
# Source your venv
1616
cd dora/node-hub/dora-dataset-record
1717
uv pip install -e .
1818
```
@@ -25,7 +25,7 @@ Create a dataflow file, see `examples/lerobot-dataset-record/dataset_record.yml`
2525
nodes:
2626
# Dataset recorder
2727
- id: dataset_recorder
28-
build: pip install -e ../../node-hub/dora-dataset-record
28+
build: pip install -e ../../dora-dataset-record
2929
path: dora-dataset-record
3030
inputs:
3131
laptop: laptop_cam/image
@@ -39,25 +39,25 @@ nodes:
3939
REPO_ID: "your_username/your_dataset_name"
4040
SINGLE_TASK: "Pick up the cube and place it in the box"
4141
ROBOT_TYPE: "your_robot_type"
42-
42+
4343
# Recording settings
4444
FPS: "30"
45-
TOTAL_EPISODES: "50"
45+
TOTAL_EPISODES: "50"
4646
EPISODE_DURATION_S: "60"
4747
RESET_DURATION_S: "15"
48-
48+
4949
# Camera configuration
5050
CAMERA_NAMES: "laptop,front"
5151
CAMERA_LAPTOP_RESOLUTION: "480,640,3"
5252
CAMERA_FRONT_RESOLUTION: "480,640,3"
53-
53+
5454
# Robot configuration
5555
ROBOT_JOINTS: "joint1,joint2,joint3,joint4,joint5,gripper"
56-
56+
5757
# Optional settings
5858
USE_VIDEOS: "true"
5959
SAVE_AVIF_FRAMES: "true" # This will additionally save frames
60-
PUSH_TO_HUB: "false"
60+
PUSH_TO_HUB: "false"
6161
PRIVATE: "false"
6262
TAGS: "robotics,manipulation,imitation_learning"
6363

@@ -105,4 +105,4 @@ The node will send instructions on dora-rerun, about episode starting, reset tim
105105

106106
## License
107107

108-
This project is released under the MIT License.
108+
This project is released under the MIT License.

dora-gradio/demo.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ nodes:
33
build: pip install -e .
44
path: dora-gradio
55
outputs:
6-
- text # Text from chat interface
7-
- audio # Raw audio stream
8-
- image # Camera feed
6+
- text # Text from chat interface
7+
- audio # Raw audio stream
8+
- image # Camera feed
99

1010
- id: plot
1111
build: pip install dora-rerun
@@ -16,7 +16,7 @@ nodes:
1616
text_whisper: dora-distil-whisper/text
1717

1818
- id: dora-vad
19-
build: pip install -e ../../node-hub/dora-vad
19+
build: pip install -e ../../dora-vad
2020
path: dora-vad
2121
inputs:
2222
audio: ui/audio
@@ -25,11 +25,11 @@ nodes:
2525
- timestamp_start
2626

2727
- id: dora-distil-whisper
28-
build: pip install -e ../../node-hub/dora-distil-whisper
28+
build: pip install -e ../../dora-distil-whisper
2929
path: dora-distil-whisper
3030
inputs:
3131
input: dora-vad/audio
3232
outputs:
3333
- text
3434
env:
35-
TARGET_LANGUAGE: english
35+
TARGET_LANGUAGE: english

0 commit comments

Comments
 (0)