Skip to content

Commit 4356292

Browse files
authored
Merge branch 'IntelPython:main' into dev/add_preprocessor_support
2 parents b42d645 + 22e3c83 commit 4356292

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

configs/regular/svm.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@
3636
}
3737
],
3838
"svr datasets": [
39+
{
40+
"data": {
41+
"dataset": "year_prediction_msd",
42+
"split_kwargs": { "train_size": 20000, "test_size": null }
43+
},
44+
"algorithm": { "estimator_params": { "C": 0.01, "kernel": "rbf" } }
45+
},
3946
{
4047
"data": { "dataset": "fried", "split_kwargs": { "train_size": 0.5, "test_size": 0.5 } },
4148
"algorithm": { "estimator_params": { "C": 2.0, "kernel": "rbf" } }

configs/weekly/svm.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"dataset": "year_prediction_msd",
4040
"split_kwargs": { "train_size": 50000, "test_size": null }
4141
},
42-
"algorithm": { "estimator_params": { "C": 1.0, "kernel": "rbf" } }
42+
"algorithm": { "estimator_params": { "C": 0.01, "kernel": "rbf" } }
4343
},
4444
{
4545
"data": { "dataset": "twodplanes", "split_kwargs": { "ignore": true } },
@@ -78,7 +78,7 @@
7878
"dataset": "year_prediction_msd",
7979
"split_kwargs": { "train_size": 50000, "test_size": null }
8080
},
81-
"algorithm": { "estimator_params": { "C": 1.0, "kernel": "rbf" } }
81+
"algorithm": { "estimator_params": { "C": 0.01, "kernel": "rbf" } }
8282
},
8383
{
8484
"data": { "dataset": "twodplanes", "split_kwargs": { "ignore": true } },

test-configuration-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
inputs:
2020
versionSpec: "$(PYTHON_VERSION)"
2121
- script: |
22-
conda create -y -n bench-env -c conda-forge -c nodefaults python=$(PYTHON_VERSION)
22+
conda create -y -n bench-env -c conda-forge -c nodefaults python=$(PYTHON_VERSION) pip
2323
displayName: Environment initialization
2424
- script: |
2525
source /usr/share/miniconda/etc/profile.d/conda.sh

test-configuration-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ steps:
2121
- powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts"
2222
displayName: Add conda to Windows PATH
2323
- script: |
24-
conda create -y -n bench-env -c conda-forge -c nodefaults python=$(PYTHON_VERSION)
24+
conda create -y -n bench-env -c conda-forge -c nodefaults python=$(PYTHON_VERSION) pip
2525
displayName: Environment initialization
2626
- script: |
2727
call activate bench-env

0 commit comments

Comments
 (0)