Getting very low map during mosaic training in 2 channel training #2138
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
problem was in below line in augment.py file
since it was uint8 values were being clipped to 0 to 255 range when i changed to np.int16 it was working fine in mosaic mode . Any other suggestions to make 2 channel training better kindly let me know |
Beta Was this translation helpful? Give feedback.
problem was in below line in augment.py file
img4 = np.full((s * 2, s * 2, img.shape[2]), 114, dtype=np.uint8)
since it was uint8 values were being clipped to 0 to 255 range when i changed to np.int16 it was working fine in mosaic mode . Any other suggestions to make 2 channel training better kindly let me know