Instructions to use Freepik/F-Lite with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Freepik/F-Lite with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Freepik/F-Lite", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Technical report and fal demo links
Browse files
README.md
CHANGED
|
@@ -13,13 +13,13 @@ F Lite is a 10B parameter diffusion model created by [Freepik](https://www.freep
|
|
| 13 |
|
| 14 |
## Usage
|
| 15 |
|
| 16 |
-
Experience F Lite instantly through our [interactive demo](https://huggingface.co/spaces/Freepik/F-Lite) on Hugging Face.
|
| 17 |
|
| 18 |
F Lite works with both the `diffusers` library and [ComfyUI](https://www.comfy.org/). For details, see the [F Lite GitHub repository](https://github.com/Freepik/F-Lite).
|
| 19 |
|
| 20 |
# Technical Report
|
| 21 |
|
| 22 |
-
Read the [technical report](
|
| 23 |
|
| 24 |
# Limitations and Bias
|
| 25 |
* The models can generate malformations.
|
|
|
|
| 13 |
|
| 14 |
## Usage
|
| 15 |
|
| 16 |
+
Experience F Lite instantly through our [interactive demo](https://huggingface.co/spaces/Freepik/F-Lite) on Hugging Face or at [fal.ai](https://fal.ai/models/fal-ai/f-lite/standard).
|
| 17 |
|
| 18 |
F Lite works with both the `diffusers` library and [ComfyUI](https://www.comfy.org/). For details, see the [F Lite GitHub repository](https://github.com/Freepik/F-Lite).
|
| 19 |
|
| 20 |
# Technical Report
|
| 21 |
|
| 22 |
+
Read the [technical report](https://github.com/fal-ai/f-lite/blob/main/assets/F%20Lite%20Technical%20Report.pdf) to learn more about the model details.
|
| 23 |
|
| 24 |
# Limitations and Bias
|
| 25 |
* The models can generate malformations.
|