Update app.py
Browse files
app.py
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
|
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
|
|
|
|
|
|
| 5 |
|
| 6 |
-
|
|
|
|
|
|
|
| 7 |
iface.launch()
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM, TextGenerationPipeline
|
| 3 |
import gradio as gr
|
| 4 |
|
| 5 |
+
model_name = "Writer/palmyra-small"
|
| 6 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 7 |
+
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
| 8 |
+
model = AutoModelForCausalLM.from_pretrained(model_name).to(device)
|
| 9 |
|
| 10 |
+
text_generator = TextGenerationPipeline(model=model, tokenizer=tokenizer)
|
| 11 |
+
|
| 12 |
+
iface = gr.Interface(fn=text_generator, inputs="text", outputs="text")
|
| 13 |
iface.launch()
|