-
Notifications
You must be signed in to change notification settings - Fork 3
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
Split datasets to train datasets and validation datasets. #490
Split datasets to train datasets and validation datasets. #490
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's discuss on Monday!
exareme2/controller/services/api/algorithm_request_validator.py
Outdated
Show resolved
Hide resolved
05e6e85
to
0089a7c
Compare
0089a7c
to
fd24d6f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the late review.
def _validate_data_model(requested_data_model: str, available_datasets_per_data_model): | ||
if requested_data_model not in available_datasets_per_data_model.keys(): | ||
raise BadUserInput(f"Data model '{requested_data_model}' does not exist.") | ||
def _ensure_validation_criteria(validation_datasets: List[str], validation: bool): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this context we don't know what validation
is.
Rename to algorithm_specification_validation_flag
?
No description provided.