jslin09 commited on
Commit
d97580a
1 Parent(s): b672a5a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -5
README.md CHANGED
@@ -4,16 +4,15 @@ datasets:
4
  - jslin09/Fraud_Case_Verdicts
5
  language:
6
  - zh
7
- - multilingual
8
  metrics:
9
  - accuracy
10
  pipeline_tag: text-generation
11
  text-generation:
12
  parameters:
13
  max_length: 256
14
- do_sample: True
15
  temperature: 0.75
16
- top_k: 50
17
  top_p: 0.9
18
  tags:
19
  - legal
@@ -22,7 +21,7 @@ widget:
22
  example_title: 生成竊盜罪之犯罪事實
23
  - text: 騙人布意圖為自己不法所有,基於詐欺取財之犯意,
24
  example_title: 生成詐欺罪之犯罪事實
25
- - text: '森上梅前明知其無資力支付酒店消費,亦無付款意願,竟意圖為自己不法之所有,'
26
  example_title: 生成吃霸王餐之詐欺犯罪事實
27
  ---
28
 
@@ -30,7 +29,7 @@ widget:
30
  本模型是以司法院公開之刑事判決書(案由為詐欺)為資料集,以判決書中之「犯罪事實」欄之內容為素材,基於 [BLOOM 560m](https://huggingface.co/bigscience/bloomz-560m) 小模型進行遷移學習訓練。在本網頁進行測試時,請在模型載入完畢並生成第一小句後,持續按下Compute按鈕,就能持續生成文字。或是輸入自己想要測試的資料到文字框中進行測試。
31
 
32
  # 使用範例
33
- 如果要在自己的程式中調用本模型,可以參考下列的程式碼透過 API 呼叫的方式來生成刑事判決書「犯罪事實」欄的內容。
34
  <pre>
35
  <code>
36
  import requests, json
 
4
  - jslin09/Fraud_Case_Verdicts
5
  language:
6
  - zh
 
7
  metrics:
8
  - accuracy
9
  pipeline_tag: text-generation
10
  text-generation:
11
  parameters:
12
  max_length: 256
13
+ do_sample: true
14
  temperature: 0.75
15
+ top_k: 50
16
  top_p: 0.9
17
  tags:
18
  - legal
 
21
  example_title: 生成竊盜罪之犯罪事實
22
  - text: 騙人布意圖為自己不法所有,基於詐欺取財之犯意,
23
  example_title: 生成詐欺罪之犯罪事實
24
+ - text: 森上梅前明知其無資力支付酒店消費,亦無付款意願,竟意圖為自己不法之所有,
25
  example_title: 生成吃霸王餐之詐欺犯罪事實
26
  ---
27
 
 
29
  本模型是以司法院公開之刑事判決書(案由為詐欺)為資料集,以判決書中之「犯罪事實」欄之內容為素材,基於 [BLOOM 560m](https://huggingface.co/bigscience/bloomz-560m) 小模型進行遷移學習訓練。在本網頁進行測試時,請在模型載入完畢並生成第一小句後,持續按下Compute按鈕,就能持續生成文字。或是輸入自己想要測試的資料到文字框中進行測試。
30
 
31
  # 使用範例
32
+ 如果要在自己的程式中調用本模型,可以參考下列的 Python 程式碼,藉由呼叫 API 的方式來生成刑事判決書「犯罪事實」欄的內容。
33
  <pre>
34
  <code>
35
  import requests, json