edge-impulse-api 1.92.22 → 1.92.24
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/library/sdk/api/rawDataApi.d.ts +25 -25
- package/build/library/sdk/api/rawDataApi.js +56 -56
- package/build/library/sdk/api/rawDataApi.js.map +1 -1
- package/build/library/sdk/model/{datasetStratificationOptions.d.ts → datasetSplitOptions.d.ts} +7 -9
- package/build/library/sdk/model/{datasetStratificationOptions.js → datasetSplitOptions.js} +15 -15
- package/build/library/sdk/model/datasetSplitOptions.js.map +1 -0
- package/build/library/sdk/model/datasetSplitOptionsStratifyBy.d.ts +35 -0
- package/build/library/sdk/model/datasetSplitOptionsStratifyBy.js +37 -0
- package/build/library/sdk/model/datasetSplitOptionsStratifyBy.js.map +1 -0
- package/build/library/sdk/model/{datasetStratificationPreviewData.d.ts → datasetSplitPreview.d.ts} +4 -3
- package/build/library/sdk/model/datasetSplitPreview.js +34 -0
- package/build/library/sdk/model/datasetSplitPreview.js.map +1 -0
- package/build/library/sdk/model/{datasetStratificationPreviewResponse.d.ts → datasetSplitPreviewResponse.d.ts} +3 -3
- package/build/library/sdk/model/{datasetStratificationPreviewResponse.js → datasetSplitPreviewResponse.js} +8 -8
- package/build/library/sdk/model/datasetSplitPreviewResponse.js.map +1 -0
- package/build/library/sdk/model/{datasetStratificationPreviewDataData.d.ts → datasetSplitPreviewResponseAllOf.d.ts} +3 -5
- package/build/library/sdk/model/{datasetStratificationPreviewData.js → datasetSplitPreviewResponseAllOf.js} +8 -8
- package/build/library/sdk/model/datasetSplitPreviewResponseAllOf.js.map +1 -0
- package/build/library/sdk/model/datasetSplitPreviewRow.d.ts +32 -0
- package/build/library/sdk/model/datasetSplitPreviewRow.js +55 -0
- package/build/library/sdk/model/datasetSplitPreviewRow.js.map +1 -0
- package/build/library/sdk/model/datasetSplitPreviewSection.d.ts +29 -0
- package/build/library/sdk/model/datasetSplitPreviewSection.js +44 -0
- package/build/library/sdk/model/datasetSplitPreviewSection.js.map +1 -0
- package/build/library/sdk/model/models.d.ts +7 -4
- package/build/library/sdk/model/models.js +22 -12
- package/build/library/sdk/model/models.js.map +1 -1
- package/build/library/sdk/model/projectInfoResponse.d.ts +2 -2
- package/build/library/sdk/model/projectInfoResponse.js +3 -3
- package/build/library/sdk/model/projectInfoResponse.js.map +1 -1
- package/build/library/sdk/model/projectInfoResponseAllOf.d.ts +2 -2
- package/build/library/sdk/model/projectInfoResponseAllOf.js +3 -3
- package/build/library/sdk/model/projectInfoResponseAllOf.js.map +1 -1
- package/package.json +2 -2
- package/build/library/sdk/model/datasetStratificationOptions.js.map +0 -1
- package/build/library/sdk/model/datasetStratificationPreviewData.js.map +0 -1
- package/build/library/sdk/model/datasetStratificationPreviewDataData.js +0 -44
- package/build/library/sdk/model/datasetStratificationPreviewDataData.js.map +0 -1
- package/build/library/sdk/model/datasetStratificationPreviewResponse.js.map +0 -1
package/build/library/sdk/model/{datasetStratificationOptions.d.ts → datasetSplitOptions.d.ts}
RENAMED
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
|
|
12
|
+
import { DatasetSplitOptionsStratifyBy } from './datasetSplitOptionsStratifyBy';
|
|
13
|
+
export declare class DatasetSplitOptions {
|
|
13
14
|
/**
|
|
14
15
|
* Proportion of the dataset to use for training.
|
|
15
16
|
*/
|
|
@@ -23,17 +24,14 @@ export declare class DatasetStratificationOptions {
|
|
|
23
24
|
*/
|
|
24
25
|
'validationSplitRatio'?: number;
|
|
25
26
|
/**
|
|
26
|
-
* Whether to stratify by label. If true, the label column will be used for stratification combined with metadataKeys. If false, only metadataKeys will be used.
|
|
27
|
-
*/
|
|
28
|
-
'stratifyByLabel': boolean;
|
|
29
|
-
/**
|
|
30
|
-
* List of metadata keys to use for stratification. If more than one, they will be combined into composite strata. If stratifyByLabel is true, the label column will be used as well.
|
|
31
|
-
*/
|
|
32
|
-
'metadataKeys': Array<string>;
|
|
33
|
-
/**
|
|
34
27
|
* Whether to exclude samples that are marked as disabled.
|
|
35
28
|
*/
|
|
36
29
|
'excludeDisabledSamples'?: boolean;
|
|
30
|
+
'stratifyBy'?: DatasetSplitOptionsStratifyBy;
|
|
31
|
+
/**
|
|
32
|
+
* List of metadata keys whose matching values must stay together in a single split. This is useful for leakage prevention across train, validation, and test.
|
|
33
|
+
*/
|
|
34
|
+
'keepTogetherMetadataKeys'?: Array<string>;
|
|
37
35
|
static discriminator: string | undefined;
|
|
38
36
|
static attributeTypeMap: Array<{
|
|
39
37
|
name: string;
|
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
* Do not edit the class manually.
|
|
12
12
|
*/
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.
|
|
15
|
-
class
|
|
14
|
+
exports.DatasetSplitOptions = void 0;
|
|
15
|
+
class DatasetSplitOptions {
|
|
16
16
|
static getAttributeTypeMap() {
|
|
17
|
-
return
|
|
17
|
+
return DatasetSplitOptions.attributeTypeMap;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
exports.DatasetSplitOptions = DatasetSplitOptions;
|
|
21
|
+
DatasetSplitOptions.discriminator = undefined;
|
|
22
|
+
DatasetSplitOptions.attributeTypeMap = [
|
|
23
23
|
{
|
|
24
24
|
"name": "trainingSplitRatio",
|
|
25
25
|
"baseName": "trainingSplitRatio",
|
|
@@ -36,19 +36,19 @@ DatasetStratificationOptions.attributeTypeMap = [
|
|
|
36
36
|
"type": "number"
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
|
-
"name": "
|
|
40
|
-
"baseName": "
|
|
39
|
+
"name": "excludeDisabledSamples",
|
|
40
|
+
"baseName": "excludeDisabledSamples",
|
|
41
41
|
"type": "boolean"
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
|
-
"name": "
|
|
45
|
-
"baseName": "
|
|
46
|
-
"type": "
|
|
44
|
+
"name": "stratifyBy",
|
|
45
|
+
"baseName": "stratifyBy",
|
|
46
|
+
"type": "DatasetSplitOptionsStratifyBy"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
|
-
"name": "
|
|
50
|
-
"baseName": "
|
|
51
|
-
"type": "
|
|
49
|
+
"name": "keepTogetherMetadataKeys",
|
|
50
|
+
"baseName": "keepTogetherMetadataKeys",
|
|
51
|
+
"type": "Array<string>"
|
|
52
52
|
}
|
|
53
53
|
];
|
|
54
|
-
//# sourceMappingURL=
|
|
54
|
+
//# sourceMappingURL=datasetSplitOptions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"datasetSplitOptions.js","sourceRoot":"","sources":["../../../../library/sdk/model/datasetSplitOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAIH,MAAa,mBAAmB;IAyD5B,MAAM,CAAC,mBAAmB;QACtB,OAAO,mBAAmB,CAAC,gBAAgB,CAAC;IAChD,CAAC;;AA3DL,kDA4DC;AArCU,iCAAa,GAAuB,SAAS,CAAC;AAE9C,oCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,sBAAsB;QAC9B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,wBAAwB;QAChC,UAAU,EAAE,wBAAwB;QACpC,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,+BAA+B;KAC1C;IACD;QACI,MAAM,EAAE,0BAA0B;QAClC,UAAU,EAAE,0BAA0B;QACtC,MAAM,EAAE,eAAe;KAC1B;CAAK,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
* Optional balancing targets for the split.
|
|
14
|
+
*/
|
|
15
|
+
export declare class DatasetSplitOptionsStratifyBy {
|
|
16
|
+
/**
|
|
17
|
+
* Whether to stratify by label.
|
|
18
|
+
*/
|
|
19
|
+
'label'?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Metadata keys to use as balancing targets. If more than one is selected, they are combined into composite assignment buckets.
|
|
22
|
+
*/
|
|
23
|
+
'metadataKeys'?: Array<string>;
|
|
24
|
+
static discriminator: string | undefined;
|
|
25
|
+
static attributeTypeMap: Array<{
|
|
26
|
+
name: string;
|
|
27
|
+
baseName: string;
|
|
28
|
+
type: string;
|
|
29
|
+
}>;
|
|
30
|
+
static getAttributeTypeMap(): {
|
|
31
|
+
name: string;
|
|
32
|
+
baseName: string;
|
|
33
|
+
type: string;
|
|
34
|
+
}[];
|
|
35
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
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.DatasetSplitOptionsStratifyBy = void 0;
|
|
15
|
+
/**
|
|
16
|
+
* Optional balancing targets for the split.
|
|
17
|
+
*/
|
|
18
|
+
class DatasetSplitOptionsStratifyBy {
|
|
19
|
+
static getAttributeTypeMap() {
|
|
20
|
+
return DatasetSplitOptionsStratifyBy.attributeTypeMap;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.DatasetSplitOptionsStratifyBy = DatasetSplitOptionsStratifyBy;
|
|
24
|
+
DatasetSplitOptionsStratifyBy.discriminator = undefined;
|
|
25
|
+
DatasetSplitOptionsStratifyBy.attributeTypeMap = [
|
|
26
|
+
{
|
|
27
|
+
"name": "label",
|
|
28
|
+
"baseName": "label",
|
|
29
|
+
"type": "boolean"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "metadataKeys",
|
|
33
|
+
"baseName": "metadataKeys",
|
|
34
|
+
"type": "Array<string>"
|
|
35
|
+
}
|
|
36
|
+
];
|
|
37
|
+
//# sourceMappingURL=datasetSplitOptionsStratifyBy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"datasetSplitOptionsStratifyBy.js","sourceRoot":"","sources":["../../../../library/sdk/model/datasetSplitOptionsStratifyBy.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAGH;;EAEE;AACF,MAAa,6BAA6B;IAwBtC,MAAM,CAAC,mBAAmB;QACtB,OAAO,6BAA6B,CAAC,gBAAgB,CAAC;IAC1D,CAAC;;AA1BL,sEA2BC;AAjBU,2CAAa,GAAuB,SAAS,CAAC;AAE9C,8CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,eAAe;KAC1B;CAAK,CAAC"}
|
package/build/library/sdk/model/{datasetStratificationPreviewData.d.ts → datasetSplitPreview.d.ts}
RENAMED
|
@@ -9,9 +9,10 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
13
|
-
export declare class
|
|
14
|
-
'
|
|
12
|
+
import { DatasetSplitPreviewSection } from './datasetSplitPreviewSection';
|
|
13
|
+
export declare class DatasetSplitPreview {
|
|
14
|
+
'assignmentPreview': DatasetSplitPreviewSection;
|
|
15
|
+
'balancePreviews': Array<DatasetSplitPreviewSection>;
|
|
15
16
|
static discriminator: string | undefined;
|
|
16
17
|
static attributeTypeMap: Array<{
|
|
17
18
|
name: string;
|
|
@@ -0,0 +1,34 @@
|
|
|
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.DatasetSplitPreview = void 0;
|
|
15
|
+
class DatasetSplitPreview {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return DatasetSplitPreview.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.DatasetSplitPreview = DatasetSplitPreview;
|
|
21
|
+
DatasetSplitPreview.discriminator = undefined;
|
|
22
|
+
DatasetSplitPreview.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "assignmentPreview",
|
|
25
|
+
"baseName": "assignmentPreview",
|
|
26
|
+
"type": "DatasetSplitPreviewSection"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "balancePreviews",
|
|
30
|
+
"baseName": "balancePreviews",
|
|
31
|
+
"type": "Array<DatasetSplitPreviewSection>"
|
|
32
|
+
}
|
|
33
|
+
];
|
|
34
|
+
//# sourceMappingURL=datasetSplitPreview.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"datasetSplitPreview.js","sourceRoot":"","sources":["../../../../library/sdk/model/datasetSplitPreview.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAIH,MAAa,mBAAmB;IAkB5B,MAAM,CAAC,mBAAmB;QACtB,OAAO,mBAAmB,CAAC,gBAAgB,CAAC;IAChD,CAAC;;AApBL,kDAqBC;AAjBU,iCAAa,GAAuB,SAAS,CAAC;AAE9C,oCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,4BAA4B;KACvC;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,mCAAmC;KAC9C;CAAK,CAAC"}
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
13
|
-
export declare class
|
|
12
|
+
import { DatasetSplitPreview } from './datasetSplitPreview';
|
|
13
|
+
export declare class DatasetSplitPreviewResponse {
|
|
14
14
|
/**
|
|
15
15
|
* Whether the operation succeeded
|
|
16
16
|
*/
|
|
@@ -19,7 +19,7 @@ export declare class DatasetStratificationPreviewResponse {
|
|
|
19
19
|
* Optional error description (set if \'success\' was false)
|
|
20
20
|
*/
|
|
21
21
|
'error'?: string;
|
|
22
|
-
'data':
|
|
22
|
+
'data': DatasetSplitPreview;
|
|
23
23
|
static discriminator: string | undefined;
|
|
24
24
|
static attributeTypeMap: Array<{
|
|
25
25
|
name: string;
|
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
* Do not edit the class manually.
|
|
12
12
|
*/
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.
|
|
15
|
-
class
|
|
14
|
+
exports.DatasetSplitPreviewResponse = void 0;
|
|
15
|
+
class DatasetSplitPreviewResponse {
|
|
16
16
|
static getAttributeTypeMap() {
|
|
17
|
-
return
|
|
17
|
+
return DatasetSplitPreviewResponse.attributeTypeMap;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
exports.DatasetSplitPreviewResponse = DatasetSplitPreviewResponse;
|
|
21
|
+
DatasetSplitPreviewResponse.discriminator = undefined;
|
|
22
|
+
DatasetSplitPreviewResponse.attributeTypeMap = [
|
|
23
23
|
{
|
|
24
24
|
"name": "success",
|
|
25
25
|
"baseName": "success",
|
|
@@ -33,7 +33,7 @@ DatasetStratificationPreviewResponse.attributeTypeMap = [
|
|
|
33
33
|
{
|
|
34
34
|
"name": "data",
|
|
35
35
|
"baseName": "data",
|
|
36
|
-
"type": "
|
|
36
|
+
"type": "DatasetSplitPreview"
|
|
37
37
|
}
|
|
38
38
|
];
|
|
39
|
-
//# sourceMappingURL=
|
|
39
|
+
//# sourceMappingURL=datasetSplitPreviewResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"datasetSplitPreviewResponse.js","sourceRoot":"","sources":["../../../../library/sdk/model/datasetSplitPreviewResponse.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAMH,MAAa,2BAA2B;IA8BpC,MAAM,CAAC,mBAAmB;QACtB,OAAO,2BAA2B,CAAC,gBAAgB,CAAC;IACxD,CAAC;;AAhCL,kEAiCC;AAtBU,yCAAa,GAAuB,SAAS,CAAC;AAE9C,4CAAgB,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,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,qBAAqB;KAChC;CAAK,CAAC"}
|
|
@@ -9,11 +9,9 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
'
|
|
15
|
-
'sampleCount': number;
|
|
16
|
-
'percentWithinGroup': number;
|
|
12
|
+
import { DatasetSplitPreview } from './datasetSplitPreview';
|
|
13
|
+
export declare class DatasetSplitPreviewResponseAllOf {
|
|
14
|
+
'data': DatasetSplitPreview;
|
|
17
15
|
static discriminator: string | undefined;
|
|
18
16
|
static attributeTypeMap: Array<{
|
|
19
17
|
name: string;
|
|
@@ -11,19 +11,19 @@
|
|
|
11
11
|
* Do not edit the class manually.
|
|
12
12
|
*/
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.
|
|
15
|
-
class
|
|
14
|
+
exports.DatasetSplitPreviewResponseAllOf = void 0;
|
|
15
|
+
class DatasetSplitPreviewResponseAllOf {
|
|
16
16
|
static getAttributeTypeMap() {
|
|
17
|
-
return
|
|
17
|
+
return DatasetSplitPreviewResponseAllOf.attributeTypeMap;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
exports.DatasetSplitPreviewResponseAllOf = DatasetSplitPreviewResponseAllOf;
|
|
21
|
+
DatasetSplitPreviewResponseAllOf.discriminator = undefined;
|
|
22
|
+
DatasetSplitPreviewResponseAllOf.attributeTypeMap = [
|
|
23
23
|
{
|
|
24
24
|
"name": "data",
|
|
25
25
|
"baseName": "data",
|
|
26
|
-
"type": "
|
|
26
|
+
"type": "DatasetSplitPreview"
|
|
27
27
|
}
|
|
28
28
|
];
|
|
29
|
-
//# sourceMappingURL=
|
|
29
|
+
//# sourceMappingURL=datasetSplitPreviewResponseAllOf.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"datasetSplitPreviewResponseAllOf.js","sourceRoot":"","sources":["../../../../library/sdk/model/datasetSplitPreviewResponseAllOf.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAIH,MAAa,gCAAgC;IAYzC,MAAM,CAAC,mBAAmB;QACtB,OAAO,gCAAgC,CAAC,gBAAgB,CAAC;IAC7D,CAAC;;AAdL,4EAeC;AAZU,8CAAa,GAAuB,SAAS,CAAC;AAE9C,iDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,qBAAqB;KAChC;CAAK,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
export declare class DatasetSplitPreviewRow {
|
|
13
|
+
'stratValue': string;
|
|
14
|
+
'splitCategory': DatasetSplitPreviewRowSplitCategoryEnum;
|
|
15
|
+
'sampleCount': number;
|
|
16
|
+
'percentWithinGroup': number;
|
|
17
|
+
'totalLengthMs'?: number;
|
|
18
|
+
'percentWithinGroupDuration'?: number;
|
|
19
|
+
static discriminator: string | undefined;
|
|
20
|
+
static attributeTypeMap: Array<{
|
|
21
|
+
name: string;
|
|
22
|
+
baseName: string;
|
|
23
|
+
type: string;
|
|
24
|
+
}>;
|
|
25
|
+
static getAttributeTypeMap(): {
|
|
26
|
+
name: string;
|
|
27
|
+
baseName: string;
|
|
28
|
+
type: string;
|
|
29
|
+
}[];
|
|
30
|
+
}
|
|
31
|
+
export type DatasetSplitPreviewRowSplitCategoryEnum = 'training' | 'testing' | 'validation';
|
|
32
|
+
export declare const DatasetSplitPreviewRowSplitCategoryEnumValues: string[];
|
|
@@ -0,0 +1,55 @@
|
|
|
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.DatasetSplitPreviewRowSplitCategoryEnumValues = exports.DatasetSplitPreviewRow = void 0;
|
|
15
|
+
class DatasetSplitPreviewRow {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return DatasetSplitPreviewRow.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.DatasetSplitPreviewRow = DatasetSplitPreviewRow;
|
|
21
|
+
DatasetSplitPreviewRow.discriminator = undefined;
|
|
22
|
+
DatasetSplitPreviewRow.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "stratValue",
|
|
25
|
+
"baseName": "stratValue",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "splitCategory",
|
|
30
|
+
"baseName": "splitCategory",
|
|
31
|
+
"type": "DatasetSplitPreviewRowSplitCategoryEnum"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "sampleCount",
|
|
35
|
+
"baseName": "sampleCount",
|
|
36
|
+
"type": "number"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "percentWithinGroup",
|
|
40
|
+
"baseName": "percentWithinGroup",
|
|
41
|
+
"type": "number"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "totalLengthMs",
|
|
45
|
+
"baseName": "totalLengthMs",
|
|
46
|
+
"type": "number"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "percentWithinGroupDuration",
|
|
50
|
+
"baseName": "percentWithinGroupDuration",
|
|
51
|
+
"type": "number"
|
|
52
|
+
}
|
|
53
|
+
];
|
|
54
|
+
exports.DatasetSplitPreviewRowSplitCategoryEnumValues = ['training', 'testing', 'validation'];
|
|
55
|
+
//# sourceMappingURL=datasetSplitPreviewRow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"datasetSplitPreviewRow.js","sourceRoot":"","sources":["../../../../library/sdk/model/datasetSplitPreviewRow.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAGH,MAAa,sBAAsB;IA0C/B,MAAM,CAAC,mBAAmB;QACtB,OAAO,sBAAsB,CAAC,gBAAgB,CAAC;IACnD,CAAC;;AA5CL,wDA6CC;AArCU,oCAAa,GAAuB,SAAS,CAAC;AAE9C,uCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,yCAAyC;KACpD;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,oBAAoB;QAChC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,4BAA4B;QACpC,UAAU,EAAE,4BAA4B;QACxC,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC;AASF,QAAA,6CAA6C,GAAa,CAAC,UAAU,EAAE,SAAS,EAAE,YAAY,CAAC,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
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 { DatasetSplitPreviewRow } from './datasetSplitPreviewRow';
|
|
13
|
+
export declare class DatasetSplitPreviewSection {
|
|
14
|
+
'title': string;
|
|
15
|
+
'summary'?: string;
|
|
16
|
+
'keyLabel': string;
|
|
17
|
+
'rows': Array<DatasetSplitPreviewRow>;
|
|
18
|
+
static discriminator: string | undefined;
|
|
19
|
+
static attributeTypeMap: Array<{
|
|
20
|
+
name: string;
|
|
21
|
+
baseName: string;
|
|
22
|
+
type: string;
|
|
23
|
+
}>;
|
|
24
|
+
static getAttributeTypeMap(): {
|
|
25
|
+
name: string;
|
|
26
|
+
baseName: string;
|
|
27
|
+
type: string;
|
|
28
|
+
}[];
|
|
29
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
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.DatasetSplitPreviewSection = void 0;
|
|
15
|
+
class DatasetSplitPreviewSection {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return DatasetSplitPreviewSection.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.DatasetSplitPreviewSection = DatasetSplitPreviewSection;
|
|
21
|
+
DatasetSplitPreviewSection.discriminator = undefined;
|
|
22
|
+
DatasetSplitPreviewSection.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "title",
|
|
25
|
+
"baseName": "title",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "summary",
|
|
30
|
+
"baseName": "summary",
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "keyLabel",
|
|
35
|
+
"baseName": "keyLabel",
|
|
36
|
+
"type": "string"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "rows",
|
|
40
|
+
"baseName": "rows",
|
|
41
|
+
"type": "Array<DatasetSplitPreviewRow>"
|
|
42
|
+
}
|
|
43
|
+
];
|
|
44
|
+
//# sourceMappingURL=datasetSplitPreviewSection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"datasetSplitPreviewSection.js","sourceRoot":"","sources":["../../../../library/sdk/model/datasetSplitPreviewSection.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAIH,MAAa,0BAA0B;IA8BnC,MAAM,CAAC,mBAAmB;QACtB,OAAO,0BAA0B,CAAC,gBAAgB,CAAC;IACvD,CAAC;;AAhCL,gEAiCC;AA3BU,wCAAa,GAAuB,SAAS,CAAC;AAE9C,2CAAgB,GAA0D;IAC7E;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,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,+BAA+B;KAC1C;CAAK,CAAC"}
|
|
@@ -264,10 +264,13 @@ export * from './dataExplorerPredictionsResponseAllOf';
|
|
|
264
264
|
export * from './dataExplorerSettings';
|
|
265
265
|
export * from './datasetRatioData';
|
|
266
266
|
export * from './datasetRatioDataRatio';
|
|
267
|
-
export * from './
|
|
268
|
-
export * from './
|
|
269
|
-
export * from './
|
|
270
|
-
export * from './
|
|
267
|
+
export * from './datasetSplitOptions';
|
|
268
|
+
export * from './datasetSplitOptionsStratifyBy';
|
|
269
|
+
export * from './datasetSplitPreview';
|
|
270
|
+
export * from './datasetSplitPreviewResponse';
|
|
271
|
+
export * from './datasetSplitPreviewResponseAllOf';
|
|
272
|
+
export * from './datasetSplitPreviewRow';
|
|
273
|
+
export * from './datasetSplitPreviewSection';
|
|
271
274
|
export * from './deletePortalFileRequest';
|
|
272
275
|
export * from './deleteTestUserRequest';
|
|
273
276
|
export * from './deleteTestUserResponse';
|
|
@@ -281,10 +281,13 @@ __exportStar(require("./dataExplorerPredictionsResponseAllOf"), exports);
|
|
|
281
281
|
__exportStar(require("./dataExplorerSettings"), exports);
|
|
282
282
|
__exportStar(require("./datasetRatioData"), exports);
|
|
283
283
|
__exportStar(require("./datasetRatioDataRatio"), exports);
|
|
284
|
-
__exportStar(require("./
|
|
285
|
-
__exportStar(require("./
|
|
286
|
-
__exportStar(require("./
|
|
287
|
-
__exportStar(require("./
|
|
284
|
+
__exportStar(require("./datasetSplitOptions"), exports);
|
|
285
|
+
__exportStar(require("./datasetSplitOptionsStratifyBy"), exports);
|
|
286
|
+
__exportStar(require("./datasetSplitPreview"), exports);
|
|
287
|
+
__exportStar(require("./datasetSplitPreviewResponse"), exports);
|
|
288
|
+
__exportStar(require("./datasetSplitPreviewResponseAllOf"), exports);
|
|
289
|
+
__exportStar(require("./datasetSplitPreviewRow"), exports);
|
|
290
|
+
__exportStar(require("./datasetSplitPreviewSection"), exports);
|
|
288
291
|
__exportStar(require("./deletePortalFileRequest"), exports);
|
|
289
292
|
__exportStar(require("./deleteTestUserRequest"), exports);
|
|
290
293
|
__exportStar(require("./deleteTestUserResponse"), exports);
|
|
@@ -1445,10 +1448,13 @@ const dataExplorerPredictionsResponseAllOf_1 = require("./dataExplorerPrediction
|
|
|
1445
1448
|
const dataExplorerSettings_1 = require("./dataExplorerSettings");
|
|
1446
1449
|
const datasetRatioData_1 = require("./datasetRatioData");
|
|
1447
1450
|
const datasetRatioDataRatio_1 = require("./datasetRatioDataRatio");
|
|
1448
|
-
const
|
|
1449
|
-
const
|
|
1450
|
-
const
|
|
1451
|
-
const
|
|
1451
|
+
const datasetSplitOptions_1 = require("./datasetSplitOptions");
|
|
1452
|
+
const datasetSplitOptionsStratifyBy_1 = require("./datasetSplitOptionsStratifyBy");
|
|
1453
|
+
const datasetSplitPreview_1 = require("./datasetSplitPreview");
|
|
1454
|
+
const datasetSplitPreviewResponse_1 = require("./datasetSplitPreviewResponse");
|
|
1455
|
+
const datasetSplitPreviewResponseAllOf_1 = require("./datasetSplitPreviewResponseAllOf");
|
|
1456
|
+
const datasetSplitPreviewRow_1 = require("./datasetSplitPreviewRow");
|
|
1457
|
+
const datasetSplitPreviewSection_1 = require("./datasetSplitPreviewSection");
|
|
1452
1458
|
const deletePortalFileRequest_1 = require("./deletePortalFileRequest");
|
|
1453
1459
|
const deleteTestUserRequest_1 = require("./deleteTestUserRequest");
|
|
1454
1460
|
const deleteTestUserResponse_1 = require("./deleteTestUserResponse");
|
|
@@ -2350,6 +2356,7 @@ const enumsMap = {
|
|
|
2350
2356
|
"DataExplorerPredictionsResponseAllOfClassificationTypeEnum": "DataExplorerPredictionsResponseAllOfClassificationTypeEnum",
|
|
2351
2357
|
"DataExplorerSettingsPresetEnum": "DataExplorerSettingsPresetEnum",
|
|
2352
2358
|
"DataExplorerSettingsDimensionalityReductionTechniqueEnum": "DataExplorerSettingsDimensionalityReductionTechniqueEnum",
|
|
2359
|
+
"DatasetSplitPreviewRowSplitCategoryEnum": "DatasetSplitPreviewRowSplitCategoryEnum",
|
|
2353
2360
|
"DeployPretrainedModelInputAudioInputTypeEnum": "DeployPretrainedModelInputAudioInputTypeEnum",
|
|
2354
2361
|
"DeployPretrainedModelInputImageInputTypeEnum": "DeployPretrainedModelInputImageInputTypeEnum",
|
|
2355
2362
|
"DeployPretrainedModelInputOtherInputTypeEnum": "DeployPretrainedModelInputOtherInputTypeEnum",
|
|
@@ -2768,10 +2775,13 @@ const typeMap = {
|
|
|
2768
2775
|
"DataExplorerSettings": dataExplorerSettings_1.DataExplorerSettings,
|
|
2769
2776
|
"DatasetRatioData": datasetRatioData_1.DatasetRatioData,
|
|
2770
2777
|
"DatasetRatioDataRatio": datasetRatioDataRatio_1.DatasetRatioDataRatio,
|
|
2771
|
-
"
|
|
2772
|
-
"
|
|
2773
|
-
"
|
|
2774
|
-
"
|
|
2778
|
+
"DatasetSplitOptions": datasetSplitOptions_1.DatasetSplitOptions,
|
|
2779
|
+
"DatasetSplitOptionsStratifyBy": datasetSplitOptionsStratifyBy_1.DatasetSplitOptionsStratifyBy,
|
|
2780
|
+
"DatasetSplitPreview": datasetSplitPreview_1.DatasetSplitPreview,
|
|
2781
|
+
"DatasetSplitPreviewResponse": datasetSplitPreviewResponse_1.DatasetSplitPreviewResponse,
|
|
2782
|
+
"DatasetSplitPreviewResponseAllOf": datasetSplitPreviewResponseAllOf_1.DatasetSplitPreviewResponseAllOf,
|
|
2783
|
+
"DatasetSplitPreviewRow": datasetSplitPreviewRow_1.DatasetSplitPreviewRow,
|
|
2784
|
+
"DatasetSplitPreviewSection": datasetSplitPreviewSection_1.DatasetSplitPreviewSection,
|
|
2775
2785
|
"DeletePortalFileRequest": deletePortalFileRequest_1.DeletePortalFileRequest,
|
|
2776
2786
|
"DeleteTestUserRequest": deleteTestUserRequest_1.DeleteTestUserRequest,
|
|
2777
2787
|
"DeleteTestUserResponse": deleteTestUserResponse_1.DeleteTestUserResponse,
|