Commit ·
cd5f86c
1
Parent(s): 0afaab3
minor fix
Browse files- handler.py +1 -1
handler.py
CHANGED
|
@@ -41,7 +41,7 @@ class EndpointHandler():
|
|
| 41 |
self.prior_pipeline.to(device)
|
| 42 |
self.decoder_pipeline.to(device)
|
| 43 |
|
| 44 |
-
prior_output = prior_pipeline(
|
| 45 |
prompt=prompt,
|
| 46 |
height=height,
|
| 47 |
width=width,
|
|
|
|
| 41 |
self.prior_pipeline.to(device)
|
| 42 |
self.decoder_pipeline.to(device)
|
| 43 |
|
| 44 |
+
prior_output = self.prior_pipeline(
|
| 45 |
prompt=prompt,
|
| 46 |
height=height,
|
| 47 |
width=width,
|