supercatdoing
commited on
Commit
·
eaf7d54
1
Parent(s):
8c8be7f
upload datasets
Browse files- README.md +94 -1
- data/train-00000-of-00001.parquet +3 -0
README.md
CHANGED
@@ -1,8 +1,101 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
license: cc0-1.0
|
3 |
language:
|
4 |
- en
|
5 |
- ja
|
6 |
tags:
|
7 |
- art
|
8 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
dataset_info:
|
3 |
+
features:
|
4 |
+
- name: artist_id
|
5 |
+
dtype: int64
|
6 |
+
- name: name
|
7 |
+
dtype: string
|
8 |
+
- name: group_name
|
9 |
+
dtype: string
|
10 |
+
- name: other_names
|
11 |
+
sequence: string
|
12 |
+
- name: urls
|
13 |
+
sequence: string
|
14 |
+
- name: explanation
|
15 |
+
dtype: string
|
16 |
+
- name: post_count
|
17 |
+
dtype: int64
|
18 |
+
- name: is_banned
|
19 |
+
dtype: bool
|
20 |
+
- name: is_deleted
|
21 |
+
dtype: bool
|
22 |
+
- name: created_at
|
23 |
+
dtype: int64
|
24 |
+
- name: updated_at
|
25 |
+
dtype: int64
|
26 |
+
splits:
|
27 |
+
- name: train
|
28 |
+
num_bytes: 56741720
|
29 |
+
num_examples: 419639
|
30 |
+
dataset_size: 56741720
|
31 |
+
configs:
|
32 |
+
- config_name: default
|
33 |
+
data_files:
|
34 |
+
- split: train
|
35 |
+
path: data/train-*
|
36 |
license: cc0-1.0
|
37 |
language:
|
38 |
- en
|
39 |
- ja
|
40 |
tags:
|
41 |
- art
|
42 |
+
---
|
43 |
+
|
44 |
+
# booru_artists_merged
|
45 |
+
## About
|
46 |
+
|
47 |
+
This data set is a parquet file containing artist lists extracted from danbooru (2024/12/1x version)
|
48 |
+
|
49 |
+
Excluding those with a post_count of 0
|
50 |
+
|
51 |
+
Please use this as a reference when processing data locally, such as creating CSV files.
|
52 |
+
[Example of processing to create CSV and translation for tag completion of A1111](https://github.com/analysisjp/a1111-tag-data)
|
53 |
+
|
54 |
+
This file was created based on the [danbooru API](https://danbooru.donmai.us/wiki_pages/help:api).
|
55 |
+
|
56 |
+
### Field Name Description
|
57 |
+
|
58 |
+
The field names are as you see, but some explanations are necessary.
|
59 |
+
|
60 |
+
- other_names:
|
61 |
+
A list of artist aliases
|
62 |
+
|
63 |
+
- urls:
|
64 |
+
A list of artist URLs. Only valid URLs are included.
|
65 |
+
|
66 |
+
- explanation:
|
67 |
+
An explanation written on danbooru's wiki.
|
68 |
+
|
69 |
+
- create_at update_at:
|
70 |
+
These are the registration date and update date, respectively.
|
71 |
+
They are int64 type, but are timestamps with timeUnit set to milliseconds.
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
---
|
76 |
+
## ここから日本語
|
77 |
+
|
78 |
+
このデータ・セットはdanbooruから色々なデータを抽出してartistリストまとめてparquetファイル化したものです(2024/12/1x版)
|
79 |
+
post_countが0のものは除外しています
|
80 |
+
|
81 |
+
ローカルでCSV作成するなどの加工する際のネタとして使ってみてください
|
82 |
+
[A1111のタグ補完用CSVと翻訳を作成する加工例](https://github.com/analysisjp/a1111-tag-data)
|
83 |
+
|
84 |
+
このファイルは、Danbooruの[API](https://danbooru.donmai.us/wiki_pages/help:api)を元にして作成しました
|
85 |
+
|
86 |
+
### フィールド名の説明
|
87 |
+
|
88 |
+
フィールド名は見たままですが、一部説明が必要なので補足します
|
89 |
+
- other_names:
|
90 |
+
アーティストの別名リストです
|
91 |
+
|
92 |
+
- urls:
|
93 |
+
アーティストのURLリストです。有効なURLのみ入っています。
|
94 |
+
|
95 |
+
- explanation:
|
96 |
+
danbooruのwikiに書かれてい説明です。
|
97 |
+
|
98 |
+
- create_at update_at:
|
99 |
+
それぞれ登録された日と更新された日です。
|
100 |
+
int64型ですがtimestampでtimeUnitはmilli secondsとなります
|
101 |
+
|
data/train-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e5f41e27d762fe15f732e01144ddf569e239960d3f1a679a58a0ed07a7ca8e19
|
3 |
+
size 56741720
|