MC7ever commited on
Commit
2f0b503
·
verified ·
1 Parent(s): 56adea4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +70 -0
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - datasets
6
+ - metadata
7
+ - huggingface
8
+ - training-data
9
+ - model-cards
10
+ pretty_name: HF Datasets Master Index
11
+ size_categories:
12
+ - 10k<n<100k
13
+ ---
14
+
15
+ # HF Datasets Master Index
16
+
17
+ A comprehensive rolled-together dataset of **4,810 unique datasets** found across **227 HuggingFace profiles** (90 people + 137 orgs).
18
+
19
+ ## What's Inside
20
+
21
+ This dataset consolidates all publicly available dataset references from:
22
+ 1. **Profile dataset pages** - datasets published by each profile
23
+ 2. **Profile collections** - datasets bookmarked in collections
24
+ 3. **Model cards** - datasets referenced in model training descriptions
25
+ 4. **Model tree traversal** - datasets inherited from base models through finetunes/merges/quants
26
+ 5. **Your personal collections** - mc7ever's 52 HF collections
27
+
28
+ ## Columns
29
+
30
+ | Column | Description |
31
+ |--------|-------------|
32
+ | `dataset` | HuggingFace dataset ID (org/name) |
33
+ | `profiles_using_it` | Pipe-delimited list of profiles that use/reference this dataset |
34
+ | `num_profiles` | Number of profiles using it |
35
+ | `collections_it_appears_in` | Collections where this dataset appears |
36
+ | `your_collection` | Your personal collection name (if applicable) |
37
+ | `direct_model_references` | Number of models directly trained on this dataset |
38
+ | `ancestral_model_references` | Number of models that inherit this dataset through base model tree |
39
+ | `total_model_tree_refs` | Total model references (direct + ancestral) |
40
+ | `direct_model_ids` | Model IDs directly trained on this dataset |
41
+ | `ancestral_model_ids` | Model IDs that inherit this dataset |
42
+ | `model_pipeline_types` | Pipeline types of models using this dataset |
43
+ | `total_downloads` | Total downloads across all profiles |
44
+ | `total_likes` | Total likes across all profiles |
45
+ | `found_via` | How this dataset was discovered (profile_page, model_card, your_collection) |
46
+
47
+ ## Stats
48
+
49
+ - **4,810** unique datasets
50
+ - **227** profiles scraped (90 people + 137 orgs)
51
+ - **5,041** models indexed (text + multimodal with text)
52
+ - **403** datasets appear in 2+ profiles
53
+ - **190** datasets in your personal collections
54
+
55
+ ## Usage
56
+
57
+ ```python
58
+ import pandas as pd
59
+
60
+ df = pd.read_parquet("hf_datasets_master.parquet")
61
+
62
+ # Most-used datasets
63
+ df.nlargest(10, 'num_profiles')[['dataset', 'num_profiles', 'total_model_tree_refs']]
64
+
65
+ # Datasets in your collections
66
+ df[df['your_collection'] != '']
67
+
68
+ # Datasets with most model references
69
+ df.nlargest(10, 'total_model_tree_refs')[['dataset', 'total_model_tree_refs']]
70
+ ```