Browse Source

Adding example mention in node README

tags/v0.3.6
haixuanTao 1 year ago
parent
commit
1087b4ef2d
11 changed files with 28 additions and 21 deletions
  1. +3
    -1
      node-hub/dora-distil-whisper/README.md
  2. +0
    -20
      node-hub/dora-distil-whisper/graphs/dataflow.yml
  3. +2
    -0
      node-hub/dora-echo/README.md
  4. +2
    -0
      node-hub/dora-microphone/README.md
  5. +4
    -0
      node-hub/opencv-plot/README.md
  6. +4
    -0
      node-hub/opencv-video-capture/README.md
  7. +2
    -0
      node-hub/pyarrow-assert/README.md
  8. +2
    -0
      node-hub/pyarrow-sender/README.md
  9. +2
    -0
      node-hub/terminal-input/README.md
  10. +3
    -0
      node-hub/terminal-print/README.md
  11. +4
    -0
      node-hub/ultralytics-yolo/README.md

+ 3
- 1
node-hub/dora-distil-whisper/README.md View File

@@ -1 +1,3 @@
# Dora Node for transforming speech to text
# Dora Node for transforming speech to text (English only)

Check example at [examples/speech-to-text](examples/speech-to-text)

+ 0
- 20
node-hub/dora-distil-whisper/graphs/dataflow.yml View File

@@ -1,20 +0,0 @@
nodes:
- id: dora-microphone
build: pip install -e ../../dora-microphone
path: dora-microphone
outputs:
- audio

- id: dora-distil-whisper
build: pip install -e ../.
path: dora-distil-whisper
inputs:
audio: dora-microphone/audio
outputs:
- text

- id: terminal-print
build: cargo build -p terminal-print
path: dynamic
inputs:
text: dora-distil-whisper/text

+ 2
- 0
node-hub/dora-echo/README.md View File

@@ -1,3 +1,5 @@
# Dora echo node

This node will just echo whatever it receives as is.

Check example at [examples/echo](examples/echo)

+ 2
- 0
node-hub/dora-microphone/README.md View File

@@ -1,3 +1,5 @@
# Dora Node for recording data from microphone

This node will send data as soon as the microphone volume is higher than a threshold.

Check example at [examples/speech-to-text](examples/speech-to-text)

+ 4
- 0
node-hub/opencv-plot/README.md View File

@@ -84,6 +84,10 @@ encoded_text = pa.array([text])
decoded_text = encoded_text[0].as_py()
```

## Example

Check example at [examples/python-dataflow](examples/python-dataflow)

## License

This project is licensed under Apache-2.0. Check out [NOTICE.md](../../NOTICE.md) for more information.

+ 4
- 0
node-hub/opencv-video-capture/README.md View File

@@ -61,6 +61,10 @@ frame = (
)
```

## Examples

Check example at [examples/python-dataflow](examples/python-dataflow)

## License

This project is licensed under Apache-2.0. Check out [NOTICE.md](../../NOTICE.md) for more information.

+ 2
- 0
node-hub/pyarrow-assert/README.md View File

@@ -1,3 +1,5 @@
# Dora Node for asserting arrow data.

This node assert that the DATA that is specified within the environment variable or from `--data` argument is the same as the data received.

Check example at [examples/pyarrow-test](examples/pyarrow-test)

+ 2
- 0
node-hub/pyarrow-sender/README.md View File

@@ -1,3 +1,5 @@
# Dora Node for sending arrow data.

This node send DATA that is specified within the environment variable or from `--data` argument.

Check example at [examples/pyarrow-test](examples/pyarrow-test)

+ 2
- 0
node-hub/terminal-input/README.md View File

@@ -1,3 +1,5 @@
# Dora Node for sending terminal input data.

This node send the data that is given to him within a terminal window.

Check example at [examples/echo](examples/echo)

+ 3
- 0
node-hub/terminal-print/README.md View File

@@ -0,0 +1,3 @@
# Print received inputs in the terminal

Check example at [examples/speech-to-text](examples/speech-to-text)

+ 4
- 0
node-hub/ultralytics-yolo/README.md View File

@@ -76,6 +76,10 @@ decoded_bbox = {
}
```

## Example

Check example at [examples/python-dataflow](examples/python-dataflow)

## License

This project is licensed under Apache-2.0. Check out [NOTICE.md](../../NOTICE.md) for more information.

Loading…
Cancel
Save