We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Most users won't know that you need to reset both the id -> class and class -> id dictionary.
m = main.deepforest() m.load_model("weecology/deepforest-bird") m.label_dict = {"Object":0} m.numeric_to_label_dict = {0:"Object"}
we should have
m.set_labels({"Object":0})
that should reset both. If not m.evaluate will say the label is called "bird" from the loaded model weights.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Most users won't know that you need to reset both the id -> class and class -> id dictionary.
we should have
that should reset both. If not m.evaluate will say the label is called "bird" from the loaded model weights.
The text was updated successfully, but these errors were encountered: