edge-impulse-api 1.93.27 → 1.93.29
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/browser/edge-impulse-api.d.ts +71 -3
- package/build/browser/edge-impulse-api.js +76 -0
- package/build/browser/edge-impulse-api.js.map +1 -1
- package/build/library/sdk/api/organizationBlocksApi.d.ts +14 -0
- package/build/library/sdk/api/organizationBlocksApi.js +76 -0
- package/build/library/sdk/api/organizationBlocksApi.js.map +1 -1
- package/build/library/sdk/model/addOrganizationTransferLearningBlockRequest.d.ts +4 -0
- package/build/library/sdk/model/organizationTransferLearningBlock.d.ts +4 -0
- package/build/library/sdk/model/projectDataSummary.d.ts +3 -0
- package/build/library/sdk/model/projectInfoResponse.d.ts +42 -3
- package/build/library/sdk/model/projectInfoResponse.js.map +1 -1
- package/build/library/sdk/model/transferLearningModel.d.ts +4 -0
- package/package.json +1 -1
|
@@ -40,9 +40,48 @@ export type ProjectInfoResponse = {
|
|
|
40
40
|
dataSummary: ProjectDataSummary;
|
|
41
41
|
dataSummaryPerCategory: {
|
|
42
42
|
training: ProjectDataSummary;
|
|
43
|
-
testing: ProjectDataSummary
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
testing: ProjectDataSummary & {
|
|
44
|
+
/**
|
|
45
|
+
* Total length (in ms.) of all data in the testing set
|
|
46
|
+
*/
|
|
47
|
+
totalLengthMs: number;
|
|
48
|
+
/**
|
|
49
|
+
* Labels in the testing set
|
|
50
|
+
*/
|
|
51
|
+
labels: string[];
|
|
52
|
+
/**
|
|
53
|
+
* Number of files in the testing set
|
|
54
|
+
*/
|
|
55
|
+
dataCount: number;
|
|
56
|
+
};
|
|
57
|
+
validation: ProjectDataSummary & {
|
|
58
|
+
/**
|
|
59
|
+
* Total length (in ms.) of all data in the validation set
|
|
60
|
+
*/
|
|
61
|
+
totalLengthMs: number;
|
|
62
|
+
/**
|
|
63
|
+
* Labels in the validation set
|
|
64
|
+
*/
|
|
65
|
+
labels: string[];
|
|
66
|
+
/**
|
|
67
|
+
* Number of files in the validation set
|
|
68
|
+
*/
|
|
69
|
+
dataCount: number;
|
|
70
|
+
};
|
|
71
|
+
postProcessing: ProjectDataSummary & {
|
|
72
|
+
/**
|
|
73
|
+
* Total length (in ms.) of all data in the post-processing set
|
|
74
|
+
*/
|
|
75
|
+
totalLengthMs: number;
|
|
76
|
+
/**
|
|
77
|
+
* Labels in the post-processing set
|
|
78
|
+
*/
|
|
79
|
+
labels: string[];
|
|
80
|
+
/**
|
|
81
|
+
* Number of files in the post-processing set
|
|
82
|
+
*/
|
|
83
|
+
dataCount: number;
|
|
84
|
+
};
|
|
46
85
|
};
|
|
47
86
|
computeTime: {
|
|
48
87
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"projectInfoResponse.js","sourceRoot":"","sources":["../../../../library/sdk/model/projectInfoResponse.ts"],"names":[],"mappings":";AAAA,yDAAyD;;;
|
|
1
|
+
{"version":3,"file":"projectInfoResponse.js","sourceRoot":"","sources":["../../../../library/sdk/model/projectInfoResponse.ts"],"names":[],"mappings":";AAAA,yDAAyD;;;AAiR5C,QAAA,6DAA6D,GAAa,CAAE,MAAM,EAAE,MAAM,CAAE,CAAC;AAG7F,QAAA,sDAAsD,GAAa,CAAE,eAAe,EAAE,YAAY,EAAE,QAAQ,EAAE,YAAY,EAAE,eAAe,EAAE,QAAQ,EAAE,SAAS,CAAE,CAAC"}
|
|
@@ -23,6 +23,10 @@ export type TransferLearningModel = {
|
|
|
23
23
|
* URL to the source code of this custom learn block.
|
|
24
24
|
*/
|
|
25
25
|
repositoryUrl?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Unique stable string key used to create and find this custom block.
|
|
28
|
+
*/
|
|
29
|
+
customBlockRef?: string;
|
|
26
30
|
author: string;
|
|
27
31
|
blockType: BlockType;
|
|
28
32
|
customParameters?: DSPGroupItem[];
|