File size: 2,986 Bytes
fc6d99c
 
 
 
 
 
2672a84
 
 
 
 
fc6d99c
2672a84
 
 
 
 
 
fc6d99c
f16fa8c
2672a84
 
 
 
 
fc6d99c
f16fa8c
2672a84
 
 
 
 
 
 
fc6d99c
f16fa8c
fc6d99c
 
 
 
 
 
 
 
7751934
fc6d99c
7751934
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56f45d9
 
 
 
 
 
 
 
 
 
fc6d99c
 
 
 
 
 
 
 
 
2672a84
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
---
tags:
- text-to-image
- lora
- diffusers
- template:diffusion-lora
- flux
- dev
- anime
- real-anime
- art
widget:
- text: >-
    A photo of an anime model wearing a trendy oversized sweater and denim
    shorts, sitting on a swing in a park with hands gripping the chains. The
    golden hour sunlight filters through the trees, creating a magical
    atmosphere. Fashion photography, high resolution, 35mm lens, f/2.8, natural
    lighting, global illumination. --ar 85:128 --v 6.0 --style raw.
  output:
    url: images/000.png
- text: >-
    A photo of the anime model wearing a white bodysuit and beige trench coat,
    posing in front of a train station with hands on head, soft light, sunset,
    fashion photography, high resolution, 35mm lens, f/22, natural lighting,
    global illumination. --ar 85:128 --v 6.0 --style raw
  output:
    url: images/111.png
- text: >-
    A photo of an anime model wearing a sleek black jumpsuit and a stylish
    oversized denim jacket, posing confidently in front of a modern skyscraper
    with hands on hips. Soft light filters through the buildings, creating a
    warm glow during golden hour. Fashion photography, high resolution, 50mm
    lens, f/2.8, natural lighting, global illumination. --ar 85:128 --v 6.0
    --style raw.
  output:
    url: images/222.png
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: Real Anime
license: creativeml-openrail-m
---
# Flux-Dev-Real-Anime-LoRA

<Gallery />

**The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**

## Setting Up
```
import torch
from pipelines import DiffusionPipeline

base_model = "black-forest-labs/FLUX.1-dev"
pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)

lora_repo = "prithivMLmods/Flux-Dev-Real-Anime-LoRA"
trigger_word = "Real Anime"  # Leave trigger_word blank if not used.
pipe.load_lora_weights(lora_repo)

device = torch.device("cuda")
pipe.to(device)
```
## app.py
```
import gradio as gr

gr.load("prithivMLmods/Flux-Dev-Real-Anime-LoRA").launch()
```
## pythonproject.py
```
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
import gradio as gr

def image_generator(prompt):
    pass

interface = gr.Interface(fn=image_generator, inputs="text", outputs="image")
app = FastAPI()

app.add_middleware(
    CORSMiddleware,
    allow_origins=["*"],  
    allow_credentials=True,
    allow_methods=["*"],
    allow_headers=["*"],
)

app = gr.mount_gradio_app(app, interface, path="/")
```

## App File Structure

/project-root/
β”‚
β”œβ”€β”€ .gitattributes         
β”œβ”€β”€ README.md      
β”œβ”€β”€ app.py             
β”œβ”€β”€ pythonproject.py     

## Trigger words

You should use `Real Anime` to trigger the image generation.


## Download model

Weights for this model are available in Safetensors format.

[Download](/prithivMLmods/Flux-Dev-Real-Anime-LoRA/tree/main) them in the Files & versions tab.