Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -214,6 +214,8 @@ def encrypt_excel(file):
|
|
| 214 |
|
| 215 |
enriched = compute_ratios(df)
|
| 216 |
X_input = enriched[COLS].dropna()
|
|
|
|
|
|
|
| 217 |
scaled = scaler_sel.transform(X_input)
|
| 218 |
|
| 219 |
encrypted_input = client.quantize_encrypt_serialize(scaled)
|
|
|
|
| 214 |
|
| 215 |
enriched = compute_ratios(df)
|
| 216 |
X_input = enriched[COLS].dropna()
|
| 217 |
+
print("📐 Şifreleme öncesi shape:", X_input.shape)
|
| 218 |
+
|
| 219 |
scaled = scaler_sel.transform(X_input)
|
| 220 |
|
| 221 |
encrypted_input = client.quantize_encrypt_serialize(scaled)
|