iarbel commited on
Commit
ea7ebe5
1 Parent(s): 44db9b2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +106 -6
README.md CHANGED
@@ -20,11 +20,111 @@ dataset_info:
20
  dtype: string
21
  splits:
22
  - name: train
23
- num_bytes: 75797
24
- num_examples: 20
25
- download_size: 62474
26
- dataset_size: 75797
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  ---
28
- # Dataset Card for "amazon-product-data-sample"
29
 
30
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  dtype: string
21
  splits:
22
  - name: train
23
+ num_bytes: 2686223
24
+ num_examples: 716
25
+ - name: validation
26
+ num_bytes: 763820
27
+ num_examples: 204
28
+ - name: test
29
+ num_bytes: 390684
30
+ num_examples: 103
31
+ download_size: 2162385
32
+ dataset_size: 3840727
33
+ license: cc-by-nc-4.0
34
+ task_categories:
35
+ - text-generation
36
+ language:
37
+ - en
38
+ size_categories:
39
+ - n<1K
40
  ---
41
+ # Dataset Card for "amazon-product-data-filter"
42
 
43
+ ## Dataset Description
44
+
45
+ - **Homepage:** [τenai.io - AI Consulting](https://www.tenai.io/)
46
+ - **Point of Contact:** [Iftach Arbel](mailto:ia@momentum-ai.io)
47
+
48
+ ### Dataset Summary
49
+
50
+ The Amazon Product Dataset contains product listing data from the Amazon US website. It can be used for various NLP and classification tasks, such as text generation, product type classification, attribute extraction, image recognition and more.
51
+
52
+ **NOTICE:** This is a sample of the full [Amazon Product Dataset](https://huggingface.co/datasets/iarbel/amazon-product-data-filter), which contains 1K examples. Follow the link to gain access to the full dataset.
53
+
54
+ ### Languages
55
+
56
+ The text in the dataset is in English.
57
+
58
+ ## Dataset Structure
59
+
60
+ ### Data Instances
61
+
62
+ Each data point provides product information, such as ASIN (Amazon Standard Identification Number), title, feature-bullets, and more.
63
+
64
+ ### Data Fields
65
+
66
+ - `asin`: Amazon Standard Identification Number.
67
+ - `category`: The product category. This field represents the search-string used to obtain the listing, it is not the product category as appears on Amazon.com.
68
+ - `img_url`: Main image URL from the product page.
69
+ - `title`: Product title, as appears on the product page.
70
+ - `feature-bullets`: Product feature-bullets list, as they appear on the product page.
71
+ - `tech_data`: Product technical data (material, style, etc.), as they appear on the product page. Structured as a list of tuples, where the first element is a feature (e.g. material) and the second element is a value (e.g. plastic).
72
+ - `labels`: A processed instance of `feature-bullets` field. The original feature-bullets were aligned to form a standard structure with a capitalized prefix, remove emojis, etc. Finally, the list items were concatenated to a single string with a `\n` seperator.
73
+ - `tech_process`: A processed instance of `tech_data` field. The original tech data was filtered and transformed from a `(key, value)` structure to a natural language text.
74
+
75
+ ### Data Splits
76
+
77
+ The sample dataset has 20 train examples. For the full dataset cilck [here](https://huggingface.co/datasets/iarbel/amazon-product-data-filter).
78
+
79
+ ## Dataset Creation
80
+
81
+ ### Curation Rationale
82
+
83
+ This dataset was built to provide high-quality data in the e-commerce domain, and fine-tuning LLMs for specific tasks. Raw, unstractured data was collected from Amazom.com, parsed, processed, and filtered using various techniques (annotations, rule-based, models).
84
+
85
+ ### Source Data
86
+
87
+ #### Initial Data Collection and Normalization
88
+
89
+ The data was obtained by collected raw HTML data from Amazom.com.
90
+
91
+ ### Annotations
92
+
93
+ The dataset does not contain any additional annotations.
94
+
95
+ ### Personal and Sensitive Information
96
+
97
+ There is no personal information in the dataset.
98
+
99
+ ## Considerations for Using the Data
100
+
101
+ ### Social Impact of Dataset
102
+
103
+ To the best of our knowledge, there is no social impact for this dataset. The data is highly technical, and usage for product text-generation or classification does not pose a risk.
104
+
105
+ ### Other Known Limitations
106
+
107
+ The quality of product listings may vary, and may not be accurate.
108
+
109
+ ## Additional Information
110
+
111
+ ### Dataset Curators
112
+
113
+ The dataset was collected and curated by [Iftach Arbel](mailto:ia@momentum-ai.io).
114
+
115
+ ### Licensing Information
116
+
117
+ The dataset is available under the [Creative Commons NonCommercial (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/legalcode).
118
+
119
+ ### Citation Information
120
+
121
+ ```
122
+ @misc{amazon_product_filter,
123
+ author = {Iftach Arbel},
124
+ title = {Amazon Product Dataset Sample},
125
+ year = {2023},
126
+ publisher = {Huggingface},
127
+ journal = {Huggingface dataset},
128
+ howpublished = {https://huggingface.co/datasets/iarbel/amazon-product-data-sample},
129
+ }
130
+ ```