{{controller() ? 'RUN INFO' : 'STEP INFO'}}
@if (entity()) {
@if (stepWithStatus()) {
{{stepWithStatus().name}}
{{stepWithStatus().data.status}}
} @else { @if (entity()?.id) {
} } @if (!stepWithStatus() || stepWithStatus().data.job_id === entity()?.id) {
PARAMETERS
@for (section of (entity()?.type === 'controller' ? {'Args': {}} : entity()?.hyperparams) | keyvalue; track section) { @for (param of entity()?.hyperparams[section.key] | keyvalue | filterRegex: '^(?!_).+$'; track param) {
{{param.key}}
{{param.value.value}}
} }
METRICS
@if ((entity()?.last_metrics | keyvalue)?.length > 0) { @for (metric of entity().last_metrics | keyvalue; track metric) { @for (variant of $any($any(metric.value) | keyvalue) | filterMonitorMetric; track variant) {
{{$any(variant.value).metric}}/{{$any(variant.value).variant}}
{{$any(variant.value).value}}
} } } @else {
No data to show
}
ARTIFACTS
@if (entity()?.execution?.artifacts?.length > 0) { @for (artifact of entity().execution.artifacts; track artifact.hash || artifact.uri) {
{{artifact.key}}
{{(artifact?.content_size | filesize : fileSizeConfigStorage) || ''}}
} } @else {
No data to show
}
MODELS
@if (entity()?.models?.output?.length > 0) { @for (model of entity().models?.output; track model) { } } @else {
No data to show
}
}
No data to show
} @if (entity()?.id) { }