ramp_database.model
.SubmissionScore¶
-
class
ramp_database.model.
SubmissionScore
(**kwargs)¶ SubmissionScore table.
- Attributes
- idint
The ID of the row table.
- submission_idint
The ID of the associated submission.
- submission
ramp_database.model.Submission
The submission instance associated.
- event_score_type_idint
The ID of the event/score type associated.
- event_score_type
ramp_database.model.EventScoreType
The event/score type instance associated.
- valid_score_cv_bagfloat
The validation bagged scores.
- test_score_cv_bagfloat
The testing bagged scores.
- valid_score_cv_bagsndarray
The partial validation scores for all CV bags.
- test_score_cv_bagsndarray
The partial testing scores for all CV bags.
- on_cv_foldslist of
ramp_database.model.SubmissionScoreOnCVFold
A back-reference the CV fold associated with the score.
-
__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.