pietrolesci commited on
Commit
f2d0bab
·
verified ·
1 Parent(s): 8e448eb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -1
README.md CHANGED
@@ -112,4 +112,21 @@ dataset_info:
112
  ---
113
 
114
  This dataset has been created as an artefact of the paper [AnchorAL: Computationally Efficient Active Learning for Large and Imbalanced Datasets (Lesci and Vlachos, 2024)](https://arxiv.org/abs/2404.05623).
115
- More info about this dataset in appendix of the paper.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  ---
113
 
114
  This dataset has been created as an artefact of the paper [AnchorAL: Computationally Efficient Active Learning for Large and Imbalanced Datasets (Lesci and Vlachos, 2024)](https://arxiv.org/abs/2404.05623).
115
+ More info about this dataset in the appendix of the paper.
116
+
117
+ The AmazonCat-13k dataset was released by [McAuley and Leskovec (2013)](https://dl.acm.org/doi/pdf/10.1145/2507157.2507163)
118
+ and is composed of product descriptions and reviews classified into 13k multi-label categories.
119
+ The dataset is split into 1.2M train and 300k evaluation instances.
120
+ It is commonly used as an [extreme classification benchmark](http://manikvarma.org/downloads/XC/XMLRepository.html)
121
+ [(You et al., 2019)](https://proceedings.neurips.cc/paper_files/paper/2019/file/9e6a921fbc428b5638b3986e365d4f21-Paper.pdf) where the goal is to classify an item into its categories.
122
+ The data are exactly the same as the original available at [this Google Drive link](https://drive.google.com/u/0/uc?id=17rVRDarPwlMpb3l5zof9h34FlwbpTu4l)
123
+ with the following additions:
124
+
125
+ 1. A unique identifier, `uid` column.
126
+
127
+ 1. Indices, that is, 3 columns with the embeddings of 3 different sentence-transformers
128
+ - `all-mpnet-base-v2`
129
+ - `multi-qa-mpnet-base-dot-v1`
130
+ - `all-MiniLM-L12-v2`
131
+
132
+ 1. Renaming of the `label` column to `labels` for easier compatibility with the transformers library.