Shekswess commited on
Commit
9bfb037
β€’
1 Parent(s): 9043ad6

Creating README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: cc-by-nc-nd-4.0
5
+ library_name: diffusers
6
+ tags:
7
+ - art
8
+ - people
9
+ - diffusion
10
+ - Cinematic
11
+ - Photography
12
+ - Landscape
13
+ - Interior
14
+ - Food
15
+ - Car
16
+ - Wildlife
17
+ - Architecture
18
+ - Neuron
19
+ - Inferentia
20
+ thumbnail: >-
21
+ https://storage.googleapis.com/run-diffusion-public-assets/juggernaut-xi/juggernaut-collage-256.webp
22
+ base_model: stabilityai/stable-diffusion-xl-base-1.0
23
+ pipeline_tag: text-to-image
24
+ ---
25
+
26
+ # Juggernaut XI v11 by RunDiffusion (Official)
27
+
28
+ πŸŽ‰ Juggernaut XI is Comming! 🌍
29
+ The next version of Juggernaut is on the horizon. Follow our social media accounts to be notified when we launch.
30
+
31
+ Juggernaut XI is available now on [RunDiffusion.com](http://rundiffusion.com/?utm_source=huggingface&utm_medium=referral&utm_campaign=juggernautv11) and through an API on Octo.AI
32
+
33
+ https://x.com/RunDiffusion & https://x.com/Juggernaut_AI
34
+
35
+ **Terms and Conditions:**
36
+ By providing your name and email, you consent to not use this model behind API's or generative services or on a competing platform or service to RunDiffusion.com.
37
+ Commercial licences can be obtained by emailing [email protected]. You also agree to receive communications from RunDiffusion, including information on model releases, platform updates, and news from RunDiffusion.
38
+ RunDiffusion values your privacy and will not misuse your information. We are committed to avoiding irrelevant or unsolicited messages.
39
+
40
+ ![juggernaut XI photo previews](https://storage.googleapis.com/run-diffusion-public-assets/juggernaut-xi/juggernaut-collage-832.webp)
41
+ ![RunDiffusion Logo](https://imagedelivery.net/siANnpeNAc_S2q1M3-eDrA/ca2b388d-a835-490c-dec0-e764bee8d000/micro)
42
+ This model is not permitted to be used behind API services. Please contact [[email protected]](mailto:[email protected]) for business inquires, commercial licensing, custom models, and consultation.
43
+
44
+ Over two months have passed and we are thrilled to announce the next version of Juggernaut!
45
+
46
+ - Amazing prompt adherence βœ…
47
+ - Massively improved aesthetics
48
+ - Better hands, eyes, faces, and compostion
49
+ - Fully trained from the ground up using the GPT4 Vision Captioning tool by LEOSAM πŸ› οΈ
50
+ - Expanded and cleaner dataset with higher quality images πŸ–ΌοΈ
51
+ - Improved classifications of shots (Full Body, Midshots, Portraits, etc) πŸ“Έ
52
+ - Enhanced text generation capability πŸ“
53
+ - Two different prompting techniques, Natural and Tagging style 🏷️
54
+ - Enhanced by RunDiffusion Photo for refinement of details 🧐
55
+
56
+ Read more about this version here https://rundiffusion.com/juggernaut-xi
57
+
58
+ Uset his now exclusively through Fooocus on RunDiffusion.com
59
+ - Launch Fooocus on RunDiffusion
60
+ - Find Juggernaut_XI_byRunDiffusion.safetensors and start generating!
61
+
62
+ Prompting Guide πŸ“˜
63
+ Because everything has been trained from the ground up, prompting is a bit different. (Simpler, don't worry) @Kandoo has created a guide to help you seamlessly integrate this powerful model into your workflow, enabling you to leverage its advanced capabilities without feeling overwhelmed. Download it here: https://rundiffusion.com/juggernaut-xl#nav
64
+
65
+ As always, we love our community and feel so lucky to be in this position to bring these awesome tools and models to you amazing diffusers. Thanks for supporting us since our first day back in 2022. Going on TWO YEARS since we first started using generative Ai. Time flies when you're having fun. wow!
66
+
67
+ Don't forget to follow us on Twitter where we have way more updates on big things we're working on. The future is bright
68
+
69
+ https://x.com/RunDiffusion
70
+
71
+ -RunDiffusion Team
72
+
73
+ ![https://rundiffusion.com?utm_source=huggingface&utm_medium=referral&utm_campaign=juggernautv11](https://i.imgur.com/fKPEqSu.jpg)
74
+
75
+ ## Usage
76
+ ```python
77
+ from diffusers import DPMSolverMultistepScheduler
78
+ from optimum.neuron import NeuronStableDiffusionXLPipeline
79
+
80
+ pipeline = NeuronStableDiffusionXLPipeline.from_pretrained("Shekswess/Juggernaut-XI-v11-Neuron", device_ids=[0, 1])
81
+ pipeline.scheduler = DPMSolverMultistepScheduler.from_config(pipeline.scheduler.config)
82
+
83
+ prompt = "A swirling beautiful exploding scene of magical wonders and surreal ideas and objects with portraits of beautiful woman with silk back to camera, flowers, light, cosmic wonder, nebula, high-resolution"
84
+ negative_prompt = "fake eyes, deformed eyes, bad eyes, cgi, 3D, digital, airbrushed, hands, hand"
85
+ image = pipeline(prompt=prompt, negative_prompt=negative_prompt).images[0].save("output.png")
86
+ ```