sam749 commited on
Commit
c0aa49e
1 Parent(s): c7d28f7

Model JernauMix-Medusa-v4-0 from civitai

Browse files
Files changed (3) hide show
  1. README.md +40 -0
  2. jernaumix_medusaV40.safetensors +3 -0
  3. preview.jpeg +0 -0
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ library_name: diffusers
4
+ tags:
5
+ - Safetensors
6
+ - stable-diffusion
7
+ - stable-diffusion-diffusers
8
+ - text-to-image
9
+ pipeline_tag: text-to-image
10
+ ---
11
+
12
+ # JernauMix
13
+ ## Medusa (v4.0)
14
+
15
+ ![Generated Sample](preview.jpeg)
16
+
17
+ ### Description:
18
+
19
+ > <p>I've kept merging and testing until I was satisfied that the results were some sort of improvement over version 3.0 (I think the current version incorporates data from 5 more models compared to Chimera). I reckon some details like the skin, textures, possibly the lighting too, are even better than with Chimera, which in my humble opinion already excelled at some of those points. Enjoy!</p>
20
+
21
+ ### Creator: JernauGurgeh
22
+ ### Civitai Page: https://civitai.com/models/163310
23
+
24
+ You can use this with the [🧨Diffusers library](https://github.com/huggingface/diffusers)
25
+
26
+ ### Diffusers
27
+ ```py
28
+ from diffusers import StableDiffusionPipeline
29
+ import torch
30
+
31
+ model_id = "sam749/JernauMix-Medusa-v4-0"
32
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
33
+ pipe = pipe.to("cuda")
34
+
35
+ prompt = "masterpiece, best quality, 1girl, (colorful),(delicate eyes and face), volumatic light, ray tracing, bust shot ,extremely detailed CG unity 8k wallpaper,solo,smile"
36
+ image = pipe(prompt).images[0]
37
+
38
+ image.save("result.png")
39
+ ```
40
+
jernaumix_medusaV40.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0995f70007f8a78ad26b6a82af40b9d2f50a5cf9751ef0426f6c1a6ff0ecb00d
3
+ size 2132625894
preview.jpeg ADDED