HoneyTian commited on
Commit
a84690d
·
1 Parent(s): 4528359
.gitignore ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ .git/
3
+ .idea/
4
+
5
+ dotenv/
6
+ hub_datasets/
7
+ examples/preprocess/data
8
+
9
+ **/__pycache__/
10
+
11
+ **/*.csv
12
+ **/*.xlsx
13
+
14
+ test.txt
README.md CHANGED
@@ -6,4 +6,13 @@ language:
6
  size_categories:
7
  - 100M<n<1B
8
  ---
9
- ## 多模态意图识别
 
 
 
 
 
 
 
 
 
 
6
  size_categories:
7
  - 100M<n<1B
8
  ---
9
+ ## 多模态意图识别
10
+
11
+
12
+
13
+ 数据来源
14
+
15
+ | 数据 | 语言 | 原始数据/项目地址 | 样本个数 | 原始数据描述 | 替代数据下载地址 |
16
+ | :--- | :---: | :---: | :---: | :---: | :---: |
17
+ | mintrec2 | 汉语;英语 | [MIntRec2.0](https://zenodo.org/records/8041676); [MIntRec2.0](https://github.com/thuiar/MIntRec2.0) | 样本个数 | 用于对话中的多模式意图识别和 out-of-scope 检测的大规模基准数据集 | |
18
+
examples/preprocess/preprocess_mintrec2.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ """
4
+ 手动下载数据
5
+ https://zenodo.org/records/8041676
6
+ """
7
+
8
+
9
+ if __name__ == '__main__':
10
+ pass