2020-08-20 10:42:02 +02:00
|
|
|
|
<rb-tab-panel (tabChanged)="groupChange($event)">
|
|
|
|
|
<ng-container *ngFor="let group of d.arr.modelGroups; index as i">
|
|
|
|
|
<div *rbTabPanelItem="group.group; id: i"></div>
|
|
|
|
|
</ng-container>
|
|
|
|
|
</rb-tab-panel>
|
2020-08-12 15:15:31 +02:00
|
|
|
|
|
2020-08-20 10:42:02 +02:00
|
|
|
|
<rb-form-select label="Model" (change)="result = undefined" [(ngModel)]="activeModelIndex">
|
|
|
|
|
<option *ngFor="let model of activeGroup.models; index as i" [value]="i">{{model.name}}</option>
|
|
|
|
|
</rb-form-select>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="result" class="result" [@inOut]>
|
|
|
|
|
<ng-container *ngIf="multipleSamples; else singleSampleResult">
|
|
|
|
|
<h4 *ngFor="let prediction of result.predictions; index as i">
|
2020-10-02 10:11:16 +02:00
|
|
|
|
{{spectrumNames[i]}}:
|
|
|
|
|
<span *ngFor="let predictionEntry of prediction">
|
|
|
|
|
{{predictionEntry.category}} <span [ngStyle]="{color: predictionEntry.color}">{{predictionEntry.value}}</span> {{predictionEntry.label}}
|
|
|
|
|
</span>
|
|
|
|
|
<a [routerLink]='"."' fragment="disclaimer"><sup>#</sup></a>
|
2020-08-20 10:42:02 +02:00
|
|
|
|
</h4>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-template #singleSampleResult>
|
|
|
|
|
<h4>
|
2020-10-02 10:11:16 +02:00
|
|
|
|
Average result:
|
|
|
|
|
<span *ngFor="let predictionEntry of result.mean">
|
|
|
|
|
{{predictionEntry.category}} <span [ngStyle]="{color: predictionEntry.color}">{{predictionEntry.value}}</span> {{predictionEntry.label}} {{( predictionEntry.std !== '' ? ' (standard deviation: '+ predictionEntry.std+')' : '') }}
|
|
|
|
|
</span>
|
|
|
|
|
<a [routerLink]='"."' fragment="disclaimer"><sup>#</sup></a>
|
2020-08-20 10:42:02 +02:00
|
|
|
|
</h4>
|
2020-08-31 16:14:47 +02:00
|
|
|
|
<a class="rb-details-toggle" rbDetailsToggle #triggerDetails="rbDetailsToggle">Details</a>
|
2020-08-20 10:42:02 +02:00
|
|
|
|
<div *ngIf="triggerDetails.open" class="space-below">
|
|
|
|
|
<p *ngFor="let prediction of result.predictions; index as i">
|
2020-10-02 10:11:16 +02:00
|
|
|
|
{{spectrumNames[i]}}:
|
|
|
|
|
<span *ngFor="let predictionEntry of prediction">
|
|
|
|
|
{{predictionEntry.category}} <span [ngStyle]="{color: predictionEntry.color}">{{predictionEntry.value}}</span> {{predictionEntry.label}}
|
|
|
|
|
</span>
|
|
|
|
|
<a [routerLink]='"."' fragment="disclaimer"><sup>#</sup></a>
|
2020-08-20 10:42:02 +02:00
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="file-input space-below">
|
|
|
|
|
<rb-form-file name="spectrum-upload" label="spectrum file" maxSize="10000000" class="space-below" multiple
|
|
|
|
|
(ngModelChange)="fileToArray($event)" placeholder="Select file or drag and drop" dragDrop ngModel>
|
|
|
|
|
</rb-form-file>
|
|
|
|
|
|
|
|
|
|
<rb-loading-spinner *ngIf="loading; else predictButton"></rb-loading-spinner>
|
|
|
|
|
<ng-template #predictButton>
|
|
|
|
|
<rb-icon-button icon="forward-right" mode="primary" *ngIf="spectrumNames.length; else placeholder"
|
|
|
|
|
(click)="loadPrediction()">
|
|
|
|
|
Predict
|
|
|
|
|
</rb-icon-button>
|
|
|
|
|
<ng-template #placeholder><div></div></ng-template>
|
|
|
|
|
</ng-template>
|
|
|
|
|
|
2020-08-21 16:11:57 +02:00
|
|
|
|
<div>
|
|
|
|
|
Prediction of:
|
|
|
|
|
<rb-form-radio name="multiple-samples" label="Single sample" [(ngModel)]="multipleSamples" [value]="false">
|
|
|
|
|
</rb-form-radio>
|
|
|
|
|
<rb-form-radio name="multiple-samples" label="Multiple samples" [(ngModel)]="multipleSamples" [value]="true">
|
|
|
|
|
</rb-form-radio>
|
|
|
|
|
</div>
|
2020-12-15 12:00:16 +01:00
|
|
|
|
|
|
|
|
|
<rb-icon-button icon="forward-right" mode="primary" (click)="exportCSV()" *ngIf="spectrumNames.length">
|
|
|
|
|
Export to CSV
|
|
|
|
|
</rb-icon-button>
|
2020-08-20 10:42:02 +02:00
|
|
|
|
</div>
|
2020-08-12 15:15:31 +02:00
|
|
|
|
|
2020-08-26 19:25:31 +02:00
|
|
|
|
<div class="dpt-chart space-below">
|
2020-08-12 15:15:31 +02:00
|
|
|
|
<canvas baseChart
|
|
|
|
|
class="dpt-chart"
|
|
|
|
|
[datasets]="chart"
|
|
|
|
|
[labels]="[]"
|
|
|
|
|
[options]="chartOptions"
|
|
|
|
|
[legend]="false"
|
|
|
|
|
chartType="scatter">
|
|
|
|
|
</canvas>
|
|
|
|
|
</div>
|
2020-08-26 19:25:31 +02:00
|
|
|
|
|
|
|
|
|
<div class="shaded-container" id="disclaimer">
|
|
|
|
|
<h4><sup>#</sup>Disclaimer: This tool is still under development</h4>
|
|
|
|
|
<p>
|
|
|
|
|
The prediction and classification of material parameters are validated only for certain conditions.
|
|
|
|
|
These results may therefore under no circumstances be used to evaluate quality-relevant issues. <br>
|
|
|
|
|
For more details please contact <a [href]="'mailto:' + d.contact.mail">{{d.contact.name}}</a>.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|