edge-impulse-linux 1.15.5 → 1.16.0
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.
- package/build/cli/linux/linux.js +17 -8
- package/build/cli/linux/linux.js.map +1 -1
- package/build/cli/linux/runner-utils.d.ts +7 -1
- package/build/cli/linux/runner-utils.js +159 -21
- package/build/cli/linux/runner-utils.js.map +1 -1
- package/build/cli/linux/runner.js +37 -9
- package/build/cli/linux/runner.js.map +1 -1
- package/build/cli/linux/webserver/public/inference-server.js +17 -17
- package/build/cli/linux/webserver/public/inference-server.js.map +1 -1
- package/build/cli/linux/webserver/public/webserver.js +5 -1
- package/build/cli/linux/webserver/public/webserver.js.map +1 -1
- package/build/cli/linux/webserver/views/index.d.ts +4 -0
- package/{cli/linux/webserver/public/index.html → build/cli/linux/webserver/views/index.js} +32 -7
- package/build/cli/linux/webserver/views/index.js.map +1 -0
- package/build/cli/linux/webserver/views/inference-server-view.d.ts +3 -1
- package/build/cli/linux/webserver/views/inference-server-view.js +4 -1
- package/build/cli/linux/webserver/views/inference-server-view.js.map +1 -1
- package/build/library/sensors/gstreamer.js +1 -1
- package/build/library/sensors/gstreamer.js.map +1 -1
- package/build/library/sensors/sensors-helper.d.ts +6 -2
- package/build/library/sensors/sensors-helper.js +47 -5
- package/build/library/sensors/sensors-helper.js.map +1 -1
- package/build/sdk/studio/sdk/api/organizationDataApi.d.ts +1 -1
- package/build/sdk/studio/sdk/api/organizationDataApi.js +1 -1
- package/build/sdk/studio/sdk/api/postProcessingApi.d.ts +3 -2
- package/build/sdk/studio/sdk/api/postProcessingApi.js +1 -1
- package/build/sdk/studio/sdk/api/postProcessingApi.js.map +1 -1
- package/build/sdk/studio/sdk/model/dSPInfo.d.ts +6 -0
- package/build/sdk/studio/sdk/model/dSPInfo.js +10 -0
- package/build/sdk/studio/sdk/model/dSPInfo.js.map +1 -1
- package/build/sdk/studio/sdk/model/dSPNormalizeData.d.ts +13 -0
- package/build/sdk/studio/sdk/model/dSPNormalizeData.js +16 -0
- package/build/sdk/studio/sdk/model/dSPNormalizeData.js.map +1 -0
- package/build/sdk/studio/sdk/model/dspRunResponseWithSample.d.ts +5 -1
- package/build/sdk/studio/sdk/model/dspRunResponseWithSample.js +5 -0
- package/build/sdk/studio/sdk/model/dspRunResponseWithSample.js.map +1 -1
- package/build/sdk/studio/sdk/model/dspRunResponseWithSampleAllOf.d.ts +5 -1
- package/build/sdk/studio/sdk/model/dspRunResponseWithSampleAllOf.js +5 -0
- package/build/sdk/studio/sdk/model/dspRunResponseWithSampleAllOf.js.map +1 -1
- package/build/sdk/studio/sdk/model/generateFeaturesRequest.d.ts +2 -0
- package/build/sdk/studio/sdk/model/generateFeaturesRequest.js +5 -0
- package/build/sdk/studio/sdk/model/generateFeaturesRequest.js.map +1 -1
- package/build/sdk/studio/sdk/model/getPostProcessingFeaturesForSampleResponse.d.ts +34 -0
- package/build/sdk/studio/sdk/model/getPostProcessingFeaturesForSampleResponse.js +39 -0
- package/build/sdk/studio/sdk/model/getPostProcessingFeaturesForSampleResponse.js.map +1 -0
- package/build/sdk/studio/sdk/model/getPostProcessingFeaturesForSampleResponseAllOf.d.ts +26 -0
- package/build/sdk/studio/sdk/model/getPostProcessingFeaturesForSampleResponseAllOf.js +29 -0
- package/build/sdk/studio/sdk/model/getPostProcessingFeaturesForSampleResponseAllOf.js.map +1 -0
- package/build/sdk/studio/sdk/model/impulseInputBlock.d.ts +2 -0
- package/build/sdk/studio/sdk/model/impulseInputBlock.js +5 -0
- package/build/sdk/studio/sdk/model/impulseInputBlock.js.map +1 -1
- package/build/sdk/studio/sdk/model/impulseInputBlockLabelingMethodMultiLabel.d.ts +34 -0
- package/build/sdk/studio/sdk/model/impulseInputBlockLabelingMethodMultiLabel.js +38 -0
- package/build/sdk/studio/sdk/model/impulseInputBlockLabelingMethodMultiLabel.js.map +1 -0
- package/build/sdk/studio/sdk/model/models.d.ts +4 -0
- package/build/sdk/studio/sdk/model/models.js +12 -0
- package/build/sdk/studio/sdk/model/models.js.map +1 -1
- package/build/sdk/studio/sdk/model/projectTrainingDataSummaryResponseAllOfDataSummary.d.ts +4 -0
- package/build/sdk/studio/sdk/model/projectTrainingDataSummaryResponseAllOfDataSummary.js +5 -0
- package/build/sdk/studio/sdk/model/projectTrainingDataSummaryResponseAllOfDataSummary.js.map +1 -1
- package/cli/linux/webserver/public/assets/mobileclient.css +28 -0
- package/cli/linux/webserver/public/inference-server.js +17 -13
- package/cli/linux/webserver/public/webserver.js +6 -1
- package/package.json +1 -1
- package/test/gstreamer.test.ts +12 -12
|
@@ -34,6 +34,11 @@ GenerateFeaturesRequest.attributeTypeMap = [
|
|
|
34
34
|
"name": "skipFeatureExplorer",
|
|
35
35
|
"baseName": "skipFeatureExplorer",
|
|
36
36
|
"type": "boolean"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "normalizeData",
|
|
40
|
+
"baseName": "normalizeData",
|
|
41
|
+
"type": "DSPNormalizeData"
|
|
37
42
|
}
|
|
38
43
|
];
|
|
39
44
|
//# sourceMappingURL=generateFeaturesRequest.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generateFeaturesRequest.js","sourceRoot":"","sources":["../../../../../sdk/studio/sdk/model/generateFeaturesRequest.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;
|
|
1
|
+
{"version":3,"file":"generateFeaturesRequest.js","sourceRoot":"","sources":["../../../../../sdk/studio/sdk/model/generateFeaturesRequest.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAIH,MAAa,uBAAuB;IAuChC,MAAM,CAAC,mBAAmB;QACtB,OAAO,uBAAuB,CAAC,gBAAgB,CAAC;IACpD,CAAC;;AAzCL,0DA0CC;AA3BU,qCAAa,GAAuB,SAAS,CAAC;AAE9C,wCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,4BAA4B;QACpC,UAAU,EAAE,4BAA4B;QACxC,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,qBAAqB;QAC7B,UAAU,EAAE,qBAAqB;QACjC,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,kBAAkB;KAC7B;CAAK,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Edge Impulse API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { GetPostProcessingResultsForSampleResponseAllOfResults } from './getPostProcessingResultsForSampleResponseAllOfResults';
|
|
13
|
+
export declare class GetPostProcessingFeaturesForSampleResponse {
|
|
14
|
+
/**
|
|
15
|
+
* Whether the operation succeeded
|
|
16
|
+
*/
|
|
17
|
+
'success': boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Optional error description (set if \'success\' was false)
|
|
20
|
+
*/
|
|
21
|
+
'error'?: string;
|
|
22
|
+
'results': GetPostProcessingResultsForSampleResponseAllOfResults;
|
|
23
|
+
static discriminator: string | undefined;
|
|
24
|
+
static attributeTypeMap: Array<{
|
|
25
|
+
name: string;
|
|
26
|
+
baseName: string;
|
|
27
|
+
type: string;
|
|
28
|
+
}>;
|
|
29
|
+
static getAttributeTypeMap(): {
|
|
30
|
+
name: string;
|
|
31
|
+
baseName: string;
|
|
32
|
+
type: string;
|
|
33
|
+
}[];
|
|
34
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Edge Impulse API
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.GetPostProcessingFeaturesForSampleResponse = void 0;
|
|
15
|
+
class GetPostProcessingFeaturesForSampleResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return GetPostProcessingFeaturesForSampleResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.GetPostProcessingFeaturesForSampleResponse = GetPostProcessingFeaturesForSampleResponse;
|
|
21
|
+
GetPostProcessingFeaturesForSampleResponse.discriminator = undefined;
|
|
22
|
+
GetPostProcessingFeaturesForSampleResponse.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "success",
|
|
25
|
+
"baseName": "success",
|
|
26
|
+
"type": "boolean"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "error",
|
|
30
|
+
"baseName": "error",
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "results",
|
|
35
|
+
"baseName": "results",
|
|
36
|
+
"type": "GetPostProcessingResultsForSampleResponseAllOfResults"
|
|
37
|
+
}
|
|
38
|
+
];
|
|
39
|
+
//# sourceMappingURL=getPostProcessingFeaturesForSampleResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPostProcessingFeaturesForSampleResponse.js","sourceRoot":"","sources":["../../../../../sdk/studio/sdk/model/getPostProcessingFeaturesForSampleResponse.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAMH,MAAa,0CAA0C;IA8BnD,MAAM,CAAC,mBAAmB;QACtB,OAAO,0CAA0C,CAAC,gBAAgB,CAAC;IACvE,CAAC;;AAhCL,gGAiCC;AAtBU,wDAAa,GAAuB,SAAS,CAAC;AAE9C,2DAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,uDAAuD;KAClE;CAAK,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Edge Impulse API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { GetPostProcessingResultsForSampleResponseAllOfResults } from './getPostProcessingResultsForSampleResponseAllOfResults';
|
|
13
|
+
export declare class GetPostProcessingFeaturesForSampleResponseAllOf {
|
|
14
|
+
'results': GetPostProcessingResultsForSampleResponseAllOfResults;
|
|
15
|
+
static discriminator: string | undefined;
|
|
16
|
+
static attributeTypeMap: Array<{
|
|
17
|
+
name: string;
|
|
18
|
+
baseName: string;
|
|
19
|
+
type: string;
|
|
20
|
+
}>;
|
|
21
|
+
static getAttributeTypeMap(): {
|
|
22
|
+
name: string;
|
|
23
|
+
baseName: string;
|
|
24
|
+
type: string;
|
|
25
|
+
}[];
|
|
26
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Edge Impulse API
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.GetPostProcessingFeaturesForSampleResponseAllOf = void 0;
|
|
15
|
+
class GetPostProcessingFeaturesForSampleResponseAllOf {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return GetPostProcessingFeaturesForSampleResponseAllOf.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.GetPostProcessingFeaturesForSampleResponseAllOf = GetPostProcessingFeaturesForSampleResponseAllOf;
|
|
21
|
+
GetPostProcessingFeaturesForSampleResponseAllOf.discriminator = undefined;
|
|
22
|
+
GetPostProcessingFeaturesForSampleResponseAllOf.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "results",
|
|
25
|
+
"baseName": "results",
|
|
26
|
+
"type": "GetPostProcessingResultsForSampleResponseAllOfResults"
|
|
27
|
+
}
|
|
28
|
+
];
|
|
29
|
+
//# sourceMappingURL=getPostProcessingFeaturesForSampleResponseAllOf.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPostProcessingFeaturesForSampleResponseAllOf.js","sourceRoot":"","sources":["../../../../../sdk/studio/sdk/model/getPostProcessingFeaturesForSampleResponseAllOf.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAIH,MAAa,+CAA+C;IAYxD,MAAM,CAAC,mBAAmB;QACtB,OAAO,+CAA+C,CAAC,gBAAgB,CAAC;IAC5E,CAAC;;AAdL,0GAeC;AAZU,6DAAa,GAAuB,SAAS,CAAC;AAE9C,gEAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,uDAAuD;KAClE;CAAK,CAAC"}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { ImageInputResizeMode } from './imageInputResizeMode';
|
|
13
13
|
import { ImpulseInputBlockDatasetSubset } from './impulseInputBlockDatasetSubset';
|
|
14
|
+
import { ImpulseInputBlockLabelingMethodMultiLabel } from './impulseInputBlockLabelingMethodMultiLabel';
|
|
14
15
|
export declare class ImpulseInputBlock {
|
|
15
16
|
/**
|
|
16
17
|
* Identifier for this block. Make sure to up this number when creating a new block via `getNewBlockId`, and don\'t re-use identifiers. If the block hasn\'t changed, keep the ID as-is. ID must be unique across the project and greather than zero (>0).
|
|
@@ -48,6 +49,7 @@ export declare class ImpulseInputBlock {
|
|
|
48
49
|
* Whether to zero pad data when a data item is too short
|
|
49
50
|
*/
|
|
50
51
|
'padZeros'?: boolean;
|
|
52
|
+
'labelingMethodMultiLabel'?: ImpulseInputBlockLabelingMethodMultiLabel;
|
|
51
53
|
/**
|
|
52
54
|
* Width all images are resized to before training
|
|
53
55
|
*/
|
|
@@ -65,6 +65,11 @@ ImpulseInputBlock.attributeTypeMap = [
|
|
|
65
65
|
"baseName": "padZeros",
|
|
66
66
|
"type": "boolean"
|
|
67
67
|
},
|
|
68
|
+
{
|
|
69
|
+
"name": "labelingMethodMultiLabel",
|
|
70
|
+
"baseName": "labelingMethodMultiLabel",
|
|
71
|
+
"type": "ImpulseInputBlockLabelingMethodMultiLabel"
|
|
72
|
+
},
|
|
68
73
|
{
|
|
69
74
|
"name": "imageWidth",
|
|
70
75
|
"baseName": "imageWidth",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"impulseInputBlock.js","sourceRoot":"","sources":["../../../../../sdk/studio/sdk/model/impulseInputBlock.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;
|
|
1
|
+
{"version":3,"file":"impulseInputBlock.js","sourceRoot":"","sources":["../../../../../sdk/studio/sdk/model/impulseInputBlock.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAMH,MAAa,iBAAiB;IA+J1B,MAAM,CAAC,mBAAmB;QACtB,OAAO,iBAAiB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;;AAjKL,8CAkKC;AAjGU,+BAAa,GAAuB,SAAS,CAAC;AAE9C,kCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,IAAI;QACZ,UAAU,EAAE,IAAI;QAChB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,2BAA2B;KACtC;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,gCAAgC;QACxC,UAAU,EAAE,gCAAgC;QAC5C,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,0BAA0B;QAClC,UAAU,EAAE,0BAA0B;QACtC,MAAM,EAAE,2CAA2C;KACtD;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,sBAAsB;KACjC;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,mCAAmC;KAC9C;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,iCAAiC;KAC5C;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,gCAAgC;KAC3C;CAAK,CAAC;AASF,QAAA,+BAA+B,GAAa,CAAC,aAAa,EAAE,OAAO,EAAE,UAAU,CAAC,CAAC;AAGjF,QAAA,uCAAuC,GAAa,CAAC,UAAU,EAAE,SAAS,CAAC,CAAC;AAG5E,QAAA,qCAAqC,GAAa,CAAC,UAAU,EAAE,YAAY,EAAE,WAAW,EAAE,aAAa,EAAE,eAAe,EAAE,cAAc,EAAE,aAAa,EAAE,eAAe,EAAE,cAAc,CAAC,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Edge Impulse API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* How to pick the label for multi-label samples
|
|
14
|
+
*/
|
|
15
|
+
export declare class ImpulseInputBlockLabelingMethodMultiLabel {
|
|
16
|
+
'type': ImpulseInputBlockLabelingMethodMultiLabelTypeEnum;
|
|
17
|
+
/**
|
|
18
|
+
* Required when choosing \"anywhere-in-window\". The list of classes that should trigger detection (e.g. \"interference\").
|
|
19
|
+
*/
|
|
20
|
+
'labels'?: Array<string>;
|
|
21
|
+
static discriminator: string | undefined;
|
|
22
|
+
static attributeTypeMap: Array<{
|
|
23
|
+
name: string;
|
|
24
|
+
baseName: string;
|
|
25
|
+
type: string;
|
|
26
|
+
}>;
|
|
27
|
+
static getAttributeTypeMap(): {
|
|
28
|
+
name: string;
|
|
29
|
+
baseName: string;
|
|
30
|
+
type: string;
|
|
31
|
+
}[];
|
|
32
|
+
}
|
|
33
|
+
export type ImpulseInputBlockLabelingMethodMultiLabelTypeEnum = 'end-of-window' | 'anywhere-in-window';
|
|
34
|
+
export declare const ImpulseInputBlockLabelingMethodMultiLabelTypeEnumValues: string[];
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Edge Impulse API
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.ImpulseInputBlockLabelingMethodMultiLabelTypeEnumValues = exports.ImpulseInputBlockLabelingMethodMultiLabel = void 0;
|
|
15
|
+
/**
|
|
16
|
+
* How to pick the label for multi-label samples
|
|
17
|
+
*/
|
|
18
|
+
class ImpulseInputBlockLabelingMethodMultiLabel {
|
|
19
|
+
static getAttributeTypeMap() {
|
|
20
|
+
return ImpulseInputBlockLabelingMethodMultiLabel.attributeTypeMap;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.ImpulseInputBlockLabelingMethodMultiLabel = ImpulseInputBlockLabelingMethodMultiLabel;
|
|
24
|
+
ImpulseInputBlockLabelingMethodMultiLabel.discriminator = undefined;
|
|
25
|
+
ImpulseInputBlockLabelingMethodMultiLabel.attributeTypeMap = [
|
|
26
|
+
{
|
|
27
|
+
"name": "type",
|
|
28
|
+
"baseName": "type",
|
|
29
|
+
"type": "ImpulseInputBlockLabelingMethodMultiLabelTypeEnum"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "labels",
|
|
33
|
+
"baseName": "labels",
|
|
34
|
+
"type": "Array<string>"
|
|
35
|
+
}
|
|
36
|
+
];
|
|
37
|
+
exports.ImpulseInputBlockLabelingMethodMultiLabelTypeEnumValues = ['end-of-window', 'anywhere-in-window'];
|
|
38
|
+
//# sourceMappingURL=impulseInputBlockLabelingMethodMultiLabel.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"impulseInputBlockLabelingMethodMultiLabel.js","sourceRoot":"","sources":["../../../../../sdk/studio/sdk/model/impulseInputBlockLabelingMethodMultiLabel.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAGH;;EAEE;AACF,MAAa,yCAAyC;IAqBlD,MAAM,CAAC,mBAAmB;QACtB,OAAO,yCAAyC,CAAC,gBAAgB,CAAC;IACtE,CAAC;;AAvBL,8FAwBC;AAjBU,uDAAa,GAAuB,SAAS,CAAC;AAE9C,0DAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,mDAAmD;KAC9D;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,eAAe;KAC1B;CAAK,CAAC;AASF,QAAA,uDAAuD,GAAa,CAAC,eAAe,EAAE,oBAAoB,CAAC,CAAC"}
|
|
@@ -235,6 +235,7 @@ export * from './dSPMetadataOutputConfig';
|
|
|
235
235
|
export * from './dSPMetadataOutputConfigShape';
|
|
236
236
|
export * from './dSPMetadataResponse';
|
|
237
237
|
export * from './dSPNamedAxis';
|
|
238
|
+
export * from './dSPNormalizeData';
|
|
238
239
|
export * from './dailyMetricsRecord';
|
|
239
240
|
export * from './dataCampaign';
|
|
240
241
|
export * from './dataCampaignDashboard';
|
|
@@ -476,6 +477,8 @@ export * from './getPerformanceCalibrationRawResultResponse';
|
|
|
476
477
|
export * from './getPerformanceCalibrationRawResultResponseAllOf';
|
|
477
478
|
export * from './getPerformanceCalibrationStatusResponse';
|
|
478
479
|
export * from './getPerformanceCalibrationStatusResponseAllOf';
|
|
480
|
+
export * from './getPostProcessingFeaturesForSampleResponse';
|
|
481
|
+
export * from './getPostProcessingFeaturesForSampleResponseAllOf';
|
|
479
482
|
export * from './getPostProcessingResultsForSampleResponse';
|
|
480
483
|
export * from './getPostProcessingResultsForSampleResponseAllOf';
|
|
481
484
|
export * from './getPostProcessingResultsForSampleResponseAllOfJobIsRunning';
|
|
@@ -536,6 +539,7 @@ export * from './impulseDspBlockNamedAxes';
|
|
|
536
539
|
export * from './impulseDspBlockOrganization';
|
|
537
540
|
export * from './impulseInputBlock';
|
|
538
541
|
export * from './impulseInputBlockDatasetSubset';
|
|
542
|
+
export * from './impulseInputBlockLabelingMethodMultiLabel';
|
|
539
543
|
export * from './impulseLearnBlock';
|
|
540
544
|
export * from './impulsePostProcessingBlock';
|
|
541
545
|
export * from './inferenceHistoryAggregate';
|
|
@@ -252,6 +252,7 @@ __exportStar(require("./dSPMetadataOutputConfig"), exports);
|
|
|
252
252
|
__exportStar(require("./dSPMetadataOutputConfigShape"), exports);
|
|
253
253
|
__exportStar(require("./dSPMetadataResponse"), exports);
|
|
254
254
|
__exportStar(require("./dSPNamedAxis"), exports);
|
|
255
|
+
__exportStar(require("./dSPNormalizeData"), exports);
|
|
255
256
|
__exportStar(require("./dailyMetricsRecord"), exports);
|
|
256
257
|
__exportStar(require("./dataCampaign"), exports);
|
|
257
258
|
__exportStar(require("./dataCampaignDashboard"), exports);
|
|
@@ -493,6 +494,8 @@ __exportStar(require("./getPerformanceCalibrationRawResultResponse"), exports);
|
|
|
493
494
|
__exportStar(require("./getPerformanceCalibrationRawResultResponseAllOf"), exports);
|
|
494
495
|
__exportStar(require("./getPerformanceCalibrationStatusResponse"), exports);
|
|
495
496
|
__exportStar(require("./getPerformanceCalibrationStatusResponseAllOf"), exports);
|
|
497
|
+
__exportStar(require("./getPostProcessingFeaturesForSampleResponse"), exports);
|
|
498
|
+
__exportStar(require("./getPostProcessingFeaturesForSampleResponseAllOf"), exports);
|
|
496
499
|
__exportStar(require("./getPostProcessingResultsForSampleResponse"), exports);
|
|
497
500
|
__exportStar(require("./getPostProcessingResultsForSampleResponseAllOf"), exports);
|
|
498
501
|
__exportStar(require("./getPostProcessingResultsForSampleResponseAllOfJobIsRunning"), exports);
|
|
@@ -553,6 +556,7 @@ __exportStar(require("./impulseDspBlockNamedAxes"), exports);
|
|
|
553
556
|
__exportStar(require("./impulseDspBlockOrganization"), exports);
|
|
554
557
|
__exportStar(require("./impulseInputBlock"), exports);
|
|
555
558
|
__exportStar(require("./impulseInputBlockDatasetSubset"), exports);
|
|
559
|
+
__exportStar(require("./impulseInputBlockLabelingMethodMultiLabel"), exports);
|
|
556
560
|
__exportStar(require("./impulseLearnBlock"), exports);
|
|
557
561
|
__exportStar(require("./impulsePostProcessingBlock"), exports);
|
|
558
562
|
__exportStar(require("./inferenceHistoryAggregate"), exports);
|
|
@@ -1560,6 +1564,8 @@ const getPerformanceCalibrationRawResultResponse_1 = require("./getPerformanceCa
|
|
|
1560
1564
|
const getPerformanceCalibrationRawResultResponseAllOf_1 = require("./getPerformanceCalibrationRawResultResponseAllOf");
|
|
1561
1565
|
const getPerformanceCalibrationStatusResponse_1 = require("./getPerformanceCalibrationStatusResponse");
|
|
1562
1566
|
const getPerformanceCalibrationStatusResponseAllOf_1 = require("./getPerformanceCalibrationStatusResponseAllOf");
|
|
1567
|
+
const getPostProcessingFeaturesForSampleResponse_1 = require("./getPostProcessingFeaturesForSampleResponse");
|
|
1568
|
+
const getPostProcessingFeaturesForSampleResponseAllOf_1 = require("./getPostProcessingFeaturesForSampleResponseAllOf");
|
|
1563
1569
|
const getPostProcessingResultsForSampleResponse_1 = require("./getPostProcessingResultsForSampleResponse");
|
|
1564
1570
|
const getPostProcessingResultsForSampleResponseAllOf_1 = require("./getPostProcessingResultsForSampleResponseAllOf");
|
|
1565
1571
|
const getPostProcessingResultsForSampleResponseAllOfJobIsRunning_1 = require("./getPostProcessingResultsForSampleResponseAllOfJobIsRunning");
|
|
@@ -1618,6 +1624,7 @@ const impulseDspBlockNamedAxes_1 = require("./impulseDspBlockNamedAxes");
|
|
|
1618
1624
|
const impulseDspBlockOrganization_1 = require("./impulseDspBlockOrganization");
|
|
1619
1625
|
const impulseInputBlock_1 = require("./impulseInputBlock");
|
|
1620
1626
|
const impulseInputBlockDatasetSubset_1 = require("./impulseInputBlockDatasetSubset");
|
|
1627
|
+
const impulseInputBlockLabelingMethodMultiLabel_1 = require("./impulseInputBlockLabelingMethodMultiLabel");
|
|
1621
1628
|
const impulseLearnBlock_1 = require("./impulseLearnBlock");
|
|
1622
1629
|
const impulsePostProcessingBlock_1 = require("./impulsePostProcessingBlock");
|
|
1623
1630
|
const inferenceHistoryAggregate_1 = require("./inferenceHistoryAggregate");
|
|
@@ -2170,6 +2177,7 @@ let enumsMap = {
|
|
|
2170
2177
|
"DSPGroupItemSectionEnum": "DSPGroupItemSectionEnum",
|
|
2171
2178
|
"DSPGroupItemShowIfOperatorEnum": "DSPGroupItemShowIfOperatorEnum",
|
|
2172
2179
|
"DSPMetadataOutputConfigTypeEnum": "DSPMetadataOutputConfigTypeEnum",
|
|
2180
|
+
"DSPNormalizeData": "DSPNormalizeData",
|
|
2173
2181
|
"DataCampaignDashboardWhenToEmailEnum": "DataCampaignDashboardWhenToEmailEnum",
|
|
2174
2182
|
"DataCampaignGraphXDataDataTypeEnum": "DataCampaignGraphXDataDataTypeEnum",
|
|
2175
2183
|
"DataExplorerPredictionsResponseClassificationTypeEnum": "DataExplorerPredictionsResponseClassificationTypeEnum",
|
|
@@ -2212,6 +2220,7 @@ let enumsMap = {
|
|
|
2212
2220
|
"ImpulseInputBlockTypeEnum": "ImpulseInputBlockTypeEnum",
|
|
2213
2221
|
"ImpulseInputBlockResizeMethodEnum": "ImpulseInputBlockResizeMethodEnum",
|
|
2214
2222
|
"ImpulseInputBlockCropAnchorEnum": "ImpulseInputBlockCropAnchorEnum",
|
|
2223
|
+
"ImpulseInputBlockLabelingMethodMultiLabelTypeEnum": "ImpulseInputBlockLabelingMethodMultiLabelTypeEnum",
|
|
2215
2224
|
"InputBlockTypeEnum": "InputBlockTypeEnum",
|
|
2216
2225
|
"IntegrationSessionStatusStatusEnum": "IntegrationSessionStatusStatusEnum",
|
|
2217
2226
|
"JobParentTypeEnum": "JobParentTypeEnum",
|
|
@@ -2788,6 +2797,8 @@ let typeMap = {
|
|
|
2788
2797
|
"GetPerformanceCalibrationRawResultResponseAllOf": getPerformanceCalibrationRawResultResponseAllOf_1.GetPerformanceCalibrationRawResultResponseAllOf,
|
|
2789
2798
|
"GetPerformanceCalibrationStatusResponse": getPerformanceCalibrationStatusResponse_1.GetPerformanceCalibrationStatusResponse,
|
|
2790
2799
|
"GetPerformanceCalibrationStatusResponseAllOf": getPerformanceCalibrationStatusResponseAllOf_1.GetPerformanceCalibrationStatusResponseAllOf,
|
|
2800
|
+
"GetPostProcessingFeaturesForSampleResponse": getPostProcessingFeaturesForSampleResponse_1.GetPostProcessingFeaturesForSampleResponse,
|
|
2801
|
+
"GetPostProcessingFeaturesForSampleResponseAllOf": getPostProcessingFeaturesForSampleResponseAllOf_1.GetPostProcessingFeaturesForSampleResponseAllOf,
|
|
2791
2802
|
"GetPostProcessingResultsForSampleResponse": getPostProcessingResultsForSampleResponse_1.GetPostProcessingResultsForSampleResponse,
|
|
2792
2803
|
"GetPostProcessingResultsForSampleResponseAllOf": getPostProcessingResultsForSampleResponseAllOf_1.GetPostProcessingResultsForSampleResponseAllOf,
|
|
2793
2804
|
"GetPostProcessingResultsForSampleResponseAllOfJobIsRunning": getPostProcessingResultsForSampleResponseAllOfJobIsRunning_1.GetPostProcessingResultsForSampleResponseAllOfJobIsRunning,
|
|
@@ -2846,6 +2857,7 @@ let typeMap = {
|
|
|
2846
2857
|
"ImpulseDspBlockOrganization": impulseDspBlockOrganization_1.ImpulseDspBlockOrganization,
|
|
2847
2858
|
"ImpulseInputBlock": impulseInputBlock_1.ImpulseInputBlock,
|
|
2848
2859
|
"ImpulseInputBlockDatasetSubset": impulseInputBlockDatasetSubset_1.ImpulseInputBlockDatasetSubset,
|
|
2860
|
+
"ImpulseInputBlockLabelingMethodMultiLabel": impulseInputBlockLabelingMethodMultiLabel_1.ImpulseInputBlockLabelingMethodMultiLabel,
|
|
2849
2861
|
"ImpulseLearnBlock": impulseLearnBlock_1.ImpulseLearnBlock,
|
|
2850
2862
|
"ImpulsePostProcessingBlock": impulsePostProcessingBlock_1.ImpulsePostProcessingBlock,
|
|
2851
2863
|
"InferenceHistoryAggregate": inferenceHistoryAggregate_1.InferenceHistoryAggregate,
|