Interface IDtoDataUsageReport
- All Known Implementing Classes:
DtoDataUsageReport
public interface IDtoDataUsageReport
Information about the removed signals
-
Method Summary
Modifier and TypeMethodDescriptionNumber of data points in the observed timerange of the target signal that were determined to be outliers.List of signals removed and their justification.Total number of data points in the observed timerange of the target signal (without those generated by a potential additionalSampleMesh).The end of the observed target timerange (inclusive).The start of the observed target timerange.voidsetRemovedOutlierCount(Integer removedOutlierCount) Number of data points in the observed timerange of the target signal that were determined to be outliers.voidsetRemovedSignals(IDtoSignalRemoval[] removedSignals) List of signals removed and their justification.voidsetTotalTargetDataPointCount(Integer totalTargetDataPointCount) Total number of data points in the observed timerange of the target signal (without those generated by a potential additionalSampleMesh).voidsetTrainingEndTime(Long trainingEndTime) The end of the observed target timerange (inclusive).voidsetTrainingStartTime(Long trainingStartTime) The start of the observed target timerange.
-
Method Details
-
getTrainingStartTime
Long getTrainingStartTime()The start of the observed target timerange. -
setTrainingStartTime
The start of the observed target timerange. -
getTrainingEndTime
Long getTrainingEndTime()The end of the observed target timerange (inclusive). -
setTrainingEndTime
The end of the observed target timerange (inclusive). -
getTotalTargetDataPointCount
Integer getTotalTargetDataPointCount()Total number of data points in the observed timerange of the target signal (without those generated by a potential additionalSampleMesh). -
setTotalTargetDataPointCount
Total number of data points in the observed timerange of the target signal (without those generated by a potential additionalSampleMesh). -
getRemovedOutlierCount
Integer getRemovedOutlierCount()Number of data points in the observed timerange of the target signal that were determined to be outliers. These will not be used for model training. -
setRemovedOutlierCount
Number of data points in the observed timerange of the target signal that were determined to be outliers. These will not be used for model training. -
getRemovedSignals
IDtoSignalRemoval[] getRemovedSignals()List of signals removed and their justification. -
setRemovedSignals
List of signals removed and their justification.
-