File size: 1,021 Bytes
7a52457
 
 
 
5052e02
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
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
---
# Flux Lora Model

This is a **Flux Lora** model, designed to generate high-quality images from user prompts. It has been fine-tuned on a custom dataset to provide better output for specific visual tasks.

## Model Details
- **Model type**: Lora (Low-Rank Adaptation)
- **Pretrained**: Yes (Built on top of a pre-trained base model)
- **Fine-tuned**: Yes (Fine-tuned on a custom dataset of high-quality images)
- **Training data**: Fine-tuned on a custom dataset consisting of 10,000 images, including natural landscapes, abstract art, and architecture.

## Usage

To use this model, simply load it with the following code:

```python
from transformers import pipeline

model = "huggingface/Flux_Lora_model"
generator = pipeline('image-generation', model=model)

# Generate an image
output = generator("A futuristic cityscape at sunset")
output[0]['image'].show()