Spaces:
Runtime error
Runtime error
Commit
·
d69d53c
1
Parent(s):
ef11887
test
Browse files
app.py
CHANGED
@@ -7,6 +7,10 @@ from torch import autocast
|
|
7 |
from diffusers import StableDiffusionPipeline, DDIMScheduler, DiffusionPipeline
|
8 |
import streamlit as st
|
9 |
|
|
|
|
|
|
|
|
|
10 |
# model_path = WEIGHTS_DIR # If you want to use previously trained model saved in gdrive, replace this with the full path of model in gdrive
|
11 |
# headers = {"Authorization": "Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}
|
12 |
# pipe = StableDiffusionPipeline.from_pretrained("Divyanshu04/Finetuned-sd-vae", safety_checker=None, torch_dtype=torch.float32).to("cuda")
|
|
|
7 |
from diffusers import StableDiffusionPipeline, DDIMScheduler, DiffusionPipeline
|
8 |
import streamlit as st
|
9 |
|
10 |
+
from huggingface_hub import login
|
11 |
+
login()
|
12 |
+
|
13 |
+
|
14 |
# model_path = WEIGHTS_DIR # If you want to use previously trained model saved in gdrive, replace this with the full path of model in gdrive
|
15 |
# headers = {"Authorization": "Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}
|
16 |
# pipe = StableDiffusionPipeline.from_pretrained("Divyanshu04/Finetuned-sd-vae", safety_checker=None, torch_dtype=torch.float32).to("cuda")
|