amazon-scrape-4-llm / README.md
TIMΛƧHΛN
Update README.md
09b635d
|
raw
history blame
No virus
870 Bytes
metadata
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

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