-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regarding tnc and combine_classes and detection head #85
Comments
b. You need to modify the code to implement the function you mentioned. This is an advanced work. |
Hi, |
combine_class do not effect the training stage. Only effect in val stage. That means, during training, the model will learn 0 2 3 4 7 8 separately, only in val stage, the model will combine 2 3 4 into class 2 to calculate the metrics. If you set single_cls as True, that is another story. |
Hi, |
Hi,
a.Suppose in my model.train my args are like this:
device=[1,2],
classes=[0, 2, 3, 4, 7, 8, 10, 11],
combine_class=[2, 3, 4],
single_cls=False,
Can you please tell me what should be my:
1.tnc
2.nc_list
3. Value of detection head in model.yaml file.
be?
b. Also if I want to merge multiple classes into 2 subclasses like [2,3,4] into 1 and [7,8] into another, should my val for combine_class be
[[2,3,4],[7,8]] ?
The text was updated successfully, but these errors were encountered: