ramp_database.model
.SubmissionScoreOnCVFold¶
-
class
ramp_database.model.
SubmissionScoreOnCVFold
(**kwargs)¶ SubmissionScoreOnCVFold table.
- Attributes
- idint
The ID of the table row.
- submission_on_cv_fold_idint
The ID of the CV fold.
- submission_on_cv_fold
ramp_database.model.SubmissionOnCVFold
The submission on CV fold instance.
- submission_score_idint
The ID of the submission score.
- submission_score
ramp_database.model.SubmissionScore
The submission score instance.
- train_scorefloat
The training score on the fold.
- valid_scorefloat
The validation score on the fold.
- test_scorefloat
The testing score on the fold.
-
__init__
(**kwargs)¶ A simple constructor that allows initialization from kwargs.
Sets attributes on the constructed instance using the names and values in
kwargs
.Only keys that are present as attributes of the instance’s class are allowed. These could be, for example, any mapped columns or relationships.