ansi-code commited on
Commit
046857f
·
1 Parent(s): b3eb323

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md CHANGED
@@ -1,3 +1,56 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - advertising
9
+ pretty_name: DAC693k
10
+ size_categories:
11
+ - 100K<n<1M
12
  ---
13
+
14
+ # DAC693k
15
+
16
+ ## Description
17
+
18
+ This dataset, named "DAC693k," is designed for ad targeting in a multi-class classification setting. It consists of two main columns: "domain" and "classes." The "domain" column contains a list of domains, representing various websites or online entities. The "classes" column contains an array representation of ad targeting multi-classes associated with each domain.
19
+
20
+ ## Usage
21
+
22
+ ### Hugging Face Datasets Library
23
+
24
+ The dataset is formatted to be seamlessly integrated with Hugging Face's datasets library. Users can easily load the dataset using the following code:
25
+
26
+ ```python
27
+ from datasets import load_dataset
28
+
29
+ # Load the dataset
30
+ dataset = load_dataset("ansi-code/domain-advertising-classes-693k")
31
+ ```
32
+
33
+ ## Columns
34
+ - domain: This column contains the domains of websites or online entities.
35
+ - classes: The "classes" column represents an array of multi-class labels associated with each domain for ad targeting. (see here mapping https://github.com/patcg-individual-drafts/topics/blob/main/taxonomy_v1.md)
36
+
37
+ ## Data Format
38
+ - domain: String
39
+ - classes: List of strings representing multi-class labels
40
+
41
+ ## License
42
+ This dataset is released under the Apache 2.0 license.
43
+
44
+ ## Citation
45
+ If you use this dataset in your work, please cite it using the following BibTeX entry:
46
+
47
+ ```bibtex
48
+ @dataset{silvi-2023-dac693k,
49
+ title = {domain-advertising-classes-693k},
50
+ author = {Andrea Silvi},
51
+ year = {2023},
52
+ }
53
+ ```
54
+
55
+ ## Acknowledgements
56
+ Additionally, we acknowledge the usage of the ad targeting taxonomy provided in [this GitHub repository](https://github.com/patcg-individual-drafts/topics/). The taxonomy has been instrumental in organizing and labeling the multi-class targets associated with each domain in the dataset.