Seikaijyu commited on
Commit
76c1c9f
1 Parent(s): 6c319fe

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -3
README.md CHANGED
@@ -1,3 +1,62 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+ ### 模型说明
5
+ #### 基于RWKV6-v2.1-3B 基模微调的超小审查模型,模型基于基于GLM4的自制语料进行pissa微调,并微调了embedding层
6
+ #### 此模型用于审查文本中是否存在色情,涉政,不安全和辱骂内容
7
+ #### 因此模型参数量较少,非常适合进行本地文本审查,推荐使用[ai00](https://github.com/Ai00-X/ai00_server)对此模型进行转换并使用Python调用此模型进行内容审查
8
+ #### 效果如下:
9
+
10
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6417b108b03817ada6444bb8/hFka3CtUkjXxwlKhtXSaD.png)
11
+
12
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6417b108b03817ada6444bb8/p7seyP0HH0KRwCDW_X10g.png)
13
+
14
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6417b108b03817ada6444bb8/ne_suTtuh1cSOyoeFoRlf.png)
15
+
16
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6417b108b03817ada6444bb8/Y7FnaTQy5vwGPUZTxWdfs.png)
17
+
18
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6417b108b03817ada6444bb8/BZjJcpCW2emHVVUm7R194.png)
19
+
20
+ ### 规则说明
21
+ misjudgment代表判断色情内容或者政治内容或者辱骂内容或者其它不安全内容误判的可能性,也就是错误判断的可能性,不可能误判则必须为0,极可能误判则为3。
22
+
23
+ misjudgment: 0
24
+ 代表没有误判
25
+
26
+ misjudgment: 1
27
+ 代表有轻微概率可能误判
28
+
29
+ misjudgment: 2
30
+ 代表不确定是否误判
31
+
32
+ misjudgment: 3
33
+ 大概率可能误判
34
+
35
+ level代表判断存在的色情内容或者政治内容或者辱骂内容或者其它不安全内容的严重程度,不存在并且不涉及任何相关内容则必须为0,最严重则为3。
36
+
37
+ level: 0
38
+ 不存在并且不涉及任何相关内容
39
+
40
+ level: 1
41
+ 涉及相关内容但是没有进行更细致的讨论
42
+
43
+ level: 2
44
+ 讨论并涉及相关内容但是情节不严重
45
+
46
+ level: 3
47
+ 讨论并涉及相关内容并且情节非常严重
48
+
49
+ ### 额外说明
50
+ #### 对话推荐使用以下格式,否则模型可能会直接回复提问,即:
51
+ ````
52
+ Question:
53
+ Answer: ```
54
+ 需要审查的文本内容
55
+ ```
56
+ ````
57
+ ### 推荐参数如下:
58
+ #### Temperature=0
59
+ #### Top_P=0
60
+ #### Presence Penalty=0
61
+ #### Frequency Penalty=1
62
+