Anomaly GMM metadata

Anomaly GMM metadata

get

Get raw model metadata of the Gaussian mixture model (GMM) for a trained anomaly block. Use the impulse blocks to find the learnId.

Authorizations
Path parameters
projectIdintegerRequired

Project ID

learnIdintegerRequired

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

Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/training/anomaly/{learnId}/gmm/metadata HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "means": [
    [
      1
    ]
  ],
  "covariances": [
    [
      [
        1
      ]
    ]
  ],
  "weights": [
    1
  ]
}

Last updated

Was this helpful?