mathurinm

Results 93 issues of mathurinm

This is a bit counter intuitive IMO since I ran `pip install -e .` and thus did not think I had to rerun `pip install` ping @qb3

``` (base) ➜ lasso git:(flash) ✗ pwd /home/mathurin/workspace/benchmarks/lasso (base) ➜ lasso git:(flash) ✗ benchopt generate-results -b . Rendering benchmark: . Processing outputs/benchopt_run_2021-11-05_08h30m08.csv Processing outputs/benchopt_run_2021-11-05_08h30m38.csv Processing outputs/benchopt_run_2021-11-05_08h34m48.csv Solver sklearn did not...

eg ![image](https://user-images.githubusercontent.com/8993218/126457585-9c822c63-04f7-467f-8995-c483e05ae067.png) should this be addressed at the solver/bench level, or at the plot level ?

I find it convenient to be able to check directly inside a python shell. ```python In [1]: import tabmat In [2]: tabmat.__version__ --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) in...

It is not used in the Lasso case, and for the logreg case we can avoid this design with the declaration of inv_lc_j inside the various if/else of the cd...

This is the classic Fenchel-Rockafellar primal dual link. It will be easier to check the maths, notably in the enet case.

Finance: ```python import time import libsvmdata import numpy as np from numpy.linalg import norm from celer import Lasso X, y = libsvmdata.fetch_libsvm("finance", min_nnz=3) alpha_max = norm(X.T @ y, ord=np.inf) /...

Running pytest: ```python celer/tests/test_logreg.py::test_LogisticRegression[True] /home/mathurin/workspace/celer/celer/homotopy.py:311: ConvergenceWarning: Objective did not converge: duality gap: 0.841892524980679, tolerance: 0.005545177444479563. Increasing `tol` may make the solver faster without affecting the results much. Fitting data with...

To reproduce in a newly created environement `test` where pip in installed: ``` (test) ➜ benchOpt git:(pip2conda) ✗ which pip /home/mathurin/miniconda3/envs/test/bin/pip (test) ➜ benchOpt git:(pip2conda) ✗ pip install git+https://github.com/mathurinm/celer.git Collecting...