Skip to content
Draft
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
47 changes: 47 additions & 0 deletions configs/regular/logreg_cv.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"INCLUDE": ["../common/sklearn.json"],
"PARAMETERS_SETS": {
"sklearn logreg_cv parameters": {
"algorithm": {
"estimator": "LogisticRegressionCV",
"library": ["sklearn", "sklearnex"],
"device": "cpu",
"estimator_methods": { "inference": "predict" },
"estimator_params": {
"Cs": 10,
"solver": "lbfgs",
"max_iter": 1000,
"random_state": 123
}
}
},
"logreg_cv datasets": [
{
"data": {
"source": "make_classification",
"generation_kwargs": [
{
"n_samples": 100000,
"n_features": 1000,
"n_informative": 800,
"n_classes": [2]
}
],
"split_kwargs": {
"train_size": 0.05,
"test_size": 0.95
}
}
}
]
},
"TEMPLATES": {
"sklearn logreg_cv": {
"SETS": [
"sklearn-ex[cpu,gpu] implementations",
"sklearn logreg_cv parameters",
"logreg_cv datasets"
]
}
}
}
2 changes: 1 addition & 1 deletion envs/conda-env-sklearn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies:
- modin-all
- scikit-learn-intelex
# sklbench dependencies
- scikit-learn
- scikit-learn>=1.8
- pandas
- tabulate
- fastparquet
Expand Down
2 changes: 1 addition & 1 deletion envs/requirements-sklearn.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scikit-learn-intelex
dpctl
dpnp
# sklbench dependencies
scikit-learn
scikit-learn>=1.8
pandas
tabulate
fastparquet
Expand Down
1 change: 1 addition & 0 deletions sklbench/benchmarks/estimator_task_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"classification": [
"Classifier",
"LogisticRegression",
"LogisticRegressionCV",
"SVC"
],
"regression": [
Expand Down
Loading