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
Is your feature request related to a problem? Please describe.
This is requested to solve this : issue on the MCCD package.
In summary, the MCCD algorithms uses some optimization algorithms form the ModOpt package. For that the gradient class GradParent() is used from .opt.gradient.py and the function check_npndarray() from .base.types.py throws the warning 'Making input data immutable.' for each instance of the gradient class I have when I run the algorithm.
The main issue is that when the MCCD algorithm is run over a big amount of data, it outputs some big stdout files that are unwanted.
Describe the solution you'd like
It could be possible to add a verbose attribute to the GradParent() class that would be passed to check_npndarray() in order to control its behaviour. As the function check_npndarray() has a verbose variable but it is defaulted to True always in that case.
Are you planning to submit a Pull Request?
Yes
No
If @sfarrens you're ok with it I can propose a pull request for this.
The text was updated successfully, but these errors were encountered:
@tobias-liaudat I agree with what you have proposed. You ticked that you are planning a PR for this. If so, I will wait to check it, if not let me know and I will open a PR.
Is your feature request related to a problem? Please describe.
This is requested to solve this : issue on the MCCD package.
In summary, the MCCD algorithms uses some optimization algorithms form the ModOpt package. For that the gradient class
GradParent()
is used from.opt.gradient.py
and the functioncheck_npndarray()
from.base.types.py
throws the warning 'Making input data immutable.' for each instance of the gradient class I have when I run the algorithm.The main issue is that when the MCCD algorithm is run over a big amount of data, it outputs some big stdout files that are unwanted.
Describe the solution you'd like
It could be possible to add a verbose attribute to the
GradParent()
class that would be passed tocheck_npndarray()
in order to control its behaviour. As the functioncheck_npndarray()
has a verbose variable but it is defaulted to True always in that case.Are you planning to submit a Pull Request?
If @sfarrens you're ok with it I can propose a pull request for this.
The text was updated successfully, but these errors were encountered: