Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ st.title(" New App")
|
|
7 |
|
8 |
area = st.text_area("Area",'')
|
9 |
|
10 |
-
pipe = StableDiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", revision="fp16", torch_dtype=torch.
|
11 |
|
12 |
|
13 |
if len(area) > 5:
|
|
|
7 |
|
8 |
area = st.text_area("Area",'')
|
9 |
|
10 |
+
pipe = StableDiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", revision="fp16", torch_dtype=torch.float32)
|
11 |
|
12 |
|
13 |
if len(area) > 5:
|