sanchit-gandhi HF staff commited on
Commit
ee252bb
1 Parent(s): ea0ca2f
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -20,7 +20,7 @@ title = "MusicGen Streaming"
20
  description = """
21
  Stream the outputs of the MusicGen text-to-music model by playing the generated audio as soon as the first chunk is ready.
22
  Demo uses [MusicGen Small](https://huggingface.co/facebook/musicgen-small) in the 🤗 Transformers library. Note that the
23
- demo works best on the Chrome browser. If there is no audio output, try switching browsers to Chrome.
24
  """
25
 
26
  article = """
@@ -60,7 +60,7 @@ class MusicgenStreamer(BaseStreamer):
60
  ):
61
  """
62
  Streamer that stores playback-ready audio in a queue, to be used by a downstream application as an iterator. This is
63
- useful for applications that benefit from acessing the generated audio in a non-blocking way (e.g. in an interactive
64
  Gradio demo).
65
 
66
  Parameters:
 
20
  description = """
21
  Stream the outputs of the MusicGen text-to-music model by playing the generated audio as soon as the first chunk is ready.
22
  Demo uses [MusicGen Small](https://huggingface.co/facebook/musicgen-small) in the 🤗 Transformers library. Note that the
23
+ demo works best on the Chrome browser. If there is no audio output, try switching browser to Chrome.
24
  """
25
 
26
  article = """
 
60
  ):
61
  """
62
  Streamer that stores playback-ready audio in a queue, to be used by a downstream application as an iterator. This is
63
+ useful for applications that benefit from accessing the generated audio in a non-blocking way (e.g. in an interactive
64
  Gradio demo).
65
 
66
  Parameters: