sander-wood commited on
Commit
c8fe19a
β€’
1 Parent(s): 514d06e

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -67,6 +67,14 @@ MAN: Wow, that's expensive!
67
  Bark model by [Suno](https://suno.ai/), including official [code](https://github.com/suno-ai/bark) and model weights. \
68
  Gradio demo supported by πŸ€— Hugging Face. Bark is licensed under a non-commercial license: CC-BY 4.0 NC, see details on [GitHub](https://github.com/suno-ai/bark).
69
  """
 
 
 
 
 
 
 
 
70
 
71
  CLAMP_MODEL_NAME = 'clamp-small-512'
72
  QUERY_MODAL = 'text'
@@ -217,4 +225,5 @@ gr.Interface(
217
  outputs=[output_title, output_artist, output_genre, output_description, output_abc],
218
  title="πŸ—œοΈ CLaMP: Semantic Music Search",
219
  description=description,
220
- article=article).launch()
 
 
67
  Bark model by [Suno](https://suno.ai/), including official [code](https://github.com/suno-ai/bark) and model weights. \
68
  Gradio demo supported by πŸ€— Hugging Face. Bark is licensed under a non-commercial license: CC-BY 4.0 NC, see details on [GitHub](https://github.com/suno-ai/bark).
69
  """
70
+ examples = [
71
+ "Jazz standard in Minor key with a swing feel.",
72
+ "Jazz standard in Major key with a fast tempo.",
73
+ "Jazz standard in Blues form with a soulfoul melody.",
74
+ "a painting of a starry night with the moon in the sky",
75
+ "a green field with a blue sky and clouds",
76
+ "a beach with a castle on top of it"
77
+ ]
78
 
79
  CLAMP_MODEL_NAME = 'clamp-small-512'
80
  QUERY_MODAL = 'text'
 
225
  outputs=[output_title, output_artist, output_genre, output_description, output_abc],
226
  title="πŸ—œοΈ CLaMP: Semantic Music Search",
227
  description=description,
228
+ article=article,
229
+ examples=examples).launch()