goerch

Results 62 comments of goerch

Monkey patching StabilitySelection with ``` from sklearn.base import BaseEstimator, TransformerMixin, clone from sklearn.utils import check_array, check_random_state, check_X_y, safe_mask from sklearn.externals.joblib import Parallel, delayed from sklearn.feature_selection import SelectFromModel def _return_estimator_from_pipeline(pipeline): """Returns...

Hi @thuijskens, your assessment is correct. Commit https://github.com/goerch/stability-selection/commit/940086601627fc09bf8b9bfdf2ba397429faff97 contains a failing reproduction.

Hi @thuijskens, commit https://github.com/goerch/stability-selection/commit/37ac9be160f53f8ce393ad6baa1496bbac6fcb2c fixes the failing test case. But I'm not certain if it is even possible to support all different sklearn pipeline configurations.

For me the critical test case in channels is ``` @testset "multiple for loops waiting on the same channel" begin # Test multiple "for" loops waiting on the same channel...

These are the tests which seem to be most time consuming or not terminating: ``` interrupting channels interrupting precompile interrupting subtype interrupting worlds ```

The current critical problem with `channels` is reported in #153. For `subtype` I hit `AssertionError("is_leaf(frame)")` in `step_expr!`. In which of my branches do you want me to try to fix...

> Nice to see this getting worked on again! I'm not sure how to proceed with this patch. In its original form it intended to make the tests runnable on...

On my current version I see ``` julia> @enter [1; 2] In ##thunk#281() at none:1 >1 1 ─ %1 = Base.vcat(1, 2) 2 └── return %1 About to run: (vcat)(1,...

I would like to `include("test/juliatests.jl"). After adapting the paths I now run into the following exceptions: ``` ambiguous => RemoteException(1, CapturedException(CompositeException(Any[CapturedException(ErrorException("Error deserializing a remote exception from worker 13\nRemote(original) exception of...

Hm, after some changes I got that working: ``` Julia Version 1.7.0 Commit 3bf9d17731 (2021-11-30 12:12 UTC) Platform Info: OS: Windows (x86_64-w64-mingw32) CPU: Intel(R) Core(TM) i7-10710U CPU @ 1.10GHz WORD_SIZE:...