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
As reported by some users, the validation step can be very slow on large dataframes (for instance sliced FCC lattice).
In #107 the validation step was made optional. This is a first step but it would be nice for users who wish to validate to be able to do so faster.
The main culprit is is_not_finite(x) in the validate function, which is slow and applied with applymap, also very slow.
is_not_finite(x)
validate
applymap
This can be sped-up (see implementation).
The text was updated successfully, but these errors were encountered:
Closed by #109
Sorry, something went wrong.
fsoubelet
No branches or pull requests
Feature Description
As reported by some users, the validation step can be very slow on large dataframes (for instance sliced FCC lattice).
In #107 the validation step was made optional. This is a first step but it would be nice for users who wish to validate to be able to do so faster.
Possible Implementation
The main culprit is
is_not_finite(x)
in thevalidate
function, which is slow and applied withapplymap
, also very slow.This can be sped-up (see implementation).
The text was updated successfully, but these errors were encountered: