File size: 3,135 Bytes
5d1552a ce2cbc8 5d1552a ce2cbc8 d8a4331 f015d0a 5d1552a f015d0a 1251ce8 c0e4c44 3e8e626 a8506a6 3e8e626 5d1552a 793baed ce2cbc8 793baed ce2cbc8 793baed ce2cbc8 793baed ce2cbc8 5d1552a 793baed ce2cbc8 793baed 593fcfd ce2cbc8 593fcfd ce2cbc8 5d1552a ce2cbc8 5d1552a d8a4331 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
---
license: other
license_name: flux-1-dev-non-commercial-license
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
language:
- en
tags:
- flux
- diffusers
- lora
- replicate
- art
base_model: black-forest-labs/FLUX.1-dev
pipeline_tag: text-to-image
instance_prompt: animexl
widget:
- text: >-
animexl a majestic celestial dragon flying through a star-filled sky, its
scales shimmering with a mix of gold and silver, glowing runes etched along
its body, surrounded by glowing nebula clouds and twinkling stars, a sense
of vastness and divinity, hyper-detailed scales and cosmic background
output:
url: images/example_f5qbha2v5.png
- text: >-
animexl an ethereal elf princess with glowing silver hair, wearing a flowing
emerald gown adorned with golden patterns, sitting by a glowing blue lake in
an enchanted forest, surrounded by bioluminescent flowers, glowing
fireflies, and ancient stone ruins covered in moss, soft moonlight shining
through the mist, ultra-detailed face and clothing texture
output:
url: images/example_377tmyn08.png
- text: >-
animexl a lone wanderer in a torn black cloak, standing in a desolate
wasteland with crumbling skyscrapers in the distance, carrying a glowing
energy sword, the sky filled with ominous red clouds, lightning striking in
the distance, detailed cracks in the dry ground, atmospheric perspective
with dusty air and a sense of mystery"
output:
url: images/example_1fnaylit5.png
- text: >-
animexl a futuristic cyberpunk samurai standing under neon lights, wearing a
black and red glowing armor, wielding a plasma katana, holographic cityscape
in the background with flying cars and holograms, cinematic lighting, rain
reflections on the ground
output:
url: images/example_kunqv4ecx.png
- text: >-
animexl a serene night sky with scattered clouds glowing in soft shades of
purple and pink, illuminated by the full moon casting a gentle white light,
twinkling stars scattered across the deep indigo sky, silhouette of tree
branches with delicate leaves framing the scene, a peaceful and tranquil
atmosphere, cinematic composition, ultra-detailed textures, dreamy and
calming aesthetic
output:
url: images/example_m1t9yt7lf.png
---
# Animexl
<Gallery />
Trained on Replicate using:
https://replicate.com/ostris/flux-dev-lora-trainer/train
## Trigger words
You should use `animexl` to trigger the image generation.
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
```py
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('Nishit2411/AnimeXL', weight_name='lora.safetensors')
image = pipeline('your prompt').images[0]
```
For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters) |