Instructions to use KappaNeuro/marc-silvestri-style with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use KappaNeuro/marc-silvestri-style with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("KappaNeuro/marc-silvestri-style") prompt = "Marc Silvestri Style - Depict a towering, musclebound man clad in detailed brown armor, possessing the sheer force necessary to unleash earth-shattering tremors, as he brandishes a massive sword as tall as himself. Create this image using the medium of digital art, channeling the dynamic and exaggerated proportions found in comic book illustrations by artists like Jack Kirby or Jim Lee. Bathe the scene in a strong, contrasting light source, highlighting the character's powerful muscles and intricate armor details. Utilize a color scheme with a dominant presence of warm browns, muted golds, and subtle hints of earthy greens. Frame this awe-inspiring figure with a worm's-eye view, using a fisheye lens to add a sense of depth and drama to the composition." image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Ctrl+K