speechbrain
English
Spoken language understanding
Mirco commited on
Commit
f97ae55
1 Parent(s): db48774

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -28,9 +28,9 @@ You can try the model on the `example_fsc.wav` file included here as follows:
28
 
29
  ```python
30
  from speechbrain.pretrained import EndToEndSLU
31
- slu = EndToEndSLU.from_hparams("/network/tmp1/ravanelm/slu-direct-fluent-speech-commands-librispeech-asr")
32
  # Text: "Please, turn on the light of the bedroom"
33
- slu.decode_file("/network/tmp1/ravanelm/slu-direct-fluent-speech-commands-librispeech-asr/example_fsc.wav")
34
  #>>> '{"action:" "activate"| "object": "lights"| "location": "bedroom"}'
35
  ```
36
  The system is trained with recordings sampled at 16kHz (single channel).
 
28
 
29
  ```python
30
  from speechbrain.pretrained import EndToEndSLU
31
+ slu = EndToEndSLU.from_hparams("speechbrain/slu-direct-fluent-speech-commands-librispeech-asr")
32
  # Text: "Please, turn on the light of the bedroom"
33
+ slu.decode_file("speechbrain//slu-direct-fluent-speech-commands-librispeech-asr/example_fsc.wav")
34
  #>>> '{"action:" "activate"| "object": "lights"| "location": "bedroom"}'
35
  ```
36
  The system is trained with recordings sampled at 16kHz (single channel).