Spaces:
Runtime error
Runtime error
Commit
·
8419ff8
1
Parent(s):
fd4de92
Update app.py
Browse files
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 = """
|