wisdomfunction commited on
Commit
8419ff8
·
1 Parent(s): fd4de92

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -1,6 +1,11 @@
1
  import gradio as gr
2
 
 
 
3
 
 
 
 
4
 
5
  title = "GPT-Guide: London"
6
  description = """
 
1
  import gradio as gr
2
 
3
+ # Create a pipeline
4
+ gpt2 = pipeline('text-generation', model=model, tokenizer=tokenizer)
5
 
6
+ def predict(prompt):
7
+ generated_text = gpt2(prompt, max_length=100)[0]['generated_text']
8
+ return generated_text
9
 
10
  title = "GPT-Guide: London"
11
  description = """