Skip to main content
GET
Anomaly metadata

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

learnId
integer
required

Learn Block ID, use the impulse functions to retrieve the ID

Response

200 - application/json

OK

success
boolean
required

Whether the operation succeeded

created
string<date-time>
required

Date when the model was trained

scale
number[]
required

Scale input for StandardScaler. Values are scaled like this (where ix is axis index): input[ix] = (input[ix] - mean[ix]) / scale[ix];

mean
number[]
required

Mean input for StandardScaler. Values are scaled like this (where ix is axis index): input[ix] = (input[ix] - mean[ix]) / scale[ix];

clusters
object[]
required

Trained K-means clusters

axes
integer[]
required

Which axes were included during training (by index)

Example:

"[ 0, 11, 22 ]"

defaultMinimumConfidenceRating
number
required

DEPRECATED, see "thresholds" instead. Default minimum confidence rating required before tagging as anomaly, based on scores of training data (GMM only).

thresholds
object[]
required

List of configurable thresholds for this block.

error
string

Optional error description (set if 'success' was false)

availableModelTypes
enum<string>[]

The types of model that are available

Available options:
int8,
float32,
akida,
requiresRetrain

The model type that is recommended for use

Available options:
int8,
float32,
akida,
requiresRetrain
modelValidationMetrics
object[]

Metrics for each of the available model types

hasTrainedModel
boolean