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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Passing a list-like object as test_spec in the MatPipe.benchmark function does not produce the correct behavior.
test_spec
MatPipe.benchmark
Specifically, this line is the issue:
automatminer/automatminer/pipeline.py
Line 217 in e3e2862
After some testing I've realized you cannot use ~ and iloc in that combination.
~
iloc
E.g.:
# load dataframe len(df) > 174 len(df.iloc[np.asarray([1, 2, 3, 4])]) > 4 len(df.iloc[~np.asarray([1, 2, 3, 4])]) > 4
In that last case you would expect an output of 170. E.g. all structures except the testing set.
I have a fix for this inbound.
The text was updated successfully, but these errors were encountered:
closed by commits leading up to ce2245c
Sorry, something went wrong.
No branches or pull requests
Passing a list-like object as
test_spec
in theMatPipe.benchmark
function does not produce the correct behavior.Specifically, this line is the issue:
automatminer/automatminer/pipeline.py
Line 217 in e3e2862
After some testing I've realized you cannot use
~
andiloc
in that combination.E.g.:
In that last case you would expect an output of 170. E.g. all structures except the testing set.
I have a fix for this inbound.
The text was updated successfully, but these errors were encountered: