Spaces:
Sleeping
Sleeping
vk
commited on
Commit
·
af48311
1
Parent(s):
6e95c9d
docstrings added 1
Browse files- text_detection.py +1 -1
text_detection.py
CHANGED
|
@@ -152,7 +152,7 @@ class Text_Detection():
|
|
| 152 |
blob = np.concatenate(imgs, axis=0).astype(np.float32)
|
| 153 |
|
| 154 |
outputs = self.compiled_model([blob])[self.output_layer]
|
| 155 |
-
print('text detection model output shape:',outputs.shape)
|
| 156 |
outputs=self.postprocess_detection(outputs,shape_list)
|
| 157 |
return outputs
|
| 158 |
|
|
|
|
| 152 |
blob = np.concatenate(imgs, axis=0).astype(np.float32)
|
| 153 |
|
| 154 |
outputs = self.compiled_model([blob])[self.output_layer]
|
| 155 |
+
#print('text detection model output shape:',outputs.shape)
|
| 156 |
outputs=self.postprocess_detection(outputs,shape_list)
|
| 157 |
return outputs
|
| 158 |
|