Skip to content

Commit

Permalink
🔨 fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dunnkers committed Jan 25, 2022
1 parent 433180c commit 2a6c4a9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from fseval.config import EstimatorConfig

mutual_info_ranker = EstimatorConfig(
name= "Mutual Info",
estimator=dict(
_target_="benchmark.MutualInfoClassifier",
),
_estimator_type="classifier",
multioutput=False,
estimates_feature_importances=True,
name="Mutual Info",
estimator=dict(
_target_="benchmark.MutualInfoClassifier",
),
_estimator_type="classifier",
multioutput=False,
estimates_feature_importances=True,
)
6 changes: 1 addition & 5 deletions examples/quick-start-yaml/conf/my_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ defaults:
- override dataset: synthetic
- override validator: knn
- override /callbacks:
- to_csv
- to_sql

n_bootstraps: 1

callbacks:
to_csv:
dir: /Users/dunnkers/Downloads/results_dir

0 comments on commit 2a6c4a9

Please sign in to comment.