EducationalTestingService / skll

SciKit-Learn Laboratory (SKLL) makes it easy to run machine learning experiments.
http://skll.readthedocs.org
Other
551 stars 67 forks source link

Simplify parameter grids to be dictionaries instead of lists of dictionaries #618

Closed desilinguist closed 4 years ago

desilinguist commented 4 years ago

Right now, we always use a list with a single dictionary to represent the default parameter grid for a learner. However, GridSearchCV can take a plain dictionary as well. Given that we almost never search multiple grids, switching to a plain dictionary will make things a lot simpler when implementing voting and stacking learners.