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
When a Compare class is initialized with a list of features, the returned class has no features. This is caused by the following lines in base.py
Compare
base.py
def __init__(self, features=[], n_jobs=1, indexing_type='label', **kwargs): self.features = [] self.add(features) # public if n_jobs == -1: self.n_jobs = cpu_count() else: self.n_jobs = n_jobs self.indexing_type = indexing_type # label of position self.features = []
The features are added to self.features, but later removed again. I will write a small PR to fix this issue.
self.features
The text was updated successfully, but these errors were encountered:
init Compare with (list) of features; fixes J535D165#117
1abfef0
7f6ac80
No branches or pull requests
When a
Compare
class is initialized with a list of features, the returned class has no features. This is caused by the following lines inbase.py
The features are added to
self.features
, but later removed again. I will write a small PR to fix this issue.The text was updated successfully, but these errors were encountered: