Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type FrozenTrial ¶
type FrozenTrial struct {
ID int `json:"trial_id"`
StudyID int `json:"study_id"`
Number int `json:"number"`
State string `json:"state"`
Value float64 `json:"value"`
IntermediateValues []IntermediateValue `json:"intermediate_values"`
DatetimeStart string `json:"datetime_start,omitempty"`
DatetimeComplete string `json:"datetime_complete,omitempty"`
Params []TrialParam `json:"params"`
FixedParams []TrialFixedParam `json:"fixed_params"`
UserAttrs []Attribute `json:"user_attrs"`
}
type IntermediateValue ¶
type StudySummary ¶
type StudySummary struct {
ID int `json:"study_id"`
Name string `json:"study_name"`
Direction string `json:"direction"`
BestTrial FrozenTrial `json:"best_trial"`
UserAttrs []Attribute `json:"user_attrs"`
SystemAttrs []Attribute `json:"system_attrs"`
DatetimeStart string `json:"datetime_start,omitempty"`
}
StudySummary holds basic attributes and aggregated results of Study.
type TrialFixedParam ¶ added in v0.9.0
Click to show internal directories.
Click to hide internal directories.