Jan Tilly
Jan Tilly
Thanks a lot! For future reference, these are the failing tests: ``` FAILED tests_glum.py::test_glm_regression_unpenalized[wide-GeneralizedLinearRegressor(family='binomial')-True-irls-ls] - numpy.linalg.LinAlgError: Matrix is singular. FAILED tests_glum.py::test_glm_regression_unpenalized[wide-GeneralizedLinearRegressor(family='binomial')-True-irls-cd] - assert 0.690107820640591 == 1.2837501395684472 ± 6.4e-05 FAILED tests_glum.py::test_glm_regression_unpenalized[wide-GeneralizedLinearRegressor(family='binomial')-False-lbfgs]...
Could you please give a self-contained, reproducible example of the problem? If that's not possible, then please at least show us the full stack trace with the error. I would...
Thanks! Based on that output alone, it's difficult for me to tell what's going wrong. Sorry! Also, as mentioned above, if you're really running this with `l1_ratio=1.5`, I would expect...
This is due to OpenMP: ```python (glum) ➜ ~/glum git:(main) ✗ python issue_785.py -0.493354399898778 -0.4933543998987746 (glum) ➜ ~/glum git:(main) ✗ OMP_NUM_THREADS=1 python issue_785.py -0.49335439989877533 -0.49335439989877533 ``` When you set `OMP_NUM_THREADS=1`,...
I'm afraid you're running out of memory. I've used this package to compute the Gale Shapley algorithm with 26,000 participants on each side of the market (see this paper https://sangmok81.github.io/website/wp/13_large_matching.pdf),...
I would need to profile the code a bit. One source of wasted memory is that I replicate colleges with multiple slots. I.e. one college with 3 slots will become...
- Did you install `matchingR`? - Are you missing a `library(matchingR)` line at the top?
No, I don't think there's an easy way to do that. You might be able to improvise a bit though. For the case when students have incomplete preferences over colleges,...
This sounds reasonable in general. Could you provide a concrete example with the desired output, please?
In general, we support `linux-arm64` (at least within the conda-forge ecosystem). For us, the most common use case is running a linux docker image on Apple silicon. What page size...