AlekseyCalvin commited on
Commit
a971fa7
·
verified ·
1 Parent(s): a79ef2b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -0
README.md CHANGED
@@ -50,9 +50,13 @@ So, to be sure, this repo does **not** contain any pickle checkpoints, or any ot
50
  # TEXT-TO-IMAGE PIPELINE EXAMPLE:
51
  This repo is formatted for usage with Diffusers (0.35.0.dev0+) & Transformers libraries, vis-a-vis associated pipelines & model component classes, such as the defaults listed in `model_index.json` (in this repo's root folder). <br>
52
  *Sourced/adapted from [the original base model repo](https://huggingface.co/Qwen/Qwen-Image) by QWEN.*
 
 
 
53
  ```python
54
  from diffusers import DiffusionPipeline
55
  import torch
 
56
  model_name = "AlekseyCalvin/QwenImage_nf4"
57
  # Load the pipeline
58
  if torch.cuda.is_available():
 
50
  # TEXT-TO-IMAGE PIPELINE EXAMPLE:
51
  This repo is formatted for usage with Diffusers (0.35.0.dev0+) & Transformers libraries, vis-a-vis associated pipelines & model component classes, such as the defaults listed in `model_index.json` (in this repo's root folder). <br>
52
  *Sourced/adapted from [the original base model repo](https://huggingface.co/Qwen/Qwen-Image) by QWEN.*
53
+ **EDIT:
54
+ We've confronted some issues with using the below pipeline. Will update once reliable adjustments are confirmed.** <br>
55
+
56
  ```python
57
  from diffusers import DiffusionPipeline
58
  import torch
59
+ import bitsandbytes
60
  model_name = "AlekseyCalvin/QwenImage_nf4"
61
  # Load the pipeline
62
  if torch.cuda.is_available():