Mike commited on
Commit
a3500da
1 Parent(s): 531e6ba

add documentation

Browse files
Files changed (4) hide show
  1. README.md +50 -1
  2. dev.json +0 -0
  3. test.json +0 -0
  4. train.json +0 -0
README.md CHANGED
@@ -1,3 +1,52 @@
1
  ---
2
- license: mit
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ language: en
4
  ---
5
+
6
+ This is the skill dataset created by:
7
+
8
+ ```
9
+ @inproceedings{green-etal-2022-development,
10
+ title = "Development of a Benchmark Corpus to Support Entity Recognition in Job Descriptions",
11
+ author = "Green, Thomas and
12
+ Maynard, Diana and
13
+ Lin, Chenghua",
14
+ booktitle = "Proceedings of the Thirteenth Language Resources and Evaluation Conference",
15
+ month = jun,
16
+ year = "2022",
17
+ address = "Marseille, France",
18
+ publisher = "European Language Resources Association",
19
+ url = "https://aclanthology.org/2022.lrec-1.128",
20
+ pages = "1201--1208",
21
+ }
22
+ ```
23
+
24
+ There are no document delimiters, task is on the sentence-level.
25
+
26
+ Number of samples (sentences):
27
+ - train: 8669
28
+ - dev: 964
29
+ - test: 335
30
+
31
+ Sources:
32
+ - TotalJobs (UK): https://www.kaggle.com/datasets/airiddha/trainrev1
33
+
34
+ Type of tags:
35
+ - Generic BIO tags with key `tags_skill`
36
+ - Finer grained labels of BIO tags are
37
+ - `SKILL`: Tasks that can be performed, or attributes and abilities (including soft skills) that enable people to perform tasks.
38
+ - `QUALIFICATION`: Official certifications obtained through taking a course or passing an exam or appraisal.
39
+ - `EXPERIENCE`: Lengths of time relating to a position or skill.
40
+ - `OCCUPATION`: Job titles, including abbreviations and acronyms.
41
+ - `DOMAIN`: Areas of industry in which someone might have knowledge or experience.
42
+ - Also has part-of-speech tags, indicated by `pos`.
43
+
44
+ Sample:
45
+ ```
46
+ {
47
+ "idx": 959,
48
+ "tokens": ["negotiating", "and", "commercial", "skills", "Conscientious", "and", "thorough", "by", "nature"],
49
+ "tags_skill": ["B-SKILL", "I-SKILL", "I-SKILL", "I-SKILL", "I-SKILL", "O", "B-SKILL", "O", "O"],
50
+ "pos": ["NN", "CC", "JJ", "NNS", "JJ", "CC", "JJ", "IN", "NN"]
51
+ }
52
+ ```
dev.json CHANGED
The diff for this file is too large to render. See raw diff
 
test.json CHANGED
The diff for this file is too large to render. See raw diff
 
train.json CHANGED
The diff for this file is too large to render. See raw diff