FragDBnet commited on
Commit
386a93f
·
verified ·
1 Parent(s): 156b9d8

Expand README: prominent Companion Parquet section with detailed descriptions, tier table, use cases, SEO

Browse files
Files changed (1) hide show
  1. README.md +72 -8
README.md CHANGED
@@ -561,17 +561,81 @@ The most comprehensive structured fragrance database available. This is a **free
561
  | `news_comments_sample.parquet` | 20 | 9 | News comments preview (parquet) |
562
  | `SPEC.md` | — | — | Parquet schema documentation |
563
 
564
- ### Companion Parquet Datasets (Full tier only)
565
 
566
- The full parquet datasets (not in this sample) ship with all paid tiers except the $200 Core:
567
 
568
- | File | Rows | Description |
569
- |------|------|-------------|
570
- | `comments.parquet` | 4,643,851 | User reviews in 23 languages |
571
- | `news.parquet` | 24,440 | Editorial articles, 2008-2026 |
572
- | `news_comments.parquet` | 263,798 | Threaded news comments |
573
 
574
- See `SPEC.md` for full schema. Pricing: https://fragdb.net/#pricing
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
575
 
576
  ### Full Database
577
 
 
561
  | `news_comments_sample.parquet` | 20 | 9 | News comments preview (parquet) |
562
  | `SPEC.md` | — | — | Parquet schema documentation |
563
 
564
+ ## Companion Parquet Datasets User Reviews, News, and Community Comments
565
 
566
+ FragDB ships with **three Apache Parquet datasets** containing **4.9 million rows** of user-generated content and editorial coverage the largest publicly-organized corpus of fragrance reviews and perfumery journalism. Use them for NLP, sentiment analysis, recommendation systems, market research, or training language models on fragrance-specific text.
567
 
568
+ **Keywords:** fragrance reviews · perfume reviews · multilingual UGC corpus · NLP training data · fragrance sentiment · perfumery journalism · perfume recommendation · scent recommendation · review classification · entity linking · knowledge graph · fragrance industry news · perfume articles
 
 
 
 
569
 
570
+ ### `comments.parquet` 4.6 Million User Reviews in 23 Languages
571
+
572
+ The world's largest collection of structured fragrance reviews. Every entry includes the perfume ID (joinable with `fragrances.csv`), author username, posting date, full review text, avatar URL, and language code.
573
+
574
+ - **4,643,851 user reviews** spanning every major perfume on Fragrantica
575
+ - **23 languages** — English (1.69M), Russian, Portuguese, Spanish, Korean, Turkish, Japanese, Polish, Italian, Hungarian, Serbian, Swedish, German, Hebrew, Ukrainian, French, Arabic, Greek, Czech, Chinese, Romanian, Mongolian, Dutch
576
+ - **Coverage:** 70.6% of all fragrances have at least one review (93,305 of 132,160 PIDs)
577
+ - **Deterministic global primary key** — stable comment IDs survive re-scrapes
578
+ - **Zero duplicate rows**, **zero foreign key orphans** against `fragrances.csv.pid`
579
+ - **Independent UGC per language** — genuine localized content, not machine translation
580
+ - **8 fields:** `pid`, `lang`, `comment_id`, `author`, `date`, `text`, `avatar_url`, `gradient_class`
581
+ - **PyArrow large_string format** — combined corpus exceeds 32-bit string offset limit
582
+
583
+ **Use cases:** sentiment analysis · review classification · recommendation systems · perfume similarity from text · language detection benchmark · multilingual NLP training corpus · fragrance market research · author network analysis · trend detection by language
584
+
585
+ ### `news.parquet` — 24,440 Editorial Articles (2008–2026)
586
+
587
+ Two decades of professional fragrance journalism from Fragrantica's editorial team. Every article includes title, author, full text (plain + HTML), category, related perfumes/brands/perfumers, publication date, and main image.
588
+
589
+ - **24,440 editorial articles** from 2008 to 2026 — complete public archive
590
+ - **30+ categories** — New Fragrances (34.9%), Fragrance Reviews (22.8%), Niche Perfumery (10.4%), Designer Brands, Interviews, History, Industry News
591
+ - **Bilingual storage** — `text` (plain) for NLP, `text_html` (markup preserved) for rich display
592
+ - **Linked entities** — `related_pids[]`, `related_brands[]`, `related_perfumers[]` as JSON arrays
593
+ - **0% orphans** over 119,662 PID references
594
+ - **63.1% archived legacy, 36.9% modern** fully-dated articles
595
+ - **16 fields:** `nid`, `title`, `category`, `author`, `url`, `is_archived`, `date_unix`, `description`, `text`, `text_html`, `main_image`, `article_images`, `related_pids`, `related_brands`, `related_perfumers`, `comments_count`
596
+
597
+ **Use cases:** content recommendation · article search engine · perfume knowledge graph · trend analysis · author influence study · entity linking · timeline analysis · industry research · niche perfumery research
598
+
599
+ ### `news_comments.parquet` — 263,798 Threaded Community Comments
600
+
601
+ Community discussions attached to editorial articles, with threading support for replies. Joinable with `news.parquet` via `nid`.
602
+
603
+ - **263,798 threaded comments** across **21,820 articles** (89.3% of news articles have ≥1 comment)
604
+ - **4.9% reply rate** — threaded conversations with reply detection
605
+ - **100% populated timestamps**
606
+ - **9 fields:** `nid`, `comment_id`, `is_reply`, `author`, `date`, `date_unix`, `text`, `avatar_url`, `gradient`
607
+
608
+ **Use cases:** community engagement analysis · threaded discussion mining · reply network construction · comment sentiment · author activity profiles
609
+
610
+ ### Tier Availability
611
+
612
+ | Tier | CSV Core | Parquet Datasets |
613
+ |------|----------|------------------|
614
+ | **$200 One-Time Core** | ✅ | ❌ |
615
+ | **$400 One-Time Full Database** | ✅ | ✅ |
616
+ | **Annual Subscription** | ✅ | ✅ (always latest) |
617
+ | **Lifetime Access** | ✅ | ✅ (always latest) |
618
+
619
+ See https://fragdb.net/#pricing for complete tier comparison.
620
+
621
+ ### Quick Start — Parquet
622
+
623
+ ```python
624
+ import pyarrow.parquet as pq
625
+ import pandas as pd
626
+ import json
627
+
628
+ reviews = pq.read_table('comments.parquet').to_pandas()
629
+ fragrances = pd.read_csv('fragrances.csv', sep='|')
630
+ reviews_with_meta = reviews.merge(fragrances, on='pid', how='left')
631
+
632
+ news = pq.read_table('news.parquet').to_pandas()
633
+ news['related_pids_list'] = news['related_pids'].apply(json.loads)
634
+
635
+ news_comments = pq.read_table('news_comments.parquet').to_pandas()
636
+ ```
637
+
638
+ Full schema in [`SPEC.md`](SPEC.md).
639
 
640
  ### Full Database
641