Downloads · 30 days
1
33% of all-time downloads
Overtronic/mcgann
mcgann is a machine learning model from Overtronic. Use it for the machine learning task on the model card, and read the license before you ship it in a product. The card lists the license as other.
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.
Downloads · 30 days
1
33% of all-time downloads
All-time downloads
3
Public
Repo size
345 MB
Likes
0
Public
Click a slice to open those files.
.pt173 MB · 50%
From the Hugging Face model README
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.
To use this model, simply load it with the following code:
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()