Datasets:

Modalities:
Text
ArXiv:
Libraries:
Datasets
License:
jilee commited on
Commit
fa0ee6a
·
1 Parent(s): ff29c48

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md CHANGED
@@ -1,6 +1,22 @@
1
  ---
2
  license: cc-by-nc-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  annotations_creators:
5
  - expert-generated
6
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
  ---
4
+
5
+ # TexPrax
6
+ This dataset contains dialogues collected from German factory workers. They are expert-annotated on a sentence level (problem, cause, solution, other) for sentence classification and on a token level for named entity recognition using a BIO tagging scheme.
7
+
8
+ You can download the data via:
9
+
10
+ ```
11
+ from datasets import load_dataset
12
+
13
+ dataset = load_dataset("UKPLab/TexPrax") # default config is sentence classification
14
+ dataset = load_dataset("UKPLab/TexPrax", "ner") # use the ner tag for named entity recognition
15
+ ```
16
+ Please find more information about the code and how the data was collected on [GitHub](https://github.com/UKPLab/TexPrax).
17
+
18
+ ## Other information
19
+
20
  annotations_creators:
21
  - expert-generated
22