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

remaining Tooltips of Leaderboard on Training-results dashboard #571

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
20 changes: 20 additions & 0 deletions frontend/src/Server/BlazorBoilerplate.Server/Localization/en-US.po
Original file line number Diff line number Diff line change
Expand Up @@ -2154,6 +2154,26 @@ msgctxt "Global"
msgid "Datasets.Dataset.Analysis.More.tooltip"
msgstr "Click here to display all analysis diagrams available for this dataset."

msgctxt "Global"
msgid "Trainings.Training.AutoML_Solution.Label.tooltip"
msgstr "Tool which automatically optimizes the ML model."

msgctxt "Global"
msgid "Trainings.Training.ML_Library.Label.tooltip"
msgstr "ML Library for using the generated ML model."

msgctxt "Global"
msgid "Trainings.Training.Model.Label.tooltip"
msgstr "ML model that can be ussed for predicting new cases."

msgctxt "Global"
msgid "Trainings.Training.Status.Label.tooltip"
msgstr "executing(spinning wheel), completed, failed."

msgctxt "Global"
msgid "Trainings.Training.Metric.Label.tooltip"
msgstr "Measures the quality of the generated ML model, e.g., accuracy (for classification) or mean absolute error (MAE, for regression)."

msgctxt "Global"
msgid "Trainings.Training.TrainingTime.Label.tooltip"
msgstr "Runtime for training the entire dataset in minutes."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,32 @@
</ToolBarContent>
<HeaderContent>
<MudTHeadRow>
<MudTh><MudTableSortLabel SortBy="@(new Func<ModelDto, object>(x=>x.AutoMlSolution.Properties["skos:prefLabel"]))">@L["AutoML solution"]</MudTableSortLabel></MudTh>
<MudTh><MudTableSortLabel SortBy="new Func<ModelDto, object>(x=>x.Status)">@L["Status"]</MudTableSortLabel></MudTh>
<MudTh><MudTableSortLabel SortBy="@(new Func<ModelDto, object>(x=>x.GetMlModelString()))">@L["Model"]</MudTableSortLabel></MudTh>
<MudTh><MudTableSortLabel SortBy="@(new Func<ModelDto, object>(x=>x.GetMlLibraryString()))">@L["ML Library"]</MudTableSortLabel></MudTh>
<MudTh>
<MudTableSortLabel SortBy="@(new Func<ModelDto, object>(x=>x.AutoMlSolution.Properties["skos:prefLabel"]))">
<LabelTooltip Label=@L["AutoML solution"] FontSize="TextStyle.Body1" Text="@L["Trainings.Training.AutoML_Solution.Label.tooltip"]" Position="Radzen.TooltipPosition.Top"></LabelTooltip>
</MudTableSortLabel>
</MudTh>
<MudTh>
<MudTableSortLabel SortBy="new Func<ModelDto, object>(x=>x.Status)">
<LabelTooltip Label=@L["Status"] FontSize="TextStyle.Body1" Text="@L["Trainings.Training.Status.Label.tooltip"]" Position="Radzen.TooltipPosition.Top"></LabelTooltip>
</MudTableSortLabel>
</MudTh>
<MudTh>
<MudTableSortLabel SortBy="@(new Func<ModelDto, object>(x=>x.GetMlModelString()))">
<LabelTooltip Label=@L["Model"] FontSize="TextStyle.Body1" Text="@L["Trainings.Training.Model.Label.tooltip"]" Position="Radzen.TooltipPosition.Top"></LabelTooltip>
</MudTableSortLabel>
</MudTh>
<MudTh>
<MudTableSortLabel SortBy="@(new Func<ModelDto, object>(x=>x.GetMlLibraryString()))">
<LabelTooltip Label=@L["ML Library"] FontSize="TextStyle.Body1" Text="@L["Trainings.Training.ML_Library.Label.tooltip"]" Position="Radzen.TooltipPosition.Top"></LabelTooltip>
</MudTableSortLabel>
</MudTh>
<MudTh>
<MudTableSortLabel SortBy="@(new Func<ModelDto, object>(x=> SelectedMetric != "" ?
x.Metrics.Count() > 0 ?
x.Metrics.Where(y => y.Name.ID == SelectedMetric).First().Score.ToString()
: ""
: ""))">@L["Metric"]</MudTableSortLabel>
: ""))"><LabelTooltip Label=@L["Metric"] FontSize="TextStyle.Body1" Text="@L["Trainings.Training.Metric.Label.tooltip"]" Position="Radzen.TooltipPosition.Top"></LabelTooltip></MudTableSortLabel>
</MudTh>
<MudTh>
<MudTableSortLabel SortBy="new Func<ModelDto, object>(x=>x.Runtime)">
Expand Down