jslin09 commited on
Commit
6d3e5c8
·
verified ·
1 Parent(s): 94f3001

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +212 -0
app.py ADDED
@@ -0,0 +1,212 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from colorama import Fore, Back, Style
2
+ import gradio as gr
3
+ import requests
4
+ import json
5
+ import time
6
+ import random
7
+ import re
8
+ import os
9
+
10
+ elements = {'LEO_SOC': ('犯罪主體', 'Subject of Crime'),
11
+ 'LEO_VIC': ('客體', 'Victim'),
12
+ 'LEO_ACT': ('不法行為', 'Behavior'),
13
+ 'LEO_SLE': ('主觀要件', 'Subjective Legal Element of the Offense'),
14
+ 'LEO_CAU': ('因果關係', 'Causation'),
15
+ 'LEO_ROH': ('危害結果', 'Result of Hazard'),
16
+ 'LEO_ATP': ('未遂', 'Attempted'),
17
+ 'LEO_ACC': ('既遂', 'Accomplished'),
18
+ 'LEO_ABA': ('中止', 'Abandonment'),
19
+ 'LEO_PRP': ('預備', 'Preparation'),
20
+ 'ILG_GLJ': ('阻卻違法事由', 'Ground of Legal Justification'),
21
+ 'ILG_SDE': ('正當防衛', 'Self-Defense'),
22
+ 'ILG_NEC': ('緊急避難', 'Emergency Avoidance'),
23
+ 'CUL_INS': ('心神喪失', 'Insane'),
24
+ 'CUL_FBD': ('精神耗弱', 'Feebleminded'),
25
+ 'CUL_ALC': ('原因自由行為', 'Actio Libera in Causa'),
26
+ 'CUL_RPS': ('責任能力', 'Responsibility'),
27
+ 'CUL_ANP': ('期待可能性', 'Anticipated Possibility'),
28
+ 'CUL_GUM': ('犯罪意識', 'Guilty Mind')
29
+ }
30
+
31
+ secret = os.environ.get("HF_TOKEN")
32
+ llm_server = os.environ.get("REMOTE_LLM_SERVER")
33
+
34
+ def get_prompt(content, tag, tag_name):
35
+ paragraph = content
36
+ task = f"請標示出以下段落中的{tag_name}構成要件要素,對應的標籤是[{tag}]。\n\n"
37
+ task_template = f'{task}#####\n{paragraph}\n\n#####\n構成要件要素:\n'
38
+ # tag_result = f'{task_template}\n#####\n標註結果: \n'
39
+ return task_template
40
+
41
+ def Jaccard(response_content, tag):
42
+ '''
43
+ 說明:
44
+ 找出文本中有無指定的標籤。
45
+ Parameters:
46
+ response_content (str): 可能有標籤的文本。
47
+ tag (str): 指定的標籤名稱,不包含方括號。
48
+ Retrun:
49
+ Jaccard_result (tuple): 回傳一個含有標籤名稱及布林值的 tuple。
50
+ 如果有指定的標籤名稱,布林值為True。如果沒有指定的標籤,指定為 None。
51
+ '''
52
+ response_head = response_content.split("標註結果:\n")[0]
53
+ try:
54
+ response_body = response_content.split("標註結果:\n")[1]
55
+ except IndexError: # 如果切不出結果,就把結果設定為字串 'None'。
56
+ response_body = 'None'
57
+ start_index = 0
58
+ # 使用正規表示式找出所有構成要件要素文字的起始位置
59
+ # print(f'尋找的目標字串: [{tag}]')
60
+ # 加入 re.escape() 是為了避免處理到有逸脱字元的字串會報錯而中斷程式執行
61
+ findall_open_tags = [m.start() for m in re.finditer(re.escape(f"[{tag}]"), response_body)]
62
+ findall_close_tags = [m.start() for m in re.finditer(re.escape(f"[/{tag}]"), response_body)]
63
+ try:
64
+ parts = [response_body[start_index:findall_open_tags[0]]] # 第一個標籤之前的句子
65
+ except IndexError:
66
+ parts = []
67
+ # 找出每個標籤所在位置,取出標籤文字。
68
+ for j, idx in enumerate(findall_open_tags):
69
+ # print(j, start_index, idx, response_content[start_index:idx])
70
+ tag_text = response_body[idx + len(tag) + 2:findall_close_tags[j]]
71
+ parts.append(tag_text) # 標籤所包住的文字
72
+ closed_tag = findall_close_tags[j] + len(tag) + 3
73
+ try:
74
+ next_open_tag = findall_open_tags[j+1]
75
+ parts.append(response_body[closed_tag: next_open_tag]) # 結束標籤之後到下一個標籤前的文字
76
+ except IndexError:
77
+ parts.append(response_body[findall_close_tags[-1] + len(tag) + 3 :]) # 加入最後一句
78
+ # 把標籤以及分割後的句子合併起來
79
+ result = ''
80
+ for _, part in enumerate(parts):
81
+ result = result + part
82
+ if result == '':
83
+ Jaccard_result = (tag, None)
84
+ else:
85
+ Jaccard_result = (tag, True)
86
+ return Jaccard_result
87
+
88
+ def tag_in_color(tag_content, tag):
89
+ '''
90
+ 說明:
91
+ 將標註結果依照標籤進行標色。
92
+ Parameters:
93
+ tag_content (str): 已經標註完畢並有標籤的內容。
94
+ tag (str): 標籤名稱,英文,沒有括號。
95
+ Return:
96
+ result (str): 去除標籤並含有 colorama 標色符號的字串。
97
+ '''
98
+ response_head = tag_content.split("標註結果:\n")[0]
99
+ try:
100
+ response_body = tag_content.split("標註結果:\n")[1]
101
+ except IndexError:
102
+ response_body = 'None'
103
+ # print(f"分割後的內容:\n{response_body}")
104
+ start_index = 0
105
+ # 使用正規表示式找出所有構成要件要素文字的起始位置
106
+ # print(f'尋找的目標字串: [{tag}]')
107
+ # 加入 re.escape() 是為了避免處理到有逸脱字元的字串會報錯而中斷程式執行
108
+ findall_open_tags = [m.start() for m in re.finditer(re.escape(f"[{tag}]"), response_body)]
109
+ findall_close_tags = [m.start() for m in re.finditer(re.escape(f"[/{tag}]"), response_body)]
110
+ try:
111
+ parts = [(f"{response_body[start_index:findall_open_tags[0]]}", None)] # 第一個標籤之前的句子
112
+ except IndexError:
113
+ parts = []
114
+ # 找出每個標籤所在位置,取出標籤文字並加以著色。
115
+ # 回傳的標色字串串列,要標色的應該是一組 tuple: ('要標色的字串', tag_name)
116
+ # 不標色的,就單純字串。
117
+ # 然後組成一個串列回傳。
118
+ for j, idx in enumerate(findall_open_tags):
119
+ # print(j, start_index, idx, response_content[start_index:idx])
120
+ tag_text = response_body[idx + len(tag) + 2:findall_close_tags[j]]
121
+ # parts.append(f"{tag_color[tag]}" + tag_text + Style.RESET_ALL) # 標籤內文字著色
122
+ # parts.append((f"{tag_text}", f"{tag}"))
123
+ parts.append((f"{tag_text}", f"{elements[tag][0]}")) # 要標色的 tuple: ('要標色的字串', tag_name)
124
+ closed_tag = findall_close_tags[j] + len(tag) + 3
125
+ try:
126
+ next_open_tag = findall_open_tags[j+1]
127
+ parts.append((f"{response_body[closed_tag: next_open_tag]}", None)) # 結束標籤之後到下一個標籤前的文字
128
+ except IndexError:
129
+ parts.append((f"{response_body[findall_close_tags[-1] + len(tag) + 3 :]}", None)) # 加入最後一句
130
+ # print(parts)
131
+ return parts
132
+
133
+ def le_tagger(content, tag):
134
+ # api_base_url = "http://localhost:11434/api" # 本機端的 ollama
135
+ api_base_url = os.environ.get("REMOTE_LLM_SERVER")
136
+ url = f"{api_base_url}/generate"
137
+ list_url = f"{api_base_url}/tags"
138
+ headers = {
139
+ "Content-Type": "application/json"
140
+ }
141
+ random.seed(time.localtime(time.time())[5]) # 以時間為基礎的隨機種子
142
+ tag = tag # 傳進來的標籤英文字串,不含方括號。
143
+ prompt = get_prompt(content, tag, elements[tag][0]) # 將要標註的內以及提示詞組合成作業提示詞
144
+ ner_model_name = 'gemma2-ner:2b' # 已載入 Ollama 中的 LE-NER 模型名稱
145
+ data = {
146
+ "model": f"{ner_model_name}",
147
+ "prompt": f"{prompt}",
148
+ # "format": "json",
149
+ "options": {
150
+ "seed": 60,
151
+ "top_k": 50,
152
+ "top_p": 0.7,
153
+ "temperature": 0.9
154
+ },
155
+ "stream": False
156
+ }
157
+ loop_time = time.time()
158
+ jaccard_score = [] # 紀錄單篇的分數
159
+ score = ()
160
+ response = requests.post(url, headers=headers, data=json.dumps(data))
161
+ if response.status_code == 200:
162
+ print(f'構成要件要素標籤: {tag}\n構成要件要素:')
163
+ response_text = response.text
164
+ data = json.loads(response_text)
165
+ # print(tokenizer.decode(data["context"])) # 全部內容,需要解碼,
166
+ actual_response = data["response"] # 只有回應的內容,而且是文字形態,不必解碼。
167
+ print(f"{actual_response}\n") # 輸出含有標籤的回應內容
168
+ color_result = tag_in_color(actual_response, tag) # 將回應內容進行標籤標色
169
+ print(color_result) # 輸出有標色的結果
170
+ score = Jaccard(actual_response, tag) # 算分數
171
+ jaccard_score.append(score)
172
+ print(f"--- 執行耗時:{(time.time() - loop_time)}秒 ---\n")
173
+ # example_num = example_num + 1
174
+ else:
175
+ # 列出 Ollama 中已經安裝的模型名稱
176
+ print(f"Error:{response.status_code} {json.loads(response.text)['error']}")
177
+ response = requests.get(list_url, headers=headers, data=json.dumps(data))
178
+ response_text = response.text
179
+ # print(response_text)
180
+ data = json.loads(response_text)
181
+ actual_response = data["models"]
182
+ for _, model in enumerate(data["models"]):
183
+ print(model['name'])
184
+ print(f"--- 執行耗時:{(time.time() - loop_time)}秒 ---\n")
185
+ return color_result
186
+
187
+ examples = [ "錢旺來雖明知不法犯罪集團經常使用人頭帳戶,向被害人施用詐術,藉此逃避檢警人員之追緝,並預見向其取得帳戶之人,會以該帳戶作為詐欺取財之不法所用,竟仍基於幫助詐欺之犯意,於民國106年1月11日某時,將其所申辦之上海商業銀行(下稱上海商銀)帳號00000000000000號帳戶之提款卡、密碼,以宅急便之方式,寄送予某真實姓名年籍不詳之詐欺集團成員,供該詐欺集團成員用於詐欺取財之犯行。嗣該詐欺集團成員即意圖為自己不法之所有,於106年1月13日18時許,撥打電話予洪菁霞,向洪菁霞佯稱係其友人,急需資金周轉,致洪菁霞陷於錯誤,於同日14時35分許,至台中市○區○○路000號之郵局,臨櫃匯款新臺幣(下同)10萬元至錢旺來前揭上海商銀帳戶內,隨即遭提領一空。",
188
+ "梅友虔明知金融帳戶之存摺、提款卡及密碼係供自己使用之重要理財工具,關係個人財產、信用之表徵,並可預見一般人取得他人金融帳戶使用常與財產犯罪密切相關,且取得他人帳戶之目的在於掩飾犯罪所得之財物或財產上利益不易遭人追查,對於提供帳戶存摺、提款卡及密碼雖無引發他人萌生犯罪之確信,但仍以縱若有人持以犯罪,亦無違反其本意之幫助詐欺之不確定故意,於民國104年11月12日某時,在桃園市中壢區某便利商店內,將其所申辦之臺灣銀行中壢分行帳號000000000000號帳戶(下稱臺灣銀行帳戶)之存摺、提款卡及密碼,以宅急便方式寄送至高雄市○○區○○○路000號予「黃冠智」之成年人使用,容認該「黃冠智」得以使用作為詐欺取財之工具,並以此方式幫助其從事詐欺取財之犯行。迨「黃冠智」取得上開帳戶存摺、提款卡及密碼後,即基於意圖為自己不法所有之詐欺取財犯意,分別於附表所示時間撥打電話予謝家富、陳品蓁,佯以附表所示情節,致謝家富、陳品蓁均陷於錯誤,而分別於附表所示匯款時間,匯款如附表所示金額至上開帳戶內,並旋遭提領一空。案經謝家富、陳品蓁訴由桃園市政府警察局中壢分局移送臺灣桃園地方法院檢察署檢察官偵查後聲請簡易判決處刑。"
189
+ ]
190
+
191
+ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.indigo, secondary_hue=gr.themes.colors.fuchsia)) as demo:
192
+ gr.Markdown(
193
+ """
194
+ <h1 style="text-align: center;">構成要件要素標註器</h1>
195
+ """)
196
+ with gr.Row() as row:
197
+ with gr.Column():
198
+ content = gr.Textbox(label="犯罪事實")
199
+ radio = gr.Radio(choices=[("犯罪主體", "LEO_SOC"), ("主觀要件", "LEO_SLE"), ("不法行為","LEO_ACT"), \
200
+ ('客體','LEO_VIC'), ("因果關係","LEO_CAU"), ("危害結果","LEO_ROH") \
201
+ ],
202
+ value="LEO_SOC", # 預設值
203
+ label="請選擇構成要件要素標籤"
204
+ )
205
+ with gr.Row():
206
+ output = gr.HighlightedText(label="標註結果")
207
+ with gr.Row():
208
+ greet_btn = gr.Button("LE-NER", variant="primary")
209
+ greet_btn.click(fn=le_tagger, inputs=[content, radio], outputs=output, api_name="le_tagger")
210
+ gr.Examples(examples, label='Examples', inputs=[content])
211
+
212
+ demo.launch(share=False)