echoctx commited on
Commit
657df77
·
verified ·
1 Parent(s): 6f64c4e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +103 -4
README.md CHANGED
@@ -1,6 +1,105 @@
1
  ---
2
- license: creativeml-openrail-m
3
- datasets:
4
- - CortexLM/dalle-3-dataset
5
  pipeline_tag: text-to-image
6
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
 
 
2
  pipeline_tag: text-to-image
3
+ widget:
4
+ - text: Three cow grazing in a bay window
5
+ output:
6
+ url: cow.png
7
+ - text: >-
8
+ Super Closeup Portrait, action shot, Profoundly dark whitish meadow, glass
9
+ flowers, Stains, space grunge style, Jeanne d'Arc wearing White Olive green
10
+ used styled Cotton frock, Wielding thin silver sword, Sci-fi vibe, dirty,
11
+ noisy, Vintage monk style, very detailed, hd
12
+ output:
13
+ url: girl.png
14
+ - text: >-
15
+ spacious,circular underground room,{dirtied and bloodied white
16
+ tiles},amalgamation,flesh,plastic,dark fabric,core,pulsating
17
+ heart,limbs,human-like arms,twisted angelic wings,arms,covered in
18
+ skin,feathers,scales,undulate slowly,unseen current,convulsing,head
19
+ area,chaotic,mass of eyes,mouths,no human features,smaller
20
+ forms,cherubs,demons,golden wires,surround,holy light,tv static
21
+ effect,golden glow,shadows,terrifying essence,overwhelming
22
+ presence,nightmarish,landscape,sparse,cavernous,eerie,dynamic,motion,striking,awe-inspiring,nightmarish,nightmarish,nightmare,horrifying,bio-mechanical,body
23
+ horror,amalgamation
24
+ output:
25
+ url: aigle.png
26
+ license: gpl-3.0
27
+ datasets:
28
+ - CortexLM/midjourney-v6
29
+ library_name: diffusers
30
+ ---
31
+ <Gallery />
32
+
33
+ ### BitDiffusionXL v0.1
34
+
35
+ This is the initial version of the image model trained on the Bittensor network within Pixel subnet. It's not expected for this model to perform as well as MidJourney V6 at the moment. However, it does generate better images than base SDXL model.
36
+
37
+ **Trained on the dataset of Subnet 19 Vision.**
38
+
39
+ ## Pixel subnet Checkpoint
40
+
41
+ Model ID : gtsru/sn17-dek-012
42
+
43
+ Revision : 5852d39e8413a377a3477b8278ade9af311f83a4
44
+
45
+ UID : 42
46
+
47
+ Perplexity : 1.1325
48
+
49
+ ## Settings for BitDiffusionXL v0.1
50
+
51
+ Use these settings for the best results with BitDiffusionV0.1:
52
+
53
+ CFG Scale: Use a CFG scale of 8
54
+
55
+ Steps: 40 to 60 steps
56
+
57
+ Sampler: DPM++ 2M SDE
58
+
59
+ Scheduler: Karras
60
+
61
+ Resolution: 1024x1024
62
+
63
+ **For best results, set a negative_prompt**
64
+
65
+ ## Use it with 🧨 diffusers
66
+ ```python
67
+ import torch
68
+ from diffusers import (
69
+ StableDiffusionXLPipeline,
70
+ KDPM2AncestralDiscreteScheduler,
71
+ AutoencoderKL
72
+ )
73
+
74
+ # Load VAE component
75
+ vae = AutoencoderKL.from_pretrained(
76
+ "madebyollin/sdxl-vae-fp16-fix",
77
+ torch_dtype=torch.float16
78
+ )
79
+
80
+ # Configure the pipeline
81
+ pipe = StableDiffusionXLPipeline.from_pretrained(
82
+ "PlixAI/BitDiffusionV0.1",
83
+ vae=vae,
84
+ torch_dtype=torch.float16
85
+ )
86
+ pipe.scheduler = KDPM2AncestralDiscreteScheduler.from_config(pipe.scheduler.config)
87
+ pipe.to('cuda')
88
+
89
+ # Define prompts and generate image
90
+ prompt = "black fluffy gorgeous dangerous cat animal creature, large orange eyes, big fluffy ears, piercing gaze, full moon, dark ambiance, best quality, extremely detailed"
91
+ negative_prompt = "nsfw, bad quality, bad anatomy, worst quality, low quality, low resolutions, extra fingers, blur, blurry, ugly, wrongs proportions, watermark, image artifacts, lowres, ugly, jpeg artifacts, deformed, noisy image"
92
+
93
+ image = pipe(
94
+ prompt,
95
+ negative_prompt=negative_prompt,
96
+ width=1024,
97
+ height=1024,
98
+ guidance_scale=7.5,
99
+ num_inference_steps=50
100
+ ).images[0]
101
+ ```
102
+
103
+ Training Subnet : https://github.com/PlixML/pixel
104
+
105
+ Dataset : https://huggingface.co/datasets/CortexLM/midjourney-v6