File size: 870 Bytes
563b3ab
 
 
 
 
 
 
 
 
 
 
 
 
09b635d
 
 
 
 
 
 
 
 
 
563b3ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
license: mit
task_categories:
  - text-classification
language:
  - en
tags:
  - amazon
  - products
  - binary
  - text
pretty_name: Amazon Scrape 4 llm
size_categories:
  - n<1K
configs:
  - config_name: phones
    data_files:
      - split: train
        path: data/phones.csv
  - config_name: laptops
    data_files:
      - split: train
        path: data/laptops.csv
---

# Amazon Scrape 4 llm

## Purpose?

Feed an LLM raw html to identify products from an ecommerce platform.\
These datasets contain the extracted innerTexts of all HTML nodes from different ecommerce product pages.\
The cleaning process significantly reduces the token size from ex: 450k -> 6k

### JS snippet

```js
const allowedTags = sanitizeHtml.defaults.allowedTags;
allowedTags.splice(allowedTags.indexOf("a"), 1);
convert(sanitizeHtml(document.body.innerHTML, { allowedTags }));
```