Skip to content

Commit

Permalink
changed rule_compaction from None to QRF
Browse files Browse the repository at this point in the history
  • Loading branch information
raptor419 committed Aug 13, 2024
1 parent 9ad5ace commit 90b87fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streamline/models/learning_based.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def __init__(self, cv_folds=3, scoring_metric='balanced_accuracy',
self.param_grid['nu'] = [nu, ]
if len(self.param_grid['learning_iterations']) == 1 and len(self.param_grid['N']) == 1 and \
len(self.param_grid['nu']) == 1:
self.param_grid['rule_compaction'] = [None, ]
self.param_grid['rule_compaction'] = ['QRF', ]
self.param_grid['expert_knowledge'] = expert_knowledge
self.param_grid['random_state'] = [random_state, ]
self.small_name = "ExSTraCS"
Expand Down

0 comments on commit 90b87fe

Please sign in to comment.