marcelsun commited on
Commit
f246712
·
verified ·
1 Parent(s): 2c1efce

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -17
README.md CHANGED
@@ -1,19 +1,19 @@
1
- ---
2
- license: cc-by-4.0
3
- task_categories:
4
- - text-classification
5
- language:
6
- - en
7
- tags:
8
- - NLP
9
- - LLM
10
- - hierarchical
11
- - multi-label
12
- - classification
13
- pretty_name: WOS Hierarchical Multi-Label Text Classification
14
- size_categories:
15
- - 10K<n<100K
16
- ---
17
  Introduced by du Toit and Dunaiski (2024) [Introducing Three New Benchmark Datasets for Hierarchical Text Classification](https://arxiv.org/abs/2411.19119).
18
 
19
  The WOS Hierarchical Text Classification are three dataset variants created from Web of Science (WOS) title and abstract data categorised into a hierarchical, multi-label class structure. The aim of the sampling and filtering methodology used was to create well-balanced class distributions (at chosen hierarchical levels). Furthermore, the WOS_JTF variant was also created with the aim to only contain publication data such that their class assignments results is classes instances that semantically more similar.
@@ -22,4 +22,28 @@ The WOS Hierarchical Text Classification are three dataset variants created from
22
  The three dataset variants have the following properties:
23
  1. WOS_JT comprises 43,366 total samples (train=30356, dev=6505, test=6505) and only uses the journal-based classifications as labels.
24
  2. WOS_CT comprises 65,200 total samples (train=45640, dev=9780, test=9780) and only uses citation-based classifications as labels.
25
- 3. WOS_JTF comprises 42,926 total samples (train=30048, dev=6439, test=6439) and uses a filtered set of papers based on journal and citation classification.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - NLP
9
+ - LLM
10
+ - hierarchical
11
+ - multi-label
12
+ - classification
13
+ pretty_name: WOS Hierarchical Multi-Label Text Classification
14
+ size_categories:
15
+ - 10K<n<100K
16
+ ---
17
  Introduced by du Toit and Dunaiski (2024) [Introducing Three New Benchmark Datasets for Hierarchical Text Classification](https://arxiv.org/abs/2411.19119).
18
 
19
  The WOS Hierarchical Text Classification are three dataset variants created from Web of Science (WOS) title and abstract data categorised into a hierarchical, multi-label class structure. The aim of the sampling and filtering methodology used was to create well-balanced class distributions (at chosen hierarchical levels). Furthermore, the WOS_JTF variant was also created with the aim to only contain publication data such that their class assignments results is classes instances that semantically more similar.
 
22
  The three dataset variants have the following properties:
23
  1. WOS_JT comprises 43,366 total samples (train=30356, dev=6505, test=6505) and only uses the journal-based classifications as labels.
24
  2. WOS_CT comprises 65,200 total samples (train=45640, dev=9780, test=9780) and only uses citation-based classifications as labels.
25
+ 3. WOS_JTF comprises 42,926 total samples (train=30048, dev=6439, test=6439) and uses a filtered set of papers based on journal and citation classification.
26
+
27
+ Dataset details:
28
+
29
+ *.json:
30
+ - concatenated title and abstract mapped to a list each associated class label.
31
+
32
+ depth2label.pt: dictionary where:
33
+ - key = depth of classification hierarchy.
34
+ - value = list of classes associated with depth.
35
+
36
+ path_list.pt:
37
+ - list of tuples for every edge between classes in the hierarchical classification. This specifies the acyclic graph.
38
+
39
+ slot.pt: dictionary where:
40
+ - key = label_id of parent class.
41
+ - value = label_ids of children classes.
42
+
43
+ value2slot.pt: dictionary where:
44
+ - key = label_id.
45
+ - value = label_id of parent class.
46
+
47
+ value_dict.pt: dictionary where:
48
+ - key = label_id.
49
+ - value = string representation of class.