Ludvig Hult

Results 26 comments of Ludvig Hult

My attempt is ```groovy apply plugin: 'java' repositories { mavenCentral() maven {url "https://jitpack.io"} } configurations { pumldoclet } dependencies { pumldoclet 'com.github.gboersma:uml-java-doclet:1.1' } javadoc { options.doclet = 'info.leadinglight.umljavadoclet.UmlJavaDoclet' options.docletpath =...

It seems that if you use the python logging facilities, the env variable `SKLEARNEX_VERBOSE` does nothing. Impementing a filter gives you some help to get rid of unnecessary log messages....

Okay. It seems the problem should be relatively simple to fix. In various files, such as https://github.com/intel/scikit-learn-intelex/blob/59fee38028c53bed0bcc3f259880603a997020d1/daal4py/sklearn/linear_model/_ridge.py there is a simple import and then use of the root logger. E.g....

The suggestion from ChatGPT is quite roundabout. If you just want to surpress the logging facilities, I think `logging.getLogger().setLevel('CRITICAL')` should be fine. It depends a little on when you call...

I might be able to implement this fix. Before putting down the work - would you consider a PR, @Alexsandruss ?

The queue-based multiprocessing approach is also detailed and exaplained in the logging cookbook: https://docs.python.org/3/howto/logging-cookbook.html#logging-cookbook ps. I did my own minimal implementation of multiprocessing logging with joblib and loky, if anyone...

This is a problem the call `Matrix6::zeros().schur()` as well. I ran in to it while debugging another issue and got super stumped when suddenly my code didn't terminate.

thanks for reporting this. I could not install the pypi version, but installing from github worked. I.e. before: `pip install mmd` after: `pip install git+https://github.com/djsutherland/mmd`

Thank you! I managed to install your extension in a simple way. :)