๐ ProteusV0.2
ProteusV0.2 is an enhanced text - to - image model. It addresses the issues of understanding anime or cartoon - related tags by merging with RealCartoonXL. It shows significant improvements in prompt understanding and stylistic capabilities compared to previous versions.
๐ Quick Start
Try Online
You can try out the model with the following text prompts and view the generated images:
Prompt |
Output Image |
black fluffy gorgeous dangerous cat animal creature, large orange eyes, big fluffy ears, piercing gaze, full moon, dark ambiance, best quality, extremely detailed |
ComfyUI_03087_.png |
(impressionistic realism by csybgh), a 50 something male, working in banking, very short dyed dark curly balding hair, Afro - Asiatic ancestry, talks a lot but listens poorly, stuck in the past, wearing a suit, he has a certain charm, bronze skintone, sitting in a bar at night, he is smoking and feeling cool, drunk on plum wine, masterpiece, 8k, hyper detailed, smokey ambiance, perfect hands AND fingers |
[GEN8 - iTXcAA - okN.jpeg](GEN8 - iTXcAA - okN.jpeg) |
high quality pixel art, a pixel art silhouette of an anime space - themed girl in a space - punk steampunk style, lying in her bed by the window of a spaceship, smoking, with a rustic feel. The image should embody epic portraiture and double exposure, featuring an isolated landscape visible through the window. The colors should primarily be dynamic and action - packed, with a strong use of negative space. The entire artwork should be in pixel art style, emphasizing the characters shape and set against a white background. Silhouette |
ComfyUI_03060_.png |
The image features an older man, a long white beard and mustache, He has a stern expression, giving the impression of a wise and experienced individual. The mans beard and mustache are prominent, adding to his distinguished appearance. The close - up shot of the mans face emphasizes his facial features and the intensity of his gaze. |
ComfyUI_03017_.png |
Super Closeup Portrait, action shot, Profoundly dark whitish meadow, glass flowers, Stains, space grunge style, Jeanne d'Arc wearing White Olive green used styled Cotton frock, Wielding thin silver sword, Sci - fi vibe, dirty, noisy, Vintage monk style, very detailed, hd |
ComfyUI_03045.png |
cinematic film still of Kodak Motion Picture Film: (Sharp Detailed Image) An Oscar winning movie for Best Cinematography a woman in a kimono standing on a subway train in Japan Kodak Motion Picture Film Style, shallow depth of field, vignette, highly detailed, high budget, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy |
3.png |
in the style of artgerm, comic style,3D model, mythical seascape, negative space, space quixotic dreams, temporal hallucination, psychedelic, mystical, intricate details, very bright neon colors, (vantablack background:1.5), pointillism, pareidolia, melting, symbolism, very high contrast, chiaroscuro |
ComfyUI_03061_.png |
1980s anime portrait of a character glitching. His face is separated from his body by heavy static. His face is deformed by pain. Dream - like, analog horror, glitch, terrifying |
ComfyUI_03092_.png |
(("Proteus"):text_logo:1) |
ComfyUI_03297_.png |
dan seagrave, dante, Abandon All Hope, Ye Who Enter Here, hell religious art purgatory zdzislaw Beksinski, abyss inferno, lost, wanderer |
ComfyUI_03483_.png |
Use it with ๐งจ diffusers
import torch
from diffusers import (
StableDiffusionXLPipeline,
KDPM2AncestralDiscreteScheduler,
AutoencoderKL
)
vae = AutoencoderKL.from_pretrained(
"madebyollin/sdxl-vae-fp16-fix",
torch_dtype=torch.float16
)
pipe = StableDiffusionXLPipeline.from_pretrained(
"dataautogpt3/ProteusV0.2",
vae=vae,
torch_dtype=torch.float16
)
pipe.scheduler = KDPM2AncestralDiscreteScheduler.from_config(pipe.scheduler.config)
pipe.to('cuda')
prompt = "black fluffy gorgeous dangerous cat animal creature, large orange eyes, big fluffy ears, piercing gaze, full moon, dark ambiance, best quality, extremely detailed"
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"
image = pipe(
prompt,
negative_prompt=negative_prompt,
width=1024,
height=1024,
guidance_scale=7.5,
num_inference_steps=50
).images[0]
โจ Features
- Enhanced Prompt Understanding: ProteusV0.2 shows subtle yet significant improvements over Version 0.1. It surpasses MJ6 in prompt understanding and approaches its stylistic capabilities.
- Improved Aesthetic Domains: It can better portray intricate facial characteristics and lifelike skin textures while maintaining good proficiency in various aesthetic domains, such as surrealism, anime, and cartoon - style visualizations.
๐ฆ Installation
No specific installation steps are provided in the original README. If you want to use it with ๐งจ diffusers, make sure you have the necessary Python libraries installed, such as torch
and diffusers
.
๐ Documentation
Proteus
Proteus is a sophisticated enhancement over OpenDalleV1.1. It leverages the core functionalities of OpenDalleV1.1 to deliver superior outcomes. Key areas of advancement include:
- Prompt Responsiveness: It has heightened responsiveness to prompts.
- Creative Capacities: It has augmented creative capacities.
To achieve these improvements, it was fine - tuned using approximately 220,000 GPTV captioned images from copyright - free stock images (with some anime included), which were then normalized. Additionally, DPO (Direct Preference Optimization) was employed through a collection of 10,000 carefully selected high - quality, AI - generated image pairs.
Settings for ProteusV0.2
Use these settings for the best results with ProteusV0.2:
- CFG Scale: Use a CFG scale of 8 to 7.
- Steps: 20 to 60 steps for more detail, 20 steps for faster results.
- Sampler: DPM++ 2M SDE
- Scheduler: Karras
- Resolution: 1280x1280 or 1024x1024
Please also consider using these keep words to improve your prompts: best quality
, HD
, ~*~aesthetic~*~
.
If you are having trouble coming up with prompts, you can use this GPT to help you refine the prompt: [https://chat.openai.com/g/g - RziQNoydR - diffusion - master](https://chat.openai.com/g/g - RziQNoydR - diffusion - master)
๐ License
This project is licensed under the GPL - 3.0 license.
๐ก Usage Tip
If you want to support the development of this project, you can donate on https://www.buymeacoffee.com/DataVoid or follow the author on https://twitter.com/DataPlusEngine.