Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -45,13 +45,14 @@ pipe.scheduler = TCDScheduler.from_config(pipe.scheduler.config)
|
|
45 |
|
46 |
# ν
μ€νΈ μΈμ½λλ₯Ό float16μΌλ‘ κ°μ λ³ν
|
47 |
pipe.text_encoder = pipe.text_encoder.to("cuda", dtype=torch.float16)
|
48 |
-
#
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
x
|
53 |
-
|
54 |
-
|
|
|
55 |
|
56 |
def can_expand(source_width, source_height, target_width, target_height, alignment):
|
57 |
"""Checks if the image can be expanded based on the alignment."""
|
|
|
45 |
|
46 |
# ν
μ€νΈ μΈμ½λλ₯Ό float16μΌλ‘ κ°μ λ³ν
|
47 |
pipe.text_encoder = pipe.text_encoder.to("cuda", dtype=torch.float16)
|
48 |
+
# λ§μ½ text_projection μμ±μ΄ μλ€λ©΄, μ
λ ₯μ΄ float16μ΄ μλλ©΄ halfλ‘ μΊμ€ν
νλλ‘ μ€λ²λΌμ΄λ©
|
49 |
+
if hasattr(pipe.text_encoder, "text_projection"):
|
50 |
+
original_text_projection_forward = pipe.text_encoder.text_projection.forward
|
51 |
+
def fixed_text_projection_forward(x):
|
52 |
+
if x.dtype != torch.float16:
|
53 |
+
x = x.half()
|
54 |
+
return original_text_projection_forward(x)
|
55 |
+
pipe.text_encoder.text_projection.forward = fixed_text_projection_forward
|
56 |
|
57 |
def can_expand(source_width, source_height, target_width, target_height, alignment):
|
58 |
"""Checks if the image can be expanded based on the alignment."""
|