edge-impulse-api 1.57.6 → 1.57.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,7 +24,7 @@ export declare class ClassifySampleResponseClassification {
24
24
  [key: string]: number;
25
25
  }>;
26
26
  /**
27
- * Anomaly scores and computed metrics for GMM anomaly detection, one item per window.
27
+ * Anomaly scores and computed metrics for visual anomaly detection, one item per window.
28
28
  */
29
29
  'anomalyResult'?: Array<AnomalyResult>;
30
30
  /**
@@ -21,7 +21,7 @@ export declare class ModelPrediction {
21
21
  */
22
22
  'f1Score'?: number;
23
23
  /**
24
- * Only set for visual anomaly projects. 2D array of shape (n, n) with raw anomaly scores, where n can be calculated as ((1/8 of image input size)/2 - 1). The scores corresponds to each grid cell in the image\'s spatial matrix.
24
+ * Only set for visual anomaly projects. 2D array of shape (n, n) with raw anomaly scores, where n varies based on the image input size and the specific visual anomaly algorithm used. The scores corresponds to each grid cell in the image\'s spatial matrix.
25
25
  */
26
26
  'anomalyScores'?: Array<Array<number>>;
27
27
  static discriminator: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edge-impulse-api",
3
- "version": "1.57.6",
3
+ "version": "1.57.7",
4
4
  "description": "Node.js bindings for the Edge Impulse API",
5
5
  "scripts": {
6
6
  "build": "./node_modules/.bin/tsc -p .",