Trainings
DNA-style Training / TrainedModel objects for MMPV (multiple-models-per-version).
A Version owns many Trainings; each Training owns one or more Models (a NAS run
owns many). These objects couple to the v2 trainings adapter (rfapi), which
mirrors the platform's DNA operations 1:1 — the legacy-vs-MMPV branch lives on
the backend, never here.
TrainedModel
¶
A single trained model produced by a Training.
Wraps an inference-style model id of either form — <dataset>/<version>
(SMPV) or <workspace>/<model-slug> (MMPV). Inference goes to the
serverless host by that id (which the server resolves to the model and its
task); weights download keys off the id's addressable segment.
Source code in roboflow/core/training.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | |
download(format='pt', location='.')
¶
Download this model's PyTorch weights to location/weights.pt.
Source code in roboflow/core/training.py
162 163 164 165 166 167 168 169 170 171 172 173 174 175 | |
poll_for_video_results(job_id=None)
¶
Check once for this model's video inference results (DNA-era equivalent
of the legacy version.model.poll_for_video_results).
Returns {} while the job is still running. Defaults to the job started
by the most recent :meth:predict_video call on this object.
Source code in roboflow/core/training.py
143 144 145 146 147 148 149 150 | |
poll_until_video_results(job_id=None)
¶
Block until this model's video inference job completes, returning the
results (DNA-era equivalent of the legacy
version.model.poll_until_video_results).
Defaults to the job started by the most recent :meth:predict_video call
on this object.
Source code in roboflow/core/training.py
152 153 154 155 156 157 158 159 160 | |
predict(image_path, hosted=False, confidence=40, overlap=30, format='json', **kwargs)
¶
Run hosted inference on an image by this model's id.
The id is passed straight to serverless, which resolves the model and
its task. Returns a PredictionGroup. Set hosted=True when
image_path is a public URL.
Source code in roboflow/core/training.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | |
predict_video(video_path, fps=5, additional_models=None, prediction_type='batch-video')
¶
Run hosted video inference for this model (DNA-era equivalent of the
legacy version.model.predict_video).
Delegates to the task-appropriate legacy inference model built from this
model's id, so a TrainedModel can do everything the old
version.model could. Returns (job_id, signed_url, expires); poll
with :meth:poll_until_video_results on the same object.
NOTE: the legacy /videoinfer payload is keyed by <dataset>/<version>.
For MMPV models addressed by <workspace>/<model-slug> this routes the
slug through as the version segment; verify against staging before relying
on it for slug-addressed models.
Source code in roboflow/core/training.py
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | |
Training
¶
One training run on a dataset version.
A version may own many trainings; a NAS run produces many models. Couples to
the v2 trainings adapter — .models resolves the run's produced models via
trainings.get.
Source code in roboflow/core/training.py
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 | |
models
property
¶
The models this run produced (DNA trainings.get → models[]).
cancel(continue_if_no_refund=False)
¶
Cancel this run immediately (DNA trainings.cancel).
Source code in roboflow/core/training.py
247 248 249 250 251 252 253 254 255 256 | |
refresh()
¶
Re-read this run's status/results from the backend in place.
Source code in roboflow/core/training.py
233 234 235 236 237 238 239 240 241 242 243 244 245 | |
stop()
¶
Request a graceful early stop on this run (DNA trainings.stop).
Source code in roboflow/core/training.py
258 259 260 261 262 | |