Stable-Lime
Collection
3 items
•
Updated
Stable-Lime-v1.1 is an unconditional diffusion model based on the Denoising Diffusion Probabilistic Models (DDPM) architecture. It has been trained specifically to generate images representing the "essence of Lime."
This model is designed for:
Out of Scope:
The model was trained on a proprietary dataset located at dataset_lime/processed.
The model was trained using the following configuration ("The Lime Settings"):
| Parameter | Value | Description |
|---|---|---|
| Batch Size | 16 | Small batch size suitable for consumer GPUs. |
| Learning Rate | $1 \times 10^{-4}$ | Optimizer step size (AdamW). |
| Epochs | 70 | |
| Timesteps | 1000 | Number of diffusion noise steps. |
| Image Size | 128 | Output resolution. |
The U-Net architecture utilizes a deep structure with attention mechanisms in the lower bottleneck layers:
(128, 128, 256, 256, 512, 512)DownBlock2D, 1x AttnDownBlock2D, 1x DownBlock2DThe model optimizes the Mean Squared Error (MSE) between the actual noise added and the predicted noise:
Where $\epsilon$ is the Gaussian noise and $\epsilon_\theta$ is the model's prediction at timestep $t$.