Spaces:
Runtime error
Runtime error
Logan
commited on
Commit
·
1ce9ac8
1
Parent(s):
29a2dfc
add application file
Browse files- app.py +34 -0
- requirements.txt +3 -0
app.py
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as grad
|
2 |
+
import torch
|
3 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
4 |
+
|
5 |
+
def load_prompter():
|
6 |
+
prompter_model = AutoModelForCausalLM.from_pretrained("microsoft/Promptist")
|
7 |
+
tokenizer = AutoTokenizer.from_pretrained("gpt2")
|
8 |
+
tokenizer.pad_token = tokenizer.eos_token
|
9 |
+
tokenizer.padding_side = "left"
|
10 |
+
return prompter_model, tokenizer
|
11 |
+
|
12 |
+
prompter_model, prompter_tokenizer = load_prompter()
|
13 |
+
|
14 |
+
def generate(plain_text):
|
15 |
+
input_ids = prompter_tokenizer(plain_text.strip()+" Rephrase:", return_tensors="pt").input_ids
|
16 |
+
eos_id = prompter_tokenizer.eos_token_id
|
17 |
+
outputs = prompter_model.generate(input_ids, do_sample=False, max_new_tokens=75, num_beams=8, num_return_sequences=8, eos_token_id=eos_id, pad_token_id=eos_id, length_penalty=-1.0)
|
18 |
+
output_texts = prompter_tokenizer.batch_decode(outputs, skip_special_tokens=True)
|
19 |
+
res = output_texts[0].replace(plain_text+" Rephrase:", "").strip()
|
20 |
+
return res
|
21 |
+
|
22 |
+
txt = grad.Textbox(lines=1, label="Initial Text", placeholder="Input Prompt")
|
23 |
+
out = grad.Textbox(lines=1, label="Optimized Prompt")
|
24 |
+
examples = ["A rabbit is wearing a space suit", "Several railroad tracks with one train passing by", "The roof is wet from the rain", "Cats dancing in a space club"]
|
25 |
+
|
26 |
+
grad.Interface(fn=generate,
|
27 |
+
inputs=txt,
|
28 |
+
outputs=out,
|
29 |
+
title="Promptist Demo",
|
30 |
+
description="Promptist is a prompt interface for Stable Diffusion v1-4 (https://huggingface.co/CompVis/stable-diffusion-v1-4) that optimizes user input into model-preferred prompts. The online demo at Hugging Face Spaces is using CPU, so slow generation speed would be expected. Please load the model locally with GPUs for faster generation.",
|
31 |
+
examples=examples,
|
32 |
+
allow_flagging='never',
|
33 |
+
cache_examples=False,
|
34 |
+
theme="default").launch(enable_queue=True, debug=True)
|
requirements.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
torch
|
2 |
+
transformers==4.23.1
|
3 |
+
pytorch_lightning==1.7.7
|