narugo commited on
Commit
d969c21
·
verified ·
1 Parent(s): 0bc4b04

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -0
README.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-classification
5
+ - image-to-image
6
+ - text-to-image
7
+ language:
8
+ - en
9
+ - ja
10
+ size_categories:
11
+ - 1M<n<10M
12
+ ---
13
+
14
+ Index files of [NebulaeWis/e621-2024-webp-4Mpixel](https://huggingface.co/datasets/NebulaeWis/e621-2024-webp-4Mpixel).
15
+
16
+ You can download images from NebulaeWis/e621-2024-webp-4Mpixel with [cheesechaser](https://github.com/deepghs/cheesechaser).
17
+
18
+ ```python
19
+ from cheesechaser.datapool import E621NewestWebpDataPool
20
+
21
+ pool = E621NewestWebpDataPool()
22
+
23
+ # download e621 #2010000-2010300, to directory /data/e621
24
+ pool.batch_download_to_directory(
25
+ resource_ids=range(2010000, 2010300),
26
+ dst_dir='/data/e621',
27
+ max_workers=12,
28
+ )
29
+
30
+ ```