Update app.py
Browse files
app.py
CHANGED
@@ -14,6 +14,7 @@ model_repo_id = "stabilityai/stable-diffusion-xl-base-1.0" # Continuando com o
|
|
14 |
pipe = DiffusionPipeline.from_pretrained(model_repo_id)
|
15 |
pipe = pipe.to(device)
|
16 |
|
|
|
17 |
# Carregar o dataset do Hugging Face
|
18 |
dataset = load_dataset("LEIDIA/Data_Womleimg", split="train") # Carrega o dataset de imagens
|
19 |
|
|
|
14 |
pipe = DiffusionPipeline.from_pretrained(model_repo_id)
|
15 |
pipe = pipe.to(device)
|
16 |
|
17 |
+
|
18 |
# Carregar o dataset do Hugging Face
|
19 |
dataset = load_dataset("LEIDIA/Data_Womleimg", split="train") # Carrega o dataset de imagens
|
20 |
|