Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,11 @@ jobs:
name: Get Python running
command: |
export PATH="$HOME/miniconda3/bin:$PATH"
conda config --add channels conda-forge
conda config --set channel_priority strict
conda install -y -c conda-forge mamba
mamba install -y -c conda-forge mne-base
# mamba install mne mne-base mne-installer-menus

python -m pip install -U pip
python -m pip install -U -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion examples/plot_compare_optimizers.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
# -----------

estimator = LogisticRegression(
penalty='l1', fit_intercept=False, max_iter=max_iter)
penalty='l1', fit_intercept=False, max_iter=max_iter, solver='liblinear')
model = SparseLogreg(estimator=estimator)
criterion = HeldOutLogistic(idx_train, idx_val)
monitor_grid = Monitor()
Expand Down