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
hi,
I'm running the detector on a custom model (i.e., i provide the the weights and classes)
got an error in line 107
warnings.warn(
f"class {_class} not found in model classes list.")
I can resolve it when I replace line 99
class_names = get_names()
with
class_names = list(self.model.names.values())
Am I right?
thanks
The text was updated successfully, but these errors were encountered:
hi,
I'm running the detector on a custom model (i.e., i provide the the weights and classes)
got an error in line 107
warnings.warn(
f"class {_class} not found in model classes list.")
I can resolve it when I replace line 99
class_names = get_names()
with
class_names = list(self.model.names.values())
Am I right?
thanks
The text was updated successfully, but these errors were encountered: