Spaces:
Running
Running
chore: fix typo
Browse files
app.py
CHANGED
@@ -572,7 +572,7 @@ def get_output_fn(user_id):
|
|
572 |
if response.ok
|
573 |
else "❌ Error in receiving data from the server"
|
574 |
)
|
575 |
-
yhat_encrypted =
|
576 |
assert len(yhat_encrypted) == META["NW"]
|
577 |
|
578 |
yield {
|
|
|
572 |
if response.ok
|
573 |
else "❌ Error in receiving data from the server"
|
574 |
)
|
575 |
+
yhat_encrypted = load_pickle(CLIENT_ENCRYPTED_OUTPUT_DIR / "encrypted_final_output.pkl")
|
576 |
assert len(yhat_encrypted) == META["NW"]
|
577 |
|
578 |
yield {
|