Instructions to use BKKSPY/Masmodel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use BKKSPY/Masmodel with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("BKKSPY/Masmodel") prompt = "MLLW" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Add generated example
Browse filesGenerated example for model BKKSPY/Masmodel.
Prompt: A menacing, fiery demon lord with enormous curved horns, glowing red eyes, and sharp fangs, standing in a dark and ominous battlefield. His muscular body is clad in intricate black and red armor with glowing molten cracks. His chest is adorned with a fiery red gem radiating intense heat. Large, tattered black wings spread out behind him, and his clawed hands emit blazing flames. The atmosphere is filled with sparks, smoke, and embers, creating a hellish and apocalyptic scene. The background hints at a destroyed landscape with shadows and fire illuminating the darkness, emphasizing the demonic and fearsome nature of the character.
- README.md +15 -6
- images/example_66d10brt1.png +0 -0
README.md
CHANGED
|
@@ -9,14 +9,23 @@ tags:
|
|
| 9 |
- diffusers
|
| 10 |
- lora
|
| 11 |
- replicate
|
| 12 |
-
base_model:
|
| 13 |
pipeline_tag: text-to-image
|
| 14 |
-
# widget:
|
| 15 |
-
# - text: >-
|
| 16 |
-
# prompt
|
| 17 |
-
# output:
|
| 18 |
-
# url: https://...
|
| 19 |
instance_prompt: MLLW
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
---
|
| 21 |
|
| 22 |
# Masmodel
|
|
|
|
| 9 |
- diffusers
|
| 10 |
- lora
|
| 11 |
- replicate
|
| 12 |
+
base_model: black-forest-labs/FLUX.1-dev
|
| 13 |
pipeline_tag: text-to-image
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
instance_prompt: MLLW
|
| 15 |
+
widget:
|
| 16 |
+
- text: >-
|
| 17 |
+
A menacing, fiery demon lord with enormous curved horns, glowing red eyes,
|
| 18 |
+
and sharp fangs, standing in a dark and ominous battlefield. His muscular
|
| 19 |
+
body is clad in intricate black and red armor with glowing molten cracks.
|
| 20 |
+
His chest is adorned with a fiery red gem radiating intense heat. Large,
|
| 21 |
+
tattered black wings spread out behind him, and his clawed hands emit
|
| 22 |
+
blazing flames. The atmosphere is filled with sparks, smoke, and embers,
|
| 23 |
+
creating a hellish and apocalyptic scene. The background hints at a
|
| 24 |
+
destroyed landscape with shadows and fire illuminating the darkness,
|
| 25 |
+
emphasizing the demonic and fearsome nature of the character.
|
| 26 |
+
output:
|
| 27 |
+
url: images/example_66d10brt1.png
|
| 28 |
+
|
| 29 |
---
|
| 30 |
|
| 31 |
# Masmodel
|
images/example_66d10brt1.png
ADDED
|