luxmorocco commited on
Commit
8b95c39
·
verified ·
1 Parent(s): cfa6ce2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ {}
3
+ ---
4
+
5
+ ---
6
+ license: mit
7
+ tags:
8
+ - pytorch
9
+ - diffusers
10
+ - unconditional-image-generation
11
+ - diffusion-models-class
12
+ ---
13
+
14
+ # Example Fine-Tuned Model for Morocco AI Map Correction
15
+
16
+ This model is fine-tuned from `google/ddpm-celebahq-256` to try and fix an erroneous map of Morocco
17
+
18
+ ## Usage
19
+
20
+ ```python
21
+ from diffusers import DDPMPipeline
22
+
23
+ pipeline = DDPMPipeline.from_pretrained('luxmorocco/morocco-map-correction-model')
24
+ error_image = load_your_error_map()
25
+ image = pipeline(error_image).images[0]
26
+ image
27
+ ```
28
+