Kaiizx commited on
Commit
b1b0223
·
1 Parent(s): 86239a7
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -54,12 +54,11 @@ def tokenize(buffer: str):
54
 
55
 
56
 
57
- description = "Story generation with GPT-2"
58
- title = "Generate your own story"
59
- examples = [["Adventurer is approached by a mysterious stranger in the tavern for a new quest."]]
60
 
61
  interface = gr.Interface(
62
  fn=tokenize,
 
63
  inputs="text",
64
  outputs="text",
65
  )
 
54
 
55
 
56
 
57
+
 
 
58
 
59
  interface = gr.Interface(
60
  fn=tokenize,
61
+ title = "Tokenizer"
62
  inputs="text",
63
  outputs="text",
64
  )