Show / Hide Table of Contents

Class PerSignalDetails

Detailed information like statistics, metrics and status for a signal

Inheritance
object
PerSignalDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AianomalydetectionService.Models
Assembly: OCI.DotNetSDK.Aianomalydetection.dll
Syntax
public class PerSignalDetails

Properties

Details

Declaration
[JsonProperty(PropertyName = "details")]
public string Details { get; set; }
Property Value
Type Description
string

detailed information for a signal.

Fap

Declaration
[JsonProperty(PropertyName = "fap")]
public float? Fap { get; set; }
Property Value
Type Description
float?

Accuracy metric for a signal.

IsQuantized

Declaration
[JsonProperty(PropertyName = "isQuantized")]
public bool? IsQuantized { get; set; }
Property Value
Type Description
bool?

A boolean value to indicate if a signal is quantized or not.

Max

Declaration
[Required(ErrorMessage = "Max is required.")]
[JsonProperty(PropertyName = "max")]
public double Max { get; set; }
Property Value
Type Description
double

Max value within a signal.

Remarks

Required

Min

Declaration
[Required(ErrorMessage = "Min is required.")]
[JsonProperty(PropertyName = "min")]
public double Min { get; set; }
Property Value
Type Description
double

Min value within a signal.

Remarks

Required

MviRatio

Declaration
[JsonProperty(PropertyName = "mviRatio")]
public double MviRatio { get; set; }
Property Value
Type Description
double

The ratio of missing values in a signal filled/imputed by the IDP algorithm.

SignalName

Declaration
[Required(ErrorMessage = "SignalName is required.")]
[JsonProperty(PropertyName = "signalName")]
public string SignalName { get; set; }
Property Value
Type Description
string

The name of a signal.

Remarks

Required

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PerSignalDetails.StatusEnum? Status { get; set; }
Property Value
Type Description
PerSignalDetails.StatusEnum?

Status of the signal:

  • ACCEPTED - the signal is used for training the model
  • DROPPED - the signal does not meet requirement, and is dropped before training the model.
  • OTHER - placeholder for other status
Remarks

Required

Std

Declaration
[Required(ErrorMessage = "Std is required.")]
[JsonProperty(PropertyName = "std")]
public double Std { get; set; }
Property Value
Type Description
double

Standard deviation of values within a signal.

Remarks

Required

In this article
Back to top