@neuracore/types 7.2.0 → 7.3.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.
|
@@ -971,6 +971,7 @@ export interface InternalStartTrainingJobRequest {
|
|
|
971
971
|
};
|
|
972
972
|
gpu_type: GPUType;
|
|
973
973
|
num_gpus: number;
|
|
974
|
+
disk_size_gb?: number;
|
|
974
975
|
synchronization_details: SynchronizationDetails;
|
|
975
976
|
input_cross_embodiment_description: {
|
|
976
977
|
[k: string]: {
|
|
@@ -1584,6 +1585,7 @@ export interface TrainingJob {
|
|
|
1584
1585
|
};
|
|
1585
1586
|
gpu_type: GPUType2;
|
|
1586
1587
|
num_gpus: number;
|
|
1588
|
+
disk_size_gb: number;
|
|
1587
1589
|
resumed_at?: number | null;
|
|
1588
1590
|
previous_training_time?: number | null;
|
|
1589
1591
|
error?: string | null;
|
|
@@ -1629,6 +1631,7 @@ export interface TrainingJobRequest {
|
|
|
1629
1631
|
};
|
|
1630
1632
|
gpu_type: GPUType;
|
|
1631
1633
|
num_gpus: number;
|
|
1634
|
+
disk_size_gb?: number;
|
|
1632
1635
|
synchronization_details: SynchronizationDetails;
|
|
1633
1636
|
input_cross_embodiment_description: {
|
|
1634
1637
|
[k: string]: {
|