File size: 1,630 Bytes
22f0fab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
514b3bc
22f0fab
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import gradio as gr
from transformers import pipeline

title = "Silly Ted-Talk snippet generator"
description = "Tap on the \"Submit\" button to generate a random text snippet."
article = "<p>Fine tuned <a href=\"https://huggingface.co/EleutherAI/gpt-neo-125M\">EleutherAI/gpt-neo-125M</a> upon a formatted <a href=\"https://www.kaggle.com/datasets/miguelcorraljr/ted-ultimate-dataset\"> TED – Ultimate Dataset</a> (English)</p>"

model_id = "./model"
text_generator = pipeline('text-generation', model=model_id, tokenizer=model_id)
max_length = 128
top_k = 40
top_p = 0.92
temperature = 1.0

def text_generation(input_text = None):
    if input_text == None or len(input_text) == 0:
        input_text = "\t\""
    else:
        input_text.replace("\"", "")
        if input_text.startswith("<|startoftext|>") == False:            
            input_text ="\t\"" + input_text
    generated_text = text_generator(input_text,
    max_length=max_length,
    top_k=top_k, 
    top_p=top_p,
    temperature=temperature,
    do_sample=True,
    repetition_penalty=2.0,
    num_return_sequences=1)
    parsed_text = generated_text[0]["generated_text"].replace("<|startoftext|>", "").replace("\r","").replace("\n\n", "\n").replace("\t", " ").replace("<|pad|>", " * ").replace("\"\"", "\"")
    return parsed_text

gr.Interface(
    text_generation,    
    [gr.inputs.Textbox(lines=1, label="Enter input text or leave blank")],
    outputs=[gr.outputs.Textbox(type="text", label="Generated Ted-Talk snippet")],
    title=title,
    description=description,
    article=article,
    theme="default",
    allow_flagging=False,
).launch()