Update README.md
Browse files
README.md
CHANGED
@@ -38,7 +38,7 @@ from diffusers import StableDiffusionPipeline
|
|
38 |
pipe = StableDiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-2-1", torch_dtype=torch.float16)
|
39 |
|
40 |
# Then add the lora weights to the model stable diffusion 2
|
41 |
-
pipe.unet.load_attn_procs('ACROSS-Lab/
|
42 |
pipe.to("cuda")
|
43 |
|
44 |
# Then you can begin the inference process on a prompt and save the image generated
|
@@ -57,7 +57,7 @@ The data used to train this model is the dataset available on uggingface at 'rem
|
|
57 |
you can download it thanks to the command
|
58 |
```python
|
59 |
from datasets import load_dataset
|
60 |
-
dataset = load_dataset("ACROSS_Lab/
|
61 |
```
|
62 |
|
63 |
This dataset is a subset of the dataset [Objaverse](https://objaverse.allenai.org/).
|
|
|
38 |
pipe = StableDiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-2-1", torch_dtype=torch.float16)
|
39 |
|
40 |
# Then add the lora weights to the model stable diffusion 2
|
41 |
+
pipe.unet.load_attn_procs('ACROSS-Lab/PromptTo3D_sd_finetuned')
|
42 |
pipe.to("cuda")
|
43 |
|
44 |
# Then you can begin the inference process on a prompt and save the image generated
|
|
|
57 |
you can download it thanks to the command
|
58 |
```python
|
59 |
from datasets import load_dataset
|
60 |
+
dataset = load_dataset("ACROSS_Lab/PromptTo3D_sd_dataset", split = 'train')
|
61 |
```
|
62 |
|
63 |
This dataset is a subset of the dataset [Objaverse](https://objaverse.allenai.org/).
|