Update app.py
Browse files
app.py
CHANGED
@@ -1,53 +1,53 @@
|
|
1 |
import gradio as gr
|
2 |
-
|
|
|
|
|
3 |
|
4 |
-
# Load T5-small model
|
5 |
model_name = "t5-small"
|
6 |
-
tokenizer =
|
7 |
-
model =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
-
def
|
10 |
-
"""
|
11 |
if not text.strip():
|
12 |
-
return
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
max_length=
|
20 |
-
top_k=50,
|
21 |
-
top_p=0.95,
|
22 |
-
num_return_sequences=num_outputs,
|
23 |
-
do_sample=True
|
24 |
)
|
25 |
|
26 |
-
|
27 |
-
return
|
28 |
|
29 |
# Define Gradio Interface
|
30 |
-
description = """
|
31 |
-
## ✨ AI Paraphrasing Tool
|
32 |
-
Enter a sentence and let AI generate multiple paraphrased versions!
|
33 |
-
- Adjust **max length** for longer outputs.
|
34 |
-
- Tune **temperature** for more creative results.
|
35 |
-
- Choose **number of outputs** to generate multiple variations.
|
36 |
-
"""
|
37 |
-
|
38 |
demo = gr.Interface(
|
39 |
-
fn=
|
40 |
-
inputs=
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
],
|
46 |
-
outputs=gr.Textbox(label="Paraphrased Text", lines=5), # Allows multiple outputs
|
47 |
-
title="📝 AI Paraphraser",
|
48 |
-
description=description,
|
49 |
-
theme="huggingface",
|
50 |
-
live=True,
|
51 |
)
|
52 |
|
53 |
-
|
|
|
|
1 |
import gradio as gr
|
2 |
+
import re
|
3 |
+
import torch
|
4 |
+
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM, pipeline
|
5 |
|
6 |
+
# Load T5-small paraphrase model
|
7 |
model_name = "t5-small"
|
8 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
9 |
+
model = AutoModelForSeq2SeqLM.from_pretrained(model_name, torch_dtype=torch.float16) # Use fp16 for speed
|
10 |
+
|
11 |
+
# Move model to CPU (remove if using GPU)
|
12 |
+
model.to("cpu")
|
13 |
+
|
14 |
+
# Initialize paraphrase pipeline with optimized settings
|
15 |
+
paraphrase_pipeline = pipeline(
|
16 |
+
"text2text-generation",
|
17 |
+
model=model,
|
18 |
+
tokenizer=tokenizer,
|
19 |
+
truncation=True
|
20 |
+
)
|
21 |
+
|
22 |
+
def split_sentences(text):
|
23 |
+
"""Split text into sentences using regex (faster than nltk)."""
|
24 |
+
return re.split(r'(?<=[.!?])\s+', text.strip())
|
25 |
|
26 |
+
def paraphrase_text(text):
|
27 |
+
"""Paraphrases input text while maintaining sentence structure."""
|
28 |
if not text.strip():
|
29 |
+
return "⚠️ Please enter some text to paraphrase."
|
30 |
+
|
31 |
+
sentences = split_sentences(text)
|
32 |
+
|
33 |
+
# Apply T5 paraphrasing to each sentence
|
34 |
+
paraphrased_results = paraphrase_pipeline(
|
35 |
+
[f"paraphrase: {sentence} </s>" for sentence in sentences if sentence],
|
36 |
+
max_length=50, do_sample=True, batch_size=8, num_return_sequences=1 # Faster settings
|
|
|
|
|
|
|
|
|
37 |
)
|
38 |
|
39 |
+
paraphrased_sentences = [result['generated_text'] for result in paraphrased_results]
|
40 |
+
return " ".join(paraphrased_sentences)
|
41 |
|
42 |
# Define Gradio Interface
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
demo = gr.Interface(
|
44 |
+
fn=paraphrase_text,
|
45 |
+
inputs=gr.Textbox(label="Enter text", placeholder="Type your text to paraphrase...", lines=10),
|
46 |
+
outputs=gr.Textbox(label="Paraphrased Text", lines=10),
|
47 |
+
title="🚀 Fast & Clean T5-Small Paraphraser",
|
48 |
+
description="Enter text and let AI generate a paraphrased version using an optimized T5-small model!",
|
49 |
+
theme="huggingface"
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
)
|
51 |
|
52 |
+
if __name__ == "__main__":
|
53 |
+
demo.launch()
|