(img_str)
| 280 | return img |
| 281 | |
| 282 | def cv2_loader(img_str): |
| 283 | img_array = np.frombuffer(img_str, dtype=np.uint8) |
| 284 | return cv2.imdecode(img_array, cv2.IMREAD_COLOR) |
| 285 | |
| 286 | def param_groups(model): |
| 287 | bn_group = [] |
no outgoing calls
no test coverage detected