Luis Oala commited on
Commit
7caf466
·
1 Parent(s): 423a328

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -2,19 +2,18 @@
2
  #TODO: use transformer library directly
3
  import gradio as gr
4
  from gradio import mix
5
- #from transformers import pipeline, set_seed
6
 
7
  #title = "trustworthy artificial intelligence workshop - content generator"
8
  description = "based on the gpt2 demo interface by <a href='https://huggingface.co/spaces/docs-demos/gpt2/tree/main'>ahsen khaliq</a>"
9
 
10
  #io1 = gr.Interface.load("huggingface/distilgpt2")
11
 
12
- #generator = pipeline('text-generation', model='gpt2')
13
- #set_seed(42)
14
 
15
 
16
  io2 = gr.Interface.load("huggingface/gpt2-large")
17
- #TODO: 1) seed 2) output lenght
18
 
19
  #io3 = gr.Interface.load("huggingface/gpt2-medium")
20
 
@@ -31,8 +30,8 @@ def inference(text):
31
  else:
32
  outtext = io1(text)
33
  """
34
- outtext = io2(text, max_length=60)
35
- #outtext = generator(text, max_length=30, num_return_sequences=5)
36
  return outtext
37
 
38
 
 
2
  #TODO: use transformer library directly
3
  import gradio as gr
4
  from gradio import mix
5
+ from transformers import pipeline, set_seed
6
 
7
  #title = "trustworthy artificial intelligence workshop - content generator"
8
  description = "based on the gpt2 demo interface by <a href='https://huggingface.co/spaces/docs-demos/gpt2/tree/main'>ahsen khaliq</a>"
9
 
10
  #io1 = gr.Interface.load("huggingface/distilgpt2")
11
 
12
+ generator = pipeline('text-generation', model='gpt2')
13
+ set_seed(42)
14
 
15
 
16
  io2 = gr.Interface.load("huggingface/gpt2-large")
 
17
 
18
  #io3 = gr.Interface.load("huggingface/gpt2-medium")
19
 
 
30
  else:
31
  outtext = io1(text)
32
  """
33
+ #outtext = io2(text)
34
+ outtext = generator(text, max_length=30, num_return_sequences=5)
35
  return outtext
36
 
37