Spaces:
Build error
Build error
File size: 1,239 Bytes
dcdaaec f306d19 8e5beee c4556a0 ebb0ce9 8e5beee 39f1739 f306d19 8e5beee f306d19 8e5beee f306d19 8e5beee f2c0af4 2f3ed86 8e5beee f306d19 5826562 8e5beee |
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 |
import gradio as gr
from gradio import mix
import torch
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
from huggingface_hub import from_pretrained_keras
tokenizer = AutoTokenizer.from_pretrained("aditi2222/automatic_title_generation")
model = from_pretrained_keras("keras-io/text-generation-miniature-gpt")
def tokenize_data(text):
# Tokenize the review body
input_ = str(text) + ' </s>'
max_len = 120
# tokenize inputs
tokenized_inputs = tokenizer(input_, padding='max_length', truncation=True, max_length=max_len, return_attention_mask=True, return_tensors='pt')
inputs={"input_ids": tokenized_inputs['input_ids'],
"attention_mask": tokenized_inputs['attention_mask']}
return inputs
def generate_answers(text):
inputs = tokenize_data(text)
print(inputs)
results= model.predict(inputs)
answer = tokenizer.decode(results[0], skip_special_tokens=True)
return answer
title = "Miniature"
description = "Gradio Demo for a miniature with GPT. To use it, simply add your text, or click one of the examples to load them. Read more at the links below."
iface = gr.Interface(fn=generate_answers, inputs=['text'], outputs=["text"])
iface.launch(inline=False, share=True) |