SwinliQ-AIs/FLUX.2-small-decoder
Image-to-Image • 62.4M • Updated • 1
None defined yet.
Welcome to our open-source AI hub!
We are a community-driven organization committed to democratizing access to powerful, transparent, and responsible artificial intelligence. All models in this repository are free to use, openly licensed, and built with love for the global AI ecosystem.
We believe that AI should be open, accessible, and beneficial to everyone. Our mission is to:
Below is a list of all open-source models currently hosted in this organization.
| Model Name | Description | Modality | License | Link |
|---|---|---|---|---|
| Model Alpha | Transformer-based language model for text generation | NLP | Apache 2.0 | 🤗 Model Card |
| Model Beta | Vision transformer for image classification | Vision | MIT | 🤗 Model Card |
| Model Gamma | Multimodal model for vision-language tasks | Multimodal | CC-BY-NC | 🤗 Model Card |
| Model Delta | Lightweight embedding model for retrieval | NLP | Apache 2.0 | 🤗 Model Card |
🔍 More models coming soon — stay tuned!
You can load any of our models directly using the Hugging Face transformers library:
from transformers import AutoModel, AutoTokenizer
model_name = "your-org/model-alpha"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModel.from_pretrained(model_name)