Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -76,6 +76,7 @@ MM = np.array([
|
|
76 |
@app.post("/predict/")
|
77 |
async def predict(data: InputData):
|
78 |
try:
|
|
|
79 |
input_data = np.array(data.array).reshape(256, 256)
|
80 |
representative_data = representativo(input_data)
|
81 |
representative_data = representative_data.reshape(1, -1)
|
|
|
76 |
@app.post("/predict/")
|
77 |
async def predict(data: InputData):
|
78 |
try:
|
79 |
+
print(data.array)
|
80 |
input_data = np.array(data.array).reshape(256, 256)
|
81 |
representative_data = representativo(input_data)
|
82 |
representative_data = representative_data.reshape(1, -1)
|