ziadatalabs commited on
Commit
b8f9446
·
verified ·
1 Parent(s): 84b9fab

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +85 -0
README.md ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - tabular-classification
5
+ - tabular-regression
6
+ language:
7
+ - en
8
+ tags:
9
+ - synthetic
10
+ - test-data
11
+ - mock-data
12
+ - customer-data
13
+ - tabular
14
+ - faker
15
+ size_categories:
16
+ - 10M<n<100M
17
+ pretty_name: Free Synthetic Customer Data (50M)
18
+ ---
19
+
20
+ # Free Synthetic Customer Data — 50M Rows
21
+
22
+ A free, fully synthetic dataset of **50,000,000 customer/user records**, generated for developers and builders who need realistic-looking test data without touching any real personal information.
23
+
24
+ Every value in this dataset is **artificially generated**. No real people, no scraped data, no real PII. It's built for seeding databases, load-testing APIs, prototyping apps, testing ETL pipelines, and demoing software with data that *looks* real but isn't.
25
+
26
+ ## Schema
27
+
28
+ | Column | Type | Description |
29
+ |---|---|---|
30
+ | `full_name` | string | Synthetic first + last name |
31
+ | `email` | string | Synthetic email address (name-derived) |
32
+ | `street_address` | string | Synthetic street number + name |
33
+ | `city` | string | Synthetic city name |
34
+ | `state` | string | US state abbreviation (2-letter) |
35
+ | `zip_code` | string | 5-digit US-style postal code |
36
+ | `phone` | string | US-style phone number, `(NXX) NXX-XXXX` format |
37
+ | `signup_date` | string | ISO date (`YYYY-MM-DD`), spread across ~6 years |
38
+ | `account_status` | string | One of: `active`, `inactive`, `trial`, `suspended` |
39
+
40
+ **Account status distribution (approx):** active 65%, inactive 15%, trial 12%, suspended 8%.
41
+
42
+ ## Format
43
+
44
+ - **Apache Parquet**, Snappy compression
45
+ - One file, ~2.8 GB, 50,000,000 rows
46
+ - Loads cleanly with pandas, polars, DuckDB, PyArrow, or the `datasets` library
47
+
48
+ ## Quick start
49
+
50
+ ```python
51
+ import pandas as pd
52
+
53
+ df = pd.read_parquet("synthetic_users_50M.parquet")
54
+ print(df.head())
55
+ ```
56
+
57
+ Or with the `datasets` library:
58
+
59
+ ```python
60
+ from datasets import load_dataset
61
+
62
+ ds = load_dataset("ziadatalabs/FreeSyntheticCustomerData50M")
63
+ ```
64
+
65
+ Or with DuckDB (great for querying without loading it all into memory):
66
+
67
+ ```sql
68
+ SELECT account_status, count(*)
69
+ FROM 'synthetic_users_50M.parquet'
70
+ GROUP BY account_status;
71
+ ```
72
+
73
+ ## Notes
74
+
75
+ - All data is synthetic and generated programmatically. Any resemblance to real individuals is coincidental.
76
+ - Emails, addresses, and phone numbers follow realistic *formats* but are not real, deliverable, or dialable.
77
+ - This is the first of several free synthetic datasets planned for builders — more types coming.
78
+
79
+ ## License & Usage
80
+
81
+ Released under **CC BY-NC 4.0** — free for personal, research, and educational use, with attribution, **no commercial use**. See [the license](https://creativecommons.org/licenses/by-nc/4.0/) for details.
82
+
83
+ ---
84
+
85
+ *Published by Zia Data Labs. We create synthetic data — and we give some of it away free, because good test data shouldn't be hard to find.*