fffiloni commited on
Commit
0a322df
·
verified ·
1 Parent(s): 05a75d5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -35,7 +35,7 @@ You should use `greyscale drawing` to trigger the image generation.
35
 
36
  Weights for this model are available in Safetensors format.
37
 
38
- [Download](/fffiloni/test-greyscale-drawing/tree/main) them in the Files & versions tab.
39
 
40
  ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
41
 
@@ -44,7 +44,7 @@ from diffusers import AutoPipelineForText2Image
44
  import torch
45
 
46
  pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
47
- pipeline.load_lora_weights('fffiloni/test-greyscale-drawing', weight_name='test-greyscale-drawing.safetensors')
48
  image = pipeline('A person in a bustling cafe, greyscale drawing').images[0]
49
  image.save("my_image.png")
50
  ```
 
35
 
36
  Weights for this model are available in Safetensors format.
37
 
38
+ [Download](/fffiloni/greyscale-tiny-town/tree/main) them in the Files & versions tab.
39
 
40
  ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
41
 
 
44
  import torch
45
 
46
  pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
47
+ pipeline.load_lora_weights('fffiloni/greyscale-tiny-town', weight_name='greyscale-tiny-town.safetensors')
48
  image = pipeline('A person in a bustling cafe, greyscale drawing').images[0]
49
  image.save("my_image.png")
50
  ```