Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
| 2 |
+
import gradio as gr
|
| 3 |
+
|
| 4 |
+
tokenizer = AutoTokenizer.from_pretrained("merve/chatgpt-prompts-bart-long")
|
| 5 |
+
model = AutoModelForSeq2SeqLM.from_pretrained("merve/chatgpt-prompts-bart-long")
|
| 6 |
+
|
| 7 |
+
def generate(prompt):
|
| 8 |
+
|
| 9 |
+
batch = tokenizer(prompt, return_tensors="pt")
|
| 10 |
+
generated_ids = model.generate(batch["input_ids"], max_new_tokens=150)
|
| 11 |
+
output = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)
|
| 12 |
+
return output[0]
|
| 13 |
+
|
| 14 |
+
input_component = gr.Textbox(label = "Input a persona, e.g. photographer", value = "photographer")
|
| 15 |
+
output_component = gr.Textbox(label = "Prompt")
|
| 16 |
+
examples = [["photographer"], ["developer"]]
|
| 17 |
+
description = "This app generates ChatGPT prompts, it's based on a BART model trained on [this dataset](https://huggingface.co/datasets/fka/awesome-chatgpt-prompts). Simply enter a persona that you want the prompt to be generated based on."
|
| 18 |
+
gr.Interface(generate, inputs = input_component, output=output_component, title = "ChatGPT Prompt Generator", description=description).launch()
|