You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have annotated the images with background color (0,0,0), class 1 (1,1,1) and class 2 (2,2,2).
When training it went up to 98% accuracy early in the training, which might indicate that something might be wrong.
Can anyone help me out ?
The text was updated successfully, but these errors were encountered:
Hello i have trained the model with 3 classes.
The data.py classes looks like:
`
BackGround = [0, 0, 0]
road = [2, 2, 2]
COLOR_DICT = np.array([BackGround, road])
one = [1, 1, 1]
COLOR_DICT = np.array([BackGround,road,one])
...
self.image_color_mode = "rgb"
self.label_color_mode = "rgb"
`
I have annotated the images with background color (0,0,0), class 1 (1,1,1) and class 2 (2,2,2).
When training it went up to 98% accuracy early in the training, which might indicate that something might be wrong.
Can anyone help me out ?
The text was updated successfully, but these errors were encountered: