@neuracore/types 6.9.0 → 6.10.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.
|
@@ -117,6 +117,8 @@ export interface DataItemStats {
|
|
|
117
117
|
count: unknown[] | null;
|
|
118
118
|
min: unknown[] | null;
|
|
119
119
|
max: unknown[] | null;
|
|
120
|
+
q01: unknown[] | null;
|
|
121
|
+
q99: unknown[] | null;
|
|
120
122
|
}
|
|
121
123
|
/**
|
|
122
124
|
* Custom 1D numerical data for specialized applications.
|
|
@@ -1722,7 +1724,8 @@ export declare enum TrainingJobStatus {
|
|
|
1722
1724
|
RUNNING = "RUNNING",
|
|
1723
1725
|
COMPLETED = "COMPLETED",
|
|
1724
1726
|
FAILED = "FAILED",
|
|
1725
|
-
CANCELLED = "CANCELLED"
|
|
1727
|
+
CANCELLED = "CANCELLED",
|
|
1728
|
+
CANCELLING = "CANCELLING"
|
|
1726
1729
|
}
|
|
1727
1730
|
/**
|
|
1728
1731
|
* GPU types available for training and deployment.
|
package/dist/neuracore_types.js
CHANGED
|
@@ -339,6 +339,7 @@ var TrainingJobStatus;
|
|
|
339
339
|
TrainingJobStatus["COMPLETED"] = "COMPLETED";
|
|
340
340
|
TrainingJobStatus["FAILED"] = "FAILED";
|
|
341
341
|
TrainingJobStatus["CANCELLED"] = "CANCELLED";
|
|
342
|
+
TrainingJobStatus["CANCELLING"] = "CANCELLING";
|
|
342
343
|
})(TrainingJobStatus || (exports.TrainingJobStatus = TrainingJobStatus = {}));
|
|
343
344
|
/**
|
|
344
345
|
* GPU types available for training and deployment.
|