@neuracore/types 11.1.0 → 11.2.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.
@@ -1112,6 +1112,10 @@ export interface HandshakeMessage {
1112
1112
  * types to names
1113
1113
  * output_cross_embodiment_description: Mapping of robot to output data
1114
1114
  * types to names
1115
+ * resume_from_job_id: Identifier of the training job whose checkpoint this
1116
+ * job continues from, if any.
1117
+ * resume_from_checkpoint: Name of the checkpoint file to continue from,
1118
+ * resolved when the job was requested.
1115
1119
  */
1116
1120
  export interface InternalStartTrainingJobRequest {
1117
1121
  org_id: string;
@@ -1141,6 +1145,8 @@ export interface InternalStartTrainingJobRequest {
1141
1145
  };
1142
1146
  };
1143
1147
  };
1148
+ resume_from_job_id?: string | null;
1149
+ resume_from_checkpoint?: string | null;
1144
1150
  }
1145
1151
  /**
1146
1152
  * Details for synchronization requests.
@@ -1767,6 +1773,10 @@ export interface TracesMetadataRequest {
1767
1773
  * gpu_type: The type of GPU used for the job.
1768
1774
  * num_gpus: The number of GPUs used for the job.
1769
1775
  * resumed_at: The time the job was resumed, if applicable.
1776
+ * resumed_from_job_id: The ID of the job whose checkpoint this job started
1777
+ * from, if applicable.
1778
+ * resumed_from_checkpoint: The name of the checkpoint this job started
1779
+ * from, if applicable.
1770
1780
  * previous_training_time: The time spent on the previous training, if applicable.
1771
1781
  * error: Any error message associated with the job, if applicable.
1772
1782
  * resume_points: List of timestamps where the job can be resumed.
@@ -1795,6 +1805,8 @@ export interface TrainingJob {
1795
1805
  num_gpus: number;
1796
1806
  disk_size_gb: number;
1797
1807
  resumed_at?: number | null;
1808
+ resumed_from_job_id?: string | null;
1809
+ resumed_from_checkpoint?: string | null;
1798
1810
  previous_training_time?: number | null;
1799
1811
  error?: string | null;
1800
1812
  resume_points: number[];
@@ -1829,6 +1841,8 @@ export interface TrainingJob {
1829
1841
  * data types to names
1830
1842
  * output_cross_embodiment_description: The robust mapping of robot to output
1831
1843
  * data types to names
1844
+ * resume_from_job_id: Identifier of a completed training job whose latest
1845
+ * checkpoint this job continues from. None trains from scratch.
1832
1846
  */
1833
1847
  export interface TrainingJobRequest {
1834
1848
  dataset_id: string;
@@ -1855,6 +1869,7 @@ export interface TrainingJobRequest {
1855
1869
  };
1856
1870
  };
1857
1871
  };
1872
+ resume_from_job_id?: string | null;
1858
1873
  }
1859
1874
  /**
1860
1875
  * Enumeration of supported data types in the Neuracore system.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "11.1.0",
3
+ "version": "11.2.0",
4
4
  "description": "Shared TypeScript type definitions for Neuracore robotics platform",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",