Update README.md
Browse files
README.md
CHANGED
@@ -144,6 +144,8 @@ size_categories:
|
|
144 |
|
145 |
# Dataset Card for Danbooru 2025 Metadata
|
146 |
|
|
|
|
|
147 |
This dataset repo provides comprehensive, up-to-date metadata for the Danbooru booru site. All metadata was freshly scraped starting on **January 2, 2025**, resulting in more extensive tag annotations for older posts, fewer errors, and reduced occurrences of non-labelled AI-generated images in the data.
|
148 |
|
149 |
## Dataset Details
|
@@ -151,17 +153,13 @@ This dataset repo provides comprehensive, up-to-date metadata for the Danbooru b
|
|
151 |
**What is this?**
|
152 |
A refreshed, Parquet-formatted metadata dump of Danbooru, current as of January 2, 2025.
|
153 |
|
154 |
-
**Why this over other Danbooru scrapes?**
|
155 |
-
- **Fresh Metadata:** Coverage includes post IDs from 1 through ~8.6M, with the newest vocabulary and tag annotations.
|
156 |
-
- **Maximized Tag Count:** Many historical tag renames and additions are accurately reflected, reducing duplications for downstream tasks.
|
157 |
-
- **Reduced Noise:** Fewer untagged or mislabeled AI images compared to older scrapes.
|
158 |
|
159 |
-
**
|
160 |
-
|
|
|
|
|
|
|
161 |
|
162 |
-
- **Shared by:** [trojblue](https://huggingface.co/trojblue)
|
163 |
-
- **Language(s) (NLP):** English, Japanese
|
164 |
-
- **License:** MIT
|
165 |
|
166 |
## Uses
|
167 |
|
@@ -174,22 +172,11 @@ danbooru_dataset = load_dataset("trojblue/danbooru2025-metadata", split="train")
|
|
174 |
df = danbooru_dataset.to_pandas()
|
175 |
```
|
176 |
|
177 |
-
This dataset can be used to:
|
178 |
-
- Retrieve the full Danbooru image set via the metadata’s URLs
|
179 |
-
- Train or fine-tune an image tagger
|
180 |
-
- Compare against previous metadata versions to track changes, tag evolution, and historical trends
|
181 |
-
|
182 |
|
183 |
## Dataset Structure
|
184 |
|
185 |
Below is a partial overview of the DataFrame columns, derived directly from the Danbooru JSONs:
|
186 |
|
187 |
-
|
188 |
-
```python
|
189 |
-
import unibox as ub
|
190 |
-
ub.peeks(df)
|
191 |
-
```
|
192 |
-
|
193 |
```
|
194 |
(8616173, 59)
|
195 |
Index(['approver_id', 'bit_flags', 'created_at', 'down_score', 'fav_count',
|
|
|
144 |
|
145 |
# Dataset Card for Danbooru 2025 Metadata
|
146 |
|
147 |
+
**Current max id**: `8,877,698` (Feb.18, 2025)
|
148 |
+
|
149 |
This dataset repo provides comprehensive, up-to-date metadata for the Danbooru booru site. All metadata was freshly scraped starting on **January 2, 2025**, resulting in more extensive tag annotations for older posts, fewer errors, and reduced occurrences of non-labelled AI-generated images in the data.
|
150 |
|
151 |
## Dataset Details
|
|
|
153 |
**What is this?**
|
154 |
A refreshed, Parquet-formatted metadata dump of Danbooru, current as of January 2, 2025.
|
155 |
|
|
|
|
|
|
|
|
|
156 |
|
157 |
+
**Why choose this over other Danbooru scrapes?**
|
158 |
+
|
159 |
+
The dataset includes all available metadata in one place, eliminating the need to gather and merge data from multiple sources manually.
|
160 |
+
|
161 |
+
It features more annotations and fewer untagged or mislabeled AI-generated images than older scrapes. Additionally, historical tag renames and additions are accurately reflected, ensuring easier and more reliable downstream use.
|
162 |
|
|
|
|
|
|
|
163 |
|
164 |
## Uses
|
165 |
|
|
|
172 |
df = danbooru_dataset.to_pandas()
|
173 |
```
|
174 |
|
|
|
|
|
|
|
|
|
|
|
175 |
|
176 |
## Dataset Structure
|
177 |
|
178 |
Below is a partial overview of the DataFrame columns, derived directly from the Danbooru JSONs:
|
179 |
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
```
|
181 |
(8616173, 59)
|
182 |
Index(['approver_id', 'bit_flags', 'created_at', 'down_score', 'fav_count',
|