52AI commited on
Commit
0be231e
1 Parent(s): 1289bb4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md CHANGED
@@ -1,3 +1,28 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+ 扩展JointBERT支持中文训练, 提供从数据合成到意图和槽位联合训练, 测试完整流程.
5
+
6
+
7
+ 这里提供训练好的模型[52AI/generalQA_intent_slotFilling](https://huggingface.co/52AI/generalQA_intent_slotFilling/tree/main) 供测试. 国内下载容易中断,多运行两次.
8
+ ```shell
9
+ $ python3 predict.py --task generalQA \
10
+ --input_file data/testcase/generalQAtest.txt \
11
+ --output_file local/generalQAtest_predict.txt \
12
+ --model_dir out/generalQA
13
+ ```
14
+
15
+ -> 请 问 [你:B-TransEnZhSentence] [几:I-TransEnZhSentence] [岁:I-TransEnZhSentence] [了:I-TransEnZhSentence] 用 英 语 怎 么 说 ?
16
+
17
+ -> 翻 译 : [i:B-TransEnZhSentence] [love:I-TransEnZhSentence] [you:I-TransEnZhSentence]
18
+
19
+ -> 用 [美:B-CreateSenEntity] [好:I-CreateSenEntity] 写 一 个 句 子
20
+
21
+ -> [明:B-AntonymEntity] [天:I-AntonymEntity] 的 反 义 词
22
+
23
+ -> [后:B-SynonymEntity] [天:I-SynonymEntity] 的 同 义 词
24
+
25
+ 测试结果: local/generalQAtest_predict.txt
26
+
27
+
28
+ 项目地址: [JointBERT-zh](https://github.com/chenyangMl/JointBERT-zh)