wealthcoders commited on
Commit
26154c0
·
verified ·
1 Parent(s): 3e89328

Update handler.py

Browse files
Files changed (1) hide show
  1. handler.py +3 -2
handler.py CHANGED
@@ -97,9 +97,10 @@ class EndpointHandler:
97
  base_size=1024,
98
  image_size=640,
99
  crop_mode=True,
100
- save_results=True
101
  )
102
- print(str(result))
 
103
  return result
104
 
105
  except Exception as e:
 
97
  base_size=1024,
98
  image_size=640,
99
  crop_mode=True,
100
+ save_results=False
101
  )
102
+ print(f"Inference completed. Result type: {type(result)}")
103
+ print(f"Result value: {result}")
104
  return result
105
 
106
  except Exception as e: