jezthejirzaman commited on
Commit
f670c93
·
1 Parent(s): 1e30fc8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -623,11 +623,11 @@ def speak(input, tokenLength):
623
 
624
 
625
  model = gr.Interface(fn=speak,
626
- theme = 'gstaff/xkcd',
627
  inputs=[gr.Textbox(label = "initial text", placeholder="To be or not to be"), gr.Slider(1, 40, step=1, value=40)],
628
  outputs="text",
629
  title = "speak shakespeare, speak!",
630
- description = "a miniature shakespeare, built from scratch by Cody Rushing via a Decoder-Only Transformer trained on shakespeare's works.\n many, but not all, words are tokenizable - if you get an error, try again with different words!")
631
 
632
  model.launch(share=False)
633
 
 
623
 
624
 
625
  model = gr.Interface(fn=speak,
626
+ theme = 'dark',
627
  inputs=[gr.Textbox(label = "initial text", placeholder="To be or not to be"), gr.Slider(1, 40, step=1, value=40)],
628
  outputs="text",
629
  title = "speak shakespeare, speak!",
630
+ description = "a miniature shakespeare, built from scratch. Decoder-Only Transformer trained on shakespeare's works.\n many, but not all, words are tokenizable - if you get an error, try again with different words!")
631
 
632
  model.launch(share=False)
633