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
In some ResspectClassifier subclasses, we expect there to be specific kwargs provided. We use get to pull the expected keys from the kwarg dict, but then pass the **kwarg to the classifier definition as well.
This results in parameters being passed twice.
Additionally, the method to load a pretrained classifier is called load_classifier, but in database.py it is referred to as load. So we need to update the name there.
The text was updated successfully, but these errors were encountered:
In some ResspectClassifier subclasses, we expect there to be specific kwargs provided. We use
get
to pull the expected keys from the kwarg dict, but then pass the **kwarg to the classifier definition as well.This results in parameters being passed twice.
Additionally, the method to load a pretrained classifier is called
load_classifier
, but indatabase.py
it is referred to asload
. So we need to update the name there.The text was updated successfully, but these errors were encountered: