mingyi456 commited on
Commit
3e488b1
·
1 Parent(s): 2c675b0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -0
README.md CHANGED
@@ -8,6 +8,8 @@ language:
8
  pipeline_tag: text-to-image
9
  library_name: diffusers
10
  ---
 
 
11
  Being a distilled model, this model requires different parameters to run optimally compared to the undistilled Chroma1-HD version. However, after quite a while of testing, I am unable to determine what settings to use. The [model card](https://huggingface.co/lodestones/Chroma1-Flash) is blank, but the commit message by the author says "use heun 8 steps CFG=1". Sadly, trying to use `HeunDiscreteScheduler` or `FlowMatchHeunDiscreteScheduler` with this model causes the pipeline to fail, presumably due to [this issue](https://github.com/huggingface/diffusers/issues/9971) with the `diffusers` library. Thus, I decided to omit the line of code that calls the pipeline in the sample code below. If you have any ideas or suggestions on how this model can currently be used in the `diffusers` library, do post a comment and maybe we can discuss this further.
12
 
13
 
 
8
  pipeline_tag: text-to-image
9
  library_name: diffusers
10
  ---
11
+ ## Update: I have uploaded an updated version of this model, that should further reduce disk size and VRAM usage by ~82 MB. This is because I missed out on compressing a small portion of the model (the `distilled_guidance_layer.layers`) in my original upload. There is <u>no need to download again</u> if you are not having any issues with the older version.
12
+
13
  Being a distilled model, this model requires different parameters to run optimally compared to the undistilled Chroma1-HD version. However, after quite a while of testing, I am unable to determine what settings to use. The [model card](https://huggingface.co/lodestones/Chroma1-Flash) is blank, but the commit message by the author says "use heun 8 steps CFG=1". Sadly, trying to use `HeunDiscreteScheduler` or `FlowMatchHeunDiscreteScheduler` with this model causes the pipeline to fail, presumably due to [this issue](https://github.com/huggingface/diffusers/issues/9971) with the `diffusers` library. Thus, I decided to omit the line of code that calls the pipeline in the sample code below. If you have any ideas or suggestions on how this model can currently be used in the `diffusers` library, do post a comment and maybe we can discuss this further.
14
 
15