RonHoHo commited on
Commit
32ee615
1 Parent(s): 4aedaa4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -3,4 +3,9 @@ from gradio.mix import Series
3
 
4
  title="Chinese Text Generator and Translator"
5
  description="Input Chiknese language text,"
6
- gr.Interface.load("huggingface/bigscience/bloom-560m",title="Text Generator Five w/Variables",description="Input your text,submit and the maching will output text.").launch()
 
 
 
 
 
 
3
 
4
  title="Chinese Text Generator and Translator"
5
  description="Input Chiknese language text,"
6
+
7
+ model1 = gr.Interface.load("huggingface/gpt2")
8
+ model2 = gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
9
+ model3 = gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
10
+
11
+ gr.Interface.load("huggingface/bigscience/bloom-560m",title="Text Generator Five w/Variables",description="Input your text,submit and the maching will output text.").launch()