Update README.md
Browse files
README.md
CHANGED
@@ -226,5 +226,5 @@ timesteps = (sigmas * noise_scheduler.config.num_train_timesteps).long()
|
|
226 |
noisy_model_input = (1.0 - sigmas) * pixel_latents + sigmas * noise
|
227 |
```
|
228 |
|
229 |
-
where `pixel_latents` is computed from the source images and `noise` is drawn from a Gaussian distribution. For more details, check out
|
230 |
-
the repository.
|
|
|
226 |
noisy_model_input = (1.0 - sigmas) * pixel_latents + sigmas * noise
|
227 |
```
|
228 |
|
229 |
+
where `pixel_latents` is computed from the source images and `noise` is drawn from a Gaussian distribution. For more details, [check out
|
230 |
+
the repository](https://github.com/sayakpaul/flux-image-editing/blob/b041f62df8f959dc3b2f324d2bfdcdf3a6388598/train.py#L403).
|