chaphi commited on
Commit
c9c6dc5
1 Parent(s): 50399f3

Upload 7 files

Browse files
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ tags:
4
+ - text-to-image
5
+ - stable-diffusion
6
+ - lora
7
+ - diffusers
8
+ base_model: stabilityai/stable-diffusion-xl-base-1.0
9
+ instance_prompt: Mickey
10
+ widget:
11
+ - text: "drawing of Mickey, theater in background"
12
+ output:
13
+ url: "mickey_theater.jpg"
14
+ - text: "drawing of Mickey inspiring the communist revolution"
15
+ output:
16
+ url: "communist_mickey.jpg"
17
+ - text: "pop-art painting of Mickey walking in Paris"
18
+ output:
19
+ url: "mickey_paris.jpg"
20
+ pipeline_tag: text-to-image
21
+ datasets:
22
+ - chaphi/mickey1928extra
23
+ ---
24
+
25
+ **Mickey-1928** is fine-tuned version of Stable-Diffusion-xl trained on 96 stills in the public domain from 1928.
26
+
27
+ <Gallery />
28
+
29
+ Mickey-1928 can generate images of Mickey, Minnie and, to a much lesser extent, Pete (with the prompt PeteLegPete).
30
+
31
+ ## Dataset
32
+
33
+ Since 2024, the first three cartoons of Mickey are in the public domain. The final dataset includes:
34
+ - 40 stills from *Gallopin' Gaucho* (in color)
35
+ - 22 stills from *Plane Crazy*
36
+ - 34 stills from *Steamboat Willie*.
37
+
38
+ The stills are not currently available in high quality and you should not expect consistently good results from Mickey-1928. The color images from *Gallopin' Gaucho* are in 360x360 pixels. Hopefully with the cartoons now being part of the public domain, higher definition versions should be available.
39
+
40
+ The generated images aim to adhere to the 1928 design in order to have Mickey, Minnie and Pete in the public domain. This is still a work in progress: while the model is in development, generated images should be checked to ensure they really are in the public domain design.
communist_mickey.jpg ADDED
mickey_computer.jpg ADDED
mickey_paris.jpg ADDED
mickey_theater.jpg ADDED
model_index.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "StableDiffusionXLPipeline",
3
+ "_diffusers_version": "0.19.0.dev0",
4
+ "force_zeros_for_empty_prompt": true,
5
+ "add_watermarker": null,
6
+ "scheduler": [
7
+ "diffusers",
8
+ "EulerDiscreteScheduler"
9
+ ],
10
+ "text_encoder": [
11
+ "transformers",
12
+ "CLIPTextModel"
13
+ ],
14
+ "text_encoder_2": [
15
+ "transformers",
16
+ "CLIPTextModelWithProjection"
17
+ ],
18
+ "tokenizer": [
19
+ "transformers",
20
+ "CLIPTokenizer"
21
+ ],
22
+ "tokenizer_2": [
23
+ "transformers",
24
+ "CLIPTokenizer"
25
+ ],
26
+ "unet": [
27
+ "diffusers",
28
+ "UNet2DConditionModel"
29
+ ],
30
+ "vae": [
31
+ "diffusers",
32
+ "AutoencoderKL"
33
+ ]
34
+ }