Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Model combiner #385

Merged
merged 19 commits into from
Sep 3, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
style
  • Loading branch information
leahmcguire committed Aug 19, 2019
commit d3832ed19d27e11b3f345fe9eee3c1b767b76f9d
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class SelectedCombiner
problemType = summary1.problemType,
bestModelUID = summary1.bestModelUID + " " + summary2.bestModelUID,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is space a good separator here? perhaps _ or - instead?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

space will be parsable to get them separated while "-" or "_" would not

bestModelName = summary1.bestModelName + " " + summary2.bestModelName,
bestModelType = summary1.bestModelType + " " +summary2.bestModelType,
bestModelType = summary1.bestModelType + " " + summary2.bestModelType,
validationResults = summary1.validationResults ++ summary2.validationResults,
trainEvaluation = evaluate(model.transform(dataset)),
holdoutEvaluation = None
Expand Down