minjibi commited on
Commit
dfdb13f
1 Parent(s): 7f17f97

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +31 -0
app.py ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import torch
3
+ import pytorch_lightning as pl
4
+ from pytorch_lightning.callbacks.early_stopping import EarlyStopping
5
+ from transformers import (
6
+ MT5ForConditionalGeneration,
7
+ MT5TokenizerFast,
8
+ )
9
+
10
+ model = MT5ForConditionalGeneration.from_pretrained(
11
+ "minjibi/qa",
12
+ return_dict=True,
13
+ )
14
+ tokenizer = MT5TokenizerFast.from_pretrained(
15
+ "minjibi/qa"
16
+ )
17
+
18
+ def generate_text(input_text):
19
+ input_ids = tokenizer.encode(input_text, return_tensors="pt").cuda()
20
+ output = model.generate(input_ids, max_new_tokens = len(input_text), num_beams = 1, early_stopping=True, length_penalty = -50.0) #repetition_penalty
21
+ generated_text = tokenizer.decode(output[0], skip_special_tokens=True, clean_up_tokenization_spaces=True)
22
+ return generated_text
23
+
24
+ examples = [
25
+ ["น้อง จะ ไป แอ่ว ตี้ วัด เจ๋ดีย์ซาว น้อง ต้อง ไป ต๋อน กี่ โมง ตี้ คน บ่ นัก"],
26
+ ["แม่น แม่น แล้ว ตาง พิพิธภัณฑ์ เปิ้น เปิด หื้อ เข้า ไป ผ่อ ต๋อน กี่ โมง ก๋า"],
27
+ ]
28
+
29
+
30
+ iface = gr.Interface(fn=generate_text, inputs="text", outputs="text", examples=examples)
31
+ iface.launch()