Scott Sievert

Results 205 comments of Scott Sievert

@jni good point. Physical constraints matter, especially if we care about values close to them. Either way, I'm glad to see both ends of the spectrum (when speedup is close...

Any updates on this? I’m also interested in this issue: ipywidgets just works, at least locally. I use ipywidgets all the time to change an image based on a slider...

Cython has done a similar thing: https://github.com/cython/cython/issues/1672. They also discus the tradeoffs of using the type annotations to change behavior (which is what PEP 484 says). Eventually, they decided to...

Isn't it possible to set the regularization value with the code below? ``` python from dask_ml.datasets import make_regression from dask_ml.linear_model import LinearRegression X, y = make_regression(n_samples=1000, chunks=100) lr = LinearRegression(regularizer="l1",...

> except the performance of dask ml at very small C is several times worse than scikit - about 30x worse, for values of C and alpha that empirically appear...