Den4ikAI commited on
Commit
cf37c97
·
verified ·
1 Parent(s): 88709c8

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +109 -0
app.py ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
3
+ from transformers import AutoTokenizer
4
+
5
+ models = {
6
+ "RUPunct-small": "RUPunct/RUPunct_small",
7
+ "RUPunct-big": "RUPunct/RUPunct_big",
8
+ "RUPunct-medium": "RUPunct/RUPunct_medium"
9
+ }
10
+
11
+ pipelines = {}
12
+
13
+ for model_name, model_path in models.items():
14
+ tokenizer = AutoTokenizer.from_pretrained(model_path, strip_accents=False, add_prefix_space=True)
15
+ pipelines[model_name] = pipeline("ner", model=model_path, tokenizer=tokenizer, aggregation_strategy="first")
16
+
17
+ def process_token(token, label):
18
+ if label == "LOWER_O":
19
+ return token
20
+ if label == "LOWER_PERIOD":
21
+ return token + "."
22
+ if label == "LOWER_COMMA":
23
+ return token + ","
24
+ if label == "LOWER_QUESTION":
25
+ return token + "?"
26
+ if label == "LOWER_TIRE":
27
+ return token + "—"
28
+ if label == "LOWER_DVOETOCHIE":
29
+ return token + ":"
30
+ if label == "LOWER_VOSKL":
31
+ return token + "!"
32
+ if label == "LOWER_PERIODCOMMA":
33
+ return token + ";"
34
+ if label == "LOWER_DEFIS":
35
+ return token + "-"
36
+ if label == "LOWER_MNOGOTOCHIE":
37
+ return token + "..."
38
+ if label == "LOWER_QUESTIONVOSKL":
39
+ return token + "?!"
40
+ if label == "UPPER_O":
41
+ return token.capitalize()
42
+ if label == "UPPER_PERIOD":
43
+ return token.capitalize() + "."
44
+ if label == "UPPER_COMMA":
45
+ return token.capitalize() + ","
46
+ if label == "UPPER_QUESTION":
47
+ return token.capitalize() + "?"
48
+ if label == "UPPER_TIRE":
49
+ return token.capitalize() + " —"
50
+ if label == "UPPER_DVOETOCHIE":
51
+ return token.capitalize() + ":"
52
+ if label == "UPPER_VOSKL":
53
+ return token.capitalize() + "!"
54
+ if label == "UPPER_PERIODCOMMA":
55
+ return token.capitalize() + ";"
56
+ if label == "UPPER_DEFIS":
57
+ return token.capitalize() + "-"
58
+ if label == "UPPER_MNOGOTOCHIE":
59
+ return token.capitalize() + "..."
60
+ if label == "UPPER_QUESTIONVOSKL":
61
+ return token.capitalize() + "?!"
62
+ if label == "UPPER_TOTAL_O":
63
+ return token.upper()
64
+ if label == "UPPER_TOTAL_PERIOD":
65
+ return token.upper() + "."
66
+ if label == "UPPER_TOTAL_COMMA":
67
+ return token.upper() + ","
68
+ if label == "UPPER_TOTAL_QUESTION":
69
+ return token.upper() + "?"
70
+ if label == "UPPER_TOTAL_TIRE":
71
+ return token.upper() + " —"
72
+ if label == "UPPER_TOTAL_DVOETOCHIE":
73
+ return token.upper() + ":"
74
+ if label == "UPPER_TOTAL_VOSKL":
75
+ return token.upper() + "!"
76
+ if label == "UPPER_TOTAL_PERIODCOMMA":
77
+ return token.upper() + ";"
78
+ if label == "UPPER_TOTAL_DEFIS":
79
+ return token.upper() + "-"
80
+ if label == "UPPER_TOTAL_MNOGOTOCHIE":
81
+ return token.upper() + "..."
82
+ if label == "UPPER_TOTAL_QUESTIONVOSKL":
83
+ return token.upper() + "?!"
84
+
85
+
86
+ def punctuate(input_text, model_name):
87
+ classifier = pipelines[model_name]
88
+
89
+ preds = classifier(input_text)
90
+ output = ""
91
+ for item in preds:
92
+ if item["word"] == ".":
93
+ item["entity_group"] = "O"
94
+ output += " " + process_token(item['word'].strip(), item['entity_group'])
95
+
96
+ return output.strip()
97
+
98
+ iface = gr.Interface(
99
+ fn=punctuate,
100
+ inputs=[
101
+ gr.inputs.Textbox(lines=5, placeholder="Введите текст"),
102
+ gr.inputs.Radio(list(models.keys()), label="Модель")
103
+ ],
104
+ outputs="text",
105
+ title="RUPunct",
106
+ description="Демо RUPunct - модели для автоматической расстановки знаков препинания в русском тексте.",
107
+ )
108
+
109
+ iface.launch()