|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- nodes:
- - id: camera
- path: dora-reachy2-camera
- _unstable_deploy:
- machine: encoder
- inputs:
- tick: dora/timer/millis/20
- outputs:
- - image_left
- - image_depth
- - depth
- env:
- IMAGE_WIDTH: 640
- IMAGE_HEIGHT: 480
- ROBOT_IP: 127.0.0.1
-
- - id: reachy-left-arm
- build: pip install -e ../../node-hub/dora-reachy2
- path: dora-reachy2-left-arm
- _unstable_deploy:
- machine: encoder
- inputs:
- pose: parse_pose/action_l_arm
- outputs:
- - response_l_arm
- env:
- ROBOT_IP: 127.0.0.1
-
- - id: reachy-right-arm
- build: pip install -e ../../node-hub/dora-reachy2
- path: dora-reachy2-right-arm
- _unstable_deploy:
- machine: encoder
- inputs:
- pose: parse_pose/action_r_arm
- outputs:
- - response_r_arm
- env:
- ROBOT_IP: 127.0.0.1
-
- - id: rav1e-local-image
- path: dora-rav1e
- build: cargo build -p dora-rav1e --release
- _unstable_deploy:
- machine: encoder
- inputs:
- image_depth: camera/image_depth
- image_left: camera/image_left
- outputs:
- - image_left
- - image_depth
- env:
- RAV1E_SPEED: 10
-
- - id: rav1e-local-depth
- path: dora-rav1e
- build: cargo build -p dora-rav1e --release
- _unstable_deploy:
- machine: encoder
- inputs:
- depth: camera/depth
- outputs:
- - depth
- env:
- RAV1E_SPEED: 7
-
- - id: dav1d-remote
- path: dora-dav1d
- build: cargo build -p dora-dav1d --release
- _unstable_deploy:
- machine: gpu
- inputs:
- image_depth: rav1e-local-image/image_depth
- image_left: rav1e-local-image/image_left
- depth: rav1e-local-depth/depth
- outputs:
- - image_left
- - image_depth
- - depth
-
- - id: dora-microphone
- build: pip install -e ../../node-hub/dora-microphone
- path: dora-microphone
- _unstable_deploy:
- machine: macbook
- inputs:
- tick: dora/timer/millis/2000
- outputs:
- - audio
-
- - id: dora-vad
- build: pip install -e ../../node-hub/dora-vad
- _unstable_deploy:
- machine: macbook
- path: dora-vad
- inputs:
- audio: dora-microphone/audio
- outputs:
- - audio
-
- - id: dora-distil-whisper
- build: pip install -e ../../node-hub/dora-distil-whisper
- _unstable_deploy:
- machine: gpu
- path: dora-distil-whisper
- inputs:
- input: dora-vad/audio
- outputs:
- - text
- env:
- TARGET_LANGUAGE: english
-
- - id: parse_whisper
- path: parse_whisper.py
- _unstable_deploy:
- machine: gpu
- inputs:
- text: dora-distil-whisper/text
- arrived: parse_point/arrived
- outputs:
- - bbox
- - action
- - points
- - text
- - action_release_left
- - action_release_right
- env:
- IMAGE_RESIZE_RATIO: "1.0"
-
- - id: dora-qwenvl
- build: pip install -e ../../node-hub/dora-qwen2-5-vl
- path: dora-qwen2-5-vl
- _unstable_deploy:
- machine: gpu
- inputs:
- image_left: dav1d-remote/image_left
- image_depth: dav1d-remote/image_depth
- text: parse_whisper/text
- outputs:
- - text
- env:
- DEFAULT_QUESTION: Output the bounding box of the suitcase.
- IMAGE_RESIZE_RATIO: "1.0"
-
- - id: parse_bbox
- path: parse_bbox.py
- _unstable_deploy:
- machine: gpu
- inputs:
- text: dora-qwenvl/text
- points: parse_whisper/points
- outputs:
- - bbox_track
- - bbox_grab
- env:
- IMAGE_RESIZE_RATIO: "1.0"
-
- - id: sam2
- build: pip install -e ../../node-hub/dora-sam2
- path: dora-sam2
- _unstable_deploy:
- machine: gpu
- inputs:
- image_depth: dav1d-remote/image_depth
- boxes2d: parse_bbox/bbox_grab
- outputs:
- - masks
-
- - id: tracker
- build: pip install -e ../../node-hub/dora-cotracker
- path: dora-cotracker
- _unstable_deploy:
- machine: gpu
- inputs:
- image: dav1d-remote/image_left
- boxes2d: parse_bbox/bbox_track
- outputs:
- - tracked_image
- - points
- env:
- INTERACTIVE_MODE: false
-
- - id: box_coordinates
- build: pip install -e ../../node-hub/dora-object-to-pose
- path: dora-object-to-pose
- _unstable_deploy:
- machine: gpu
- inputs:
- depth: dav1d-remote/depth
- masks: sam2/masks
- outputs:
- - pose
-
- - id: parse_pose
- path: parse_pose.py
- _unstable_deploy:
- machine: gpu
- inputs:
- pose: box_coordinates/pose
- response_r_arm: reachy-right-arm/response_r_arm
- response_l_arm: reachy-left-arm/response_l_arm
- release_left: parse_whisper/action_release_left
- release_right: parse_whisper/action_release_right
- outputs:
- - action_r_arm
- - action_l_arm
- env:
- IMAGE_RESIZE_RATIO: "1.0"
-
- - id: parse_point
- path: parse_point.py
- _unstable_deploy:
- machine: gpu
- inputs:
- points: tracker/points
- outputs:
- - action
- - arrived
- env:
- IMAGE_RESIZE_RATIO: "1.0"
-
- - id: reachy-mobile-base
- build: pip install -e ../../node-hub/dora-reachy2
- path: dora-reachy2-mobile-base
- _unstable_deploy:
- machine: encoder
- inputs:
- action_base: parse_point/action
- action_whisper: parse_whisper/action
- outputs:
- - response_base
- env:
- ROBOT_IP: 127.0.0.1
-
- - id: plot
- build: pip install -e ../../node-hub/dora-rerun
- path: dora-rerun
- _unstable_deploy:
- machine: macbook
- inputs:
- image: dav1d-remote/image_left
- torso/image: dav1d-remote/image_depth
- torso/depth: dav1d-remote/depth
- torso/boxes2d: parse_bbox/bbox
- original_text: dora-distil-whisper/text
- parsed_text: parse_whisper/text
- qwenvl_text: dora-qwenvl/text
- env:
- RERUN_MEMORY_LIMIT: 5%
- CAMERA_PITCH: 2.47
|