markury commited on
Commit
17c4270
1 Parent(s): 76e6538

Create multidatabackend.json

Browse files
Files changed (1) hide show
  1. multidatabackend.json +67 -0
multidatabackend.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": "cats-who-smoke-512",
4
+ "type": "local",
5
+ "instance_data_dir": "datasets/cats-who-smoke",
6
+ "crop": false,
7
+ "crop_style": "random",
8
+ "minimum_image_size": 128,
9
+ "resolution": 512,
10
+ "resolution_type": "pixel_area",
11
+ "repeats": 0,
12
+ "metadata_backend": "json",
13
+ "caption_strategy": "filename",
14
+ "cache_dir_vae": "cache/cats-who-smoke/vae-512"
15
+ },
16
+ {
17
+ "id": "cats-who-smoke-1024",
18
+ "type": "local",
19
+ "instance_data_dir": "datasets/cats-who-smoke",
20
+ "crop": false,
21
+ "crop_style": "random",
22
+ "minimum_image_size": 128,
23
+ "resolution": 1024,
24
+ "resolution_type": "pixel_area",
25
+ "repeats": 0,
26
+ "metadata_backend": "json",
27
+ "caption_strategy": "filename",
28
+ "cache_dir_vae": "cache/cats-who-smoke/vae-1024"
29
+ },
30
+ {
31
+ "id": "cats-who-smoke-512-crop",
32
+ "type": "local",
33
+ "instance_data_dir": "datasets/cats-who-smoke",
34
+ "crop": true,
35
+ "crop_style": "random",
36
+ "crop_aspect_buckets": [0.5, 0.66, 1.0, 1.33, 1.5, 2],
37
+ "minimum_image_size": 128,
38
+ "resolution": 512,
39
+ "resolution_type": "pixel_area",
40
+ "repeats": 2,
41
+ "metadata_backend": "json",
42
+ "caption_strategy": "filename",
43
+ "cache_dir_vae": "cache/cats-who-smoke/vae-512-crop"
44
+ },
45
+ {
46
+ "id": "cats-who-smoke-1024-crop",
47
+ "type": "local",
48
+ "instance_data_dir": "datasets/cats-who-smoke",
49
+ "crop": true,
50
+ "crop_style": "random",
51
+ "crop_aspect_buckets": [0.5, 0.66, 1.0, 1.33, 1.5, 2],
52
+ "minimum_image_size": 128,
53
+ "resolution": 1024,
54
+ "resolution_type": "pixel_area",
55
+ "repeats": 2,
56
+ "metadata_backend": "json",
57
+ "caption_strategy": "filename",
58
+ "cache_dir_vae": "cache/cats-who-smoke/vae-1024-crop"
59
+ },
60
+ {
61
+ "id": "text-embed-cache",
62
+ "dataset_type": "text_embeds",
63
+ "default": true,
64
+ "type": "local",
65
+ "cache_dir": "cache/text"
66
+ }
67
+ ]