diff --git a/.gitignore b/.gitignore index 08344c13..ad5cf5b5 100644 --- a/.gitignore +++ b/.gitignore @@ -82,6 +82,12 @@ analysis_out/op/* # becomes unrecoverable rather than merely inconvenient. Append-only; never rewrite # a past line, since each one is a measurement. !analysis_out/usage_log.jsonl +# The compute half of the same record (scripts/analysis/slurm_usage.py, #143): one +# row per Slurm job allocation -- elapsed, GPUs, GPU-hours, and dollars on the +# clusters that bill. Unlike the token ledger this one is partly back-fillable from +# `sacct`, but only while the cluster still retains the job records. Same rules: +# append-only, one row per (cluster, job id, start), last row per key wins. +!analysis_out/compute_log.jsonl # Crop-window sizing eval summaries (#114): per-rule containment/context stats plus # the sha256 of the per-box CSV each summarizes (the CSVs themselves regenerate). # The glob also covers per-bundle runs against box_gallery extent gold (#116), diff --git a/CLAUDE.md b/CLAUDE.md index 35d27dac..b3b602e2 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -53,6 +53,50 @@ When a task involves human raters, assume from the start that **a second rater w the two will be compared** — per-rater files, a stable item list, and an agreement script, not a single blob that has to be reverse-engineered later. +## Record what every experiment cost — time *and* money — as it runs + +**Any experiment on a non-free model or non-free compute records both its wall-clock time and +its spend, at the time it runs.** A paper reports cost alongside accuracy, and neither number +survives being left for later: a re-run reads the detection cache, makes no calls, and returns +in seconds, so it reproduces neither the token counts nor the runtime. + +- **Paid APIs.** `compare.py` appends one row per leg to `analysis_out/usage_log.jsonl` + (committed): tokens, dollars, wall-clock, seconds-per-panorama, the rig, and the build that + actually served it. `--usage-log none` requires `--allow-unrecorded-spend`. Prices live in + `scripts/model_comparison/pricing.py` and are **verified-only** — each rate carries the date + it was checked and, for compute, the page it came from, never memory. +- **Free models still cost time.** OWLv2, Grounding DINO, Qwen, Molmo and the YOLO arms bill no + tokens and burn real GPU-hours. They write the same row with `paid: false`, because "what did + this cost" has two units and only one of them is dollars. +- **Cluster jobs.** `scripts/analysis/slurm_usage.py` scrapes `sacct` into + `analysis_out/compute_log.jsonl` — elapsed, GPUs, GPU-hours, and dollars on the clusters that + bill. Run it after a cluster run, not at the end of the project. +- **A ledger is not a commit, and it has to outlive the run.** Both default into the **main + checkout**, never a scratch worktree: a worktree is deleted when its session ends, and that is + exactly how one leg spent $70.41 and left no row (#139, #143). Committing the ledger is part + of finishing the experiment. +- **A missing record is an emergency with a deadline.** Vertex telemetry retains ~6 weeks + (`scripts/analysis/vertex_usage.py`) and `sacct` retention is finite too, so recover a missing + number the day you notice it. Recovery is per-model per-day, so **per-split attribution is + permanently gone** even after a successful pull — layer 3 rescues the total, never the + breakdown. +- **A recovered number belongs in the ledger, and belongs marked.** Write it as a row with + `kind: "recovered"` (`rampnet.ledger.RECOVERED`) carrying the billed total *minus what the + surviving rows already account for*, so the ledger sums to the bill rather than double + counting. Two rules follow and they pull opposite ways: **cost totals include it** — omitting + #139's $70.41 under-reported the benchmark's Claude spend by ~200x — but **reconciliation must + never count it as logged**, because a recovered row was read off that same bill, so counting it + that way compares the bill against itself and reports `ok` for the exact gap the check exists to + find. `--reconcile` totals it in a separate column and subtracts it before the verdict, so a gap + already found and written down reads as `ok (1 recovered)` and only the unexplained remainder is + called out — a check that reports the same handled gap as an emergency every run is a check + people stop reading. A recovered row carries no `bundle` and no `elapsed_s`; those were never in + the telemetry. +- **Token counts and GPU-hours are the durable facts; dollars are estimates** and the billing + console is authoritative. Estimate input tokens from geometry when you must (deterministic — + it came within 0.02% for a 984-panorama leg); **never estimate output**, which is thinking + plus box count and ran 62% high when tried. + ## Environment & commands - Conda env (Linux + CUDA 11.8; env file pins linux-64 packages — this does not run natively on Windows): diff --git a/analysis_out/compute_log.jsonl b/analysis_out/compute_log.jsonl new file mode 100644 index 00000000..7420ab90 --- /dev/null +++ b/analysis_out/compute_log.jsonl @@ -0,0 +1,3991 @@ +{"cluster": "klone", "job_id": "36808185", "job_name": "rampnet-eval", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "CANCELLED by 197096", "submit": "2026-07-02T07:39:28", "start": "2026-07-02T07:39:32", "end": "2026-07-02T09:37:09", "elapsed_s": 7057, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 1.9603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "36813338", "job_name": "rampnet-eval", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-02T09:41:06", "start": "2026-07-02T09:41:08", "end": "2026-07-02T10:04:12", "elapsed_s": 1384, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.3844, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37434076", "job_name": "sal-richmond", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "FAILED", "submit": "2026-07-21T14:56:17", "start": "2026-07-21T14:56:49", "end": "2026-07-21T15:00:02", "elapsed_s": 193, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0536, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37434773", "job_name": "sal-richmond", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-21T15:06:44", "start": "2026-07-21T15:07:37", "end": "2026-07-21T16:10:30", "elapsed_s": 3773, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.0481, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37557732", "job_name": "sal-clovis", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-22T21:37:09", "start": "2026-07-22T21:37:15", "end": "2026-07-23T05:41:43", "elapsed_s": 29068, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 8.0744, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37595593", "job_name": "qwen_smoke", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T16:50:09", "start": "2026-07-23T16:50:47", "end": "2026-07-23T16:54:35", "elapsed_s": 228, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0633, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37595890", "job_name": "qwen_smoke", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T16:58:29", "start": "2026-07-23T16:58:30", "end": "2026-07-23T17:03:56", "elapsed_s": 326, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0906, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37596124", "job_name": "qwen_smoke", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T17:04:03", "start": "2026-07-23T17:04:20", "end": "2026-07-23T17:04:28", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37596141", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T17:04:48", "start": "2026-07-23T17:04:49", "end": "2026-07-23T17:20:32", "elapsed_s": 943, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2619, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37596142", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T17:04:48", "start": "2026-07-23T17:19:51", "end": "2026-07-23T17:38:47", "elapsed_s": 1136, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37597088", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-23T17:32:26", "start": "2026-07-23T17:39:42", "end": "2026-07-23T18:12:12", "elapsed_s": 1950, "nodes": 2, "gpus": 2, "gpu_type": "l40s", "gpu_hours": 1.0833, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37597089", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-23T17:32:26", "start": "None", "end": "2026-07-23T18:12:12", "elapsed_s": 0, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37598564", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T18:13:04", "start": "2026-07-23T18:13:39", "end": "2026-07-23T18:41:02", "elapsed_s": 1643, "nodes": 1, "gpus": 2, "gpu_type": "l40s", "gpu_hours": 0.9128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37598565", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T18:13:04", "start": "2026-07-23T18:41:09", "end": "2026-07-23T19:12:53", "elapsed_s": 1904, "nodes": 1, "gpus": 2, "gpu_type": "l40s", "gpu_hours": 1.0578, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37604318", "job_name": "open_smoke", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T20:39:37", "start": "2026-07-23T20:39:42", "end": "2026-07-23T20:45:43", "elapsed_s": 361, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37604320", "job_name": "open_overlay", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T20:39:37", "start": "2026-07-23T20:40:24", "end": "2026-07-23T20:44:33", "elapsed_s": 249, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0692, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37604867", "job_name": "open_rich", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T20:45:14", "start": "2026-07-23T20:45:15", "end": "2026-07-23T20:58:22", "elapsed_s": 787, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37604868", "job_name": "open_bend", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T20:45:14", "start": "2026-07-23T20:45:49", "end": "2026-07-23T21:01:02", "elapsed_s": 913, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37605324", "job_name": "molmo_overlay", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T20:57:12", "start": "2026-07-23T20:59:20", "end": "2026-07-23T21:05:33", "elapsed_s": 373, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37605851", "job_name": "molmo_raw", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T21:08:06", "start": "2026-07-23T21:08:14", "end": "2026-07-23T21:14:16", "elapsed_s": 362, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37606206", "job_name": "molmo_ov2", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T21:21:04", "start": "2026-07-23T21:21:17", "end": "2026-07-23T21:27:35", "elapsed_s": 378, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.105, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37606420", "job_name": "molmo_rich", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T21:29:18", "start": "2026-07-23T21:30:03", "end": "2026-07-23T22:00:56", "elapsed_s": 1853, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37606421", "job_name": "molmo_bend", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-23T21:29:18", "start": "2026-07-23T21:30:13", "end": "2026-07-23T21:52:32", "elapsed_s": 1339, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3719, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37620046", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-24T08:48:20", "start": "2026-07-24T09:09:03", "end": "2026-07-24T09:21:42", "elapsed_s": 759, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37620047", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-24T08:48:20", "start": "2026-07-24T09:09:52", "end": "2026-07-24T09:21:17", "elapsed_s": 685, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1903, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37620048", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-24T08:48:20", "start": "2026-07-24T08:48:27", "end": "2026-07-24T09:08:34", "elapsed_s": 1207, "nodes": 1, "gpus": 2, "gpu_type": "l40s", "gpu_hours": 0.6706, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37620049", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-24T08:48:20", "start": "2026-07-24T09:22:17", "end": "2026-07-24T09:45:24", "elapsed_s": 1387, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3853, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37622732", "job_name": "sal-budapest", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-24T11:31:43", "start": "2026-07-24T11:31:57", "end": "2026-07-24T13:37:07", "elapsed_s": 7510, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.0861, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37623902", "job_name": "sal-morgantown", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-24T12:08:51", "start": "2026-07-24T13:37:57", "end": "2026-07-24T19:19:30", "elapsed_s": 20493, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 5.6925, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37649635", "job_name": "yolo_data_dl", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-24T21:37:40", "start": "2026-07-24T21:38:17", "end": "2026-07-24T23:58:40", "elapsed_s": 8423, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.3397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37676255", "job_name": "gold_bundle", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-25T06:32:09", "start": "2026-07-25T06:32:10", "end": "2026-07-25T06:58:54", "elapsed_s": 1604, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4456, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37676384", "job_name": "yolo_boxab", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-25T06:34:02", "start": "2026-07-25T06:34:03", "end": "2026-07-25T06:34:46", "elapsed_s": 43, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37677130", "job_name": "yolo_prep", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-25T06:41:41", "start": "2026-07-25T06:41:43", "end": "2026-07-25T09:28:46", "elapsed_s": 10023, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.7842, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37680860", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-25T07:10:33", "start": "2026-07-25T07:10:36", "end": "2026-07-25T08:43:39", "elapsed_s": 5583, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.5508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37680861", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-25T07:10:33", "start": "2026-07-25T08:43:43", "end": "2026-07-25T10:41:10", "elapsed_s": 7047, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.9575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37680862", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-25T07:10:33", "start": "None", "end": "2026-07-25T10:42:41", "elapsed_s": 0, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37680863", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-25T07:10:33", "start": "2026-07-25T09:28:49", "end": "2026-07-25T10:42:41", "elapsed_s": 4432, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.2311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37687978", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "TIMEOUT", "submit": "2026-07-25T09:35:38", "start": "2026-07-25T10:41:44", "end": "2026-07-26T10:41:55", "elapsed_s": 86411, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 24.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37687979", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "TIMEOUT", "submit": "2026-07-25T09:35:38", "start": "2026-07-25T10:42:44", "end": "2026-07-26T10:42:55", "elapsed_s": 86411, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 24.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37687980", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-25T09:35:38", "start": "2026-07-26T10:42:30", "end": "2026-07-26T13:19:49", "elapsed_s": 9439, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.6219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37687983", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-25T09:35:39", "start": "2026-07-26T10:43:01", "end": "2026-07-26T13:19:49", "elapsed_s": 9408, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.6133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37687984", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-25T09:35:39", "start": "None", "end": "2026-07-26T13:19:49", "elapsed_s": 0, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37687985", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-25T09:35:39", "start": "None", "end": "2026-07-26T13:19:49", "elapsed_s": 0, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37690543", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-25T10:42:43", "start": "2026-07-25T10:42:44", "end": "2026-07-25T13:18:40", "elapsed_s": 9356, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 2.5989, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37690544", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-25T10:42:43", "start": "2026-07-25T10:42:44", "end": "2026-07-25T14:29:00", "elapsed_s": 13576, "nodes": 1, "gpus": 2, "gpu_type": "a40", "gpu_hours": 7.5422, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37735656", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-07-26T13:27:04", "start": "2026-07-26T13:27:05", "end": "2026-07-26T13:41:45", "elapsed_s": 880, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2444, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37735762", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-07-26T13:28:25", "start": "2026-07-26T13:28:26", "end": "2026-07-26T13:53:38", "elapsed_s": 1512, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.42, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37735763", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-07-26T13:28:25", "start": "2026-07-26T13:28:26", "end": "2026-07-26T13:53:38", "elapsed_s": 1512, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.42, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37735764", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-07-26T13:28:25", "start": "2026-07-26T13:28:26", "end": "2026-07-26T13:40:28", "elapsed_s": 722, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2006, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37735765", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-07-26T13:28:25", "start": "2026-07-26T13:28:26", "end": "2026-07-26T13:40:28", "elapsed_s": 722, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2006, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37735766", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-07-26T13:28:25", "start": "2026-07-26T13:28:26", "end": "2026-07-26T13:37:11", "elapsed_s": 525, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1458, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-26T18:10:28", "start": "2026-07-26T18:10:29", "end": "2026-07-27T02:15:01", "elapsed_s": 29072, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0756, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745359", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-26T18:10:28", "start": "2026-07-26T18:10:29", "end": "2026-07-27T02:15:01", "elapsed_s": 29072, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0756, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-26T18:10:28", "start": "2026-07-26T18:10:29", "end": "2026-07-27T02:15:01", "elapsed_s": 29072, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0756, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-26T18:10:28", "start": "2026-07-26T18:10:29", "end": "2026-07-27T02:15:02", "elapsed_s": 29073, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0758, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-26T18:10:28", "start": "2026-07-26T18:10:29", "end": "2026-07-27T02:15:02", "elapsed_s": 29073, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0758, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-26T18:10:28", "start": "2026-07-26T18:10:29", "end": "2026-07-27T02:15:02", "elapsed_s": 29073, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0758, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37749039", "job_name": "op_extract", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-26T19:45:10", "start": "2026-07-26T19:45:11", "end": "2026-07-26T19:55:39", "elapsed_s": 628, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1744, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T02:15:06", "start": "2026-07-27T02:17:27", "end": "2026-07-27T10:30:02", "elapsed_s": 29555, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T02:15:06", "start": "2026-07-27T02:17:27", "end": "2026-07-27T10:30:02", "elapsed_s": 29555, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-27T02:15:52", "start": "2026-07-27T02:17:59", "end": "2026-07-27T02:42:27", "elapsed_s": 1468, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745359", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T02:15:53", "start": "2026-07-27T02:17:59", "end": "2026-07-27T10:30:02", "elapsed_s": 29523, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T02:15:54", "start": "2026-07-27T02:17:59", "end": "2026-07-27T10:30:02", "elapsed_s": 29523, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T02:15:58", "start": "2026-07-27T02:17:59", "end": "2026-07-27T10:30:02", "elapsed_s": 29523, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T02:43:30", "start": "2026-07-27T02:45:44", "end": "2026-07-27T11:00:02", "elapsed_s": 29658, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37771540", "job_name": "sal-annapolis", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-27T09:02:12", "start": "2026-07-27T09:02:13", "end": "2026-07-27T14:54:36", "elapsed_s": 21143, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 5.8731, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T10:30:06", "start": "2026-07-27T10:32:20", "end": "2026-07-27T18:45:02", "elapsed_s": 29562, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745359", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "CANCELLED by 197096", "submit": "2026-07-27T10:30:07", "start": "2026-07-27T10:32:20", "end": "2026-07-27T18:43:09", "elapsed_s": 29449, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1803, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T10:30:55", "start": "2026-07-27T10:32:56", "end": "2026-07-27T18:45:02", "elapsed_s": 29526, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-27T10:30:56", "start": "2026-07-27T10:33:03", "end": "2026-07-27T10:59:38", "elapsed_s": 1595, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4431, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T10:30:59", "start": "2026-07-27T10:33:03", "end": "2026-07-27T18:45:02", "elapsed_s": 29519, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 8.1997, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T11:00:29", "start": "2026-07-27T11:02:37", "end": "2026-07-27T19:15:01", "elapsed_s": 29544, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-27T11:00:52", "start": "2026-07-27T11:02:55", "end": "2026-07-27T13:07:59", "elapsed_s": 7504, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.0844, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T13:08:51", "start": "2026-07-27T13:10:57", "end": "2026-07-27T21:15:02", "elapsed_s": 29045, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 8.0681, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37808803", "job_name": "sal-annapolis", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-27T18:25:21", "start": "2026-07-27T18:25:22", "end": "2026-07-27T18:37:07", "elapsed_s": 705, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1958, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37808965", "job_name": "sal-annapolis", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-27T18:37:24", "start": "2026-07-27T18:37:25", "end": "2026-07-27T18:47:25", "elapsed_s": 600, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1667, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37809205", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "CANCELLED by 197096", "submit": "2026-07-27T18:43:53", "start": "2026-07-27T18:43:54", "end": "2026-07-27T19:25:54", "elapsed_s": 2520, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-27T18:45:57", "start": "2026-07-27T18:48:02", "end": "2026-07-27T23:45:28", "elapsed_s": 17846, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.9572, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-27T18:46:01", "start": "2026-07-27T18:48:02", "end": "2026-07-27T23:45:28", "elapsed_s": 17846, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.9572, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T18:46:06", "start": "2026-07-27T18:48:11", "end": "2026-07-28T03:00:02", "elapsed_s": 29511, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1975, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T19:15:58", "start": "2026-07-27T19:17:59", "end": "2026-07-28T03:30:02", "elapsed_s": 29523, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-27T21:15:54", "start": "2026-07-27T21:18:06", "end": "2026-07-27T23:45:07", "elapsed_s": 8821, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.4503, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T23:45:08", "start": "2026-07-27T23:47:22", "end": "2026-07-28T08:00:02", "elapsed_s": 29560, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T23:45:31", "start": "2026-07-27T23:47:32", "end": "2026-07-28T08:00:02", "elapsed_s": 29550, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-27T23:46:20", "start": "2026-07-27T23:48:23", "end": "2026-07-28T08:00:02", "elapsed_s": 29499, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1942, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-28T03:00:09", "start": "2026-07-28T03:02:18", "end": "2026-07-28T11:15:02", "elapsed_s": 29564, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-28T03:31:03", "start": "2026-07-28T03:33:18", "end": "2026-07-28T11:45:02", "elapsed_s": 29504, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1956, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-28T08:00:07", "start": "2026-07-28T08:02:10", "end": "2026-07-28T16:15:03", "elapsed_s": 29573, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-28T08:00:56", "start": "2026-07-28T08:03:04", "end": "2026-07-28T16:15:03", "elapsed_s": 29519, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1997, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-28T08:00:57", "start": "2026-07-28T08:03:04", "end": "2026-07-28T16:15:03", "elapsed_s": 29519, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1997, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37825643", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-28T08:14:37", "start": "None", "end": "2026-07-28T08:16:43", "elapsed_s": 0, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37825644", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-28T08:14:37", "start": "None", "end": "2026-07-28T08:16:43", "elapsed_s": 0, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37825645", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-28T08:14:37", "start": "2026-07-28T08:14:38", "end": "2026-07-28T08:55:22", "elapsed_s": 2444, "nodes": 1, "gpus": 2, "gpu_type": "l40s", "gpu_hours": 1.3578, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37825646", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-28T08:14:37", "start": "None", "end": "2026-07-28T08:16:43", "elapsed_s": 0, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37825674", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-28T08:16:46", "start": "2026-07-28T08:16:47", "end": "2026-07-28T08:37:13", "elapsed_s": 1226, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3406, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37825675", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-28T08:16:46", "start": "2026-07-28T08:16:47", "end": "2026-07-28T08:39:19", "elapsed_s": 1352, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3756, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37825676", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-28T08:16:46", "start": "2026-07-28T08:16:47", "end": "2026-07-28T08:47:03", "elapsed_s": 1816, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37828485", "job_name": "open_budapest_district5", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-28T09:52:07", "start": "2026-07-28T09:52:08", "end": "2026-07-28T10:38:43", "elapsed_s": 2795, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.7764, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37828486", "job_name": "qwen8_budapest_district5", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-28T09:52:07", "start": "2026-07-28T09:52:08", "end": "2026-07-28T10:38:43", "elapsed_s": 2795, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.7764, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37828496", "job_name": "qwen32_budapest", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-28T09:52:35", "start": "2026-07-28T10:38:46", "end": "2026-07-28T11:08:28", "elapsed_s": 1782, "nodes": 1, "gpus": 2, "gpu_type": "l40s", "gpu_hours": 0.99, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37828497", "job_name": "molmo_budapest", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-28T09:52:35", "start": "2026-07-28T11:41:29", "end": "2026-07-28T12:12:40", "elapsed_s": 1871, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37828498", "job_name": "open_morgantown", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-28T09:52:35", "start": "2026-07-28T12:13:10", "end": "2026-07-28T12:37:42", "elapsed_s": 1472, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4089, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37828499", "job_name": "qwen8_morgantown", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-28T09:52:35", "start": "2026-07-28T12:37:52", "end": "2026-07-28T13:01:31", "elapsed_s": 1419, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3942, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37828500", "job_name": "qwen32_morgantown", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-28T09:52:35", "start": "2026-07-28T11:09:47", "end": "2026-07-28T11:41:22", "elapsed_s": 1895, "nodes": 1, "gpus": 2, "gpu_type": "l40s", "gpu_hours": 1.0528, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37828501", "job_name": "molmo_morgantown", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-28T09:52:35", "start": "2026-07-28T13:01:37", "end": "2026-07-28T13:32:26", "elapsed_s": 1849, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T11:16:06", "start": "2026-07-28T11:18:09", "end": "2026-07-28T17:05:43", "elapsed_s": 20854, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.7928, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T11:45:07", "start": "2026-07-28T11:47:18", "end": "2026-07-28T17:06:45", "elapsed_s": 19167, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.3242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37846254", "job_name": "low_floor_extract", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-28T15:57:46", "start": "2026-07-28T15:57:47", "end": "2026-07-28T16:38:46", "elapsed_s": 2459, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.6831, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37846702", "job_name": "low_floor_extract", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-28T16:02:26", "start": "2026-07-28T16:39:41", "end": "2026-07-28T16:55:23", "elapsed_s": 942, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2617, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T16:15:08", "start": "2026-07-28T16:17:09", "end": "2026-07-28T17:06:05", "elapsed_s": 2936, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T16:15:13", "start": "2026-07-28T16:17:15", "end": "2026-07-28T17:06:45", "elapsed_s": 2970, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.825, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T16:16:03", "start": "2026-07-28T16:18:05", "end": "2026-07-28T17:07:06", "elapsed_s": 2941, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T17:06:14", "start": "2026-07-28T17:08:32", "end": "2026-07-28T17:20:39", "elapsed_s": 727, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T17:06:43", "start": "2026-07-28T17:09:03", "end": "2026-07-28T17:19:54", "elapsed_s": 651, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1808, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T17:06:49", "start": "2026-07-28T17:09:03", "end": "2026-07-28T17:20:39", "elapsed_s": 696, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1933, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T17:07:39", "start": "2026-07-28T17:10:06", "end": "2026-07-28T17:20:59", "elapsed_s": 653, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1814, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T17:08:10", "start": "2026-07-28T17:10:38", "end": "2026-07-28T17:15:03", "elapsed_s": 265, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0736, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T17:15:55", "start": "2026-07-28T17:20:29", "end": "2026-07-28T17:20:39", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T17:20:46", "start": "2026-07-28T17:22:47", "end": "2026-07-28T18:06:06", "elapsed_s": 2599, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T17:21:30", "start": "2026-07-28T17:23:41", "end": "2026-07-28T18:00:57", "elapsed_s": 2236, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T17:21:33", "start": "2026-07-28T17:23:41", "end": "2026-07-28T17:40:37", "elapsed_s": 1016, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2822, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T17:21:33", "start": "2026-07-28T17:23:41", "end": "2026-07-28T18:01:30", "elapsed_s": 2269, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T17:21:50", "start": "2026-07-28T17:27:10", "end": "2026-07-28T18:01:06", "elapsed_s": 2036, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5656, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T17:40:41", "start": "2026-07-28T17:42:50", "end": "2026-07-28T18:06:39", "elapsed_s": 1429, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3969, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:01:03", "start": "2026-07-28T18:03:06", "end": "2026-07-28T18:08:43", "elapsed_s": 337, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0936, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:01:59", "start": "2026-07-28T18:04:55", "end": "2026-07-28T18:09:03", "elapsed_s": 248, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0689, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:02:22", "start": "2026-07-28T18:05:00", "end": "2026-07-28T18:08:33", "elapsed_s": 213, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0592, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:06:59", "start": "2026-07-28T18:09:37", "end": "2026-07-28T18:35:14", "elapsed_s": 1537, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:07:37", "start": "2026-07-28T18:09:39", "end": "2026-07-28T18:38:20", "elapsed_s": 1721, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4781, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:08:48", "start": "2026-07-28T18:10:49", "end": "2026-07-28T18:35:49", "elapsed_s": 1500, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:09:27", "start": "2026-07-28T18:11:29", "end": "2026-07-28T18:38:42", "elapsed_s": 1633, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:09:53", "start": "2026-07-28T18:12:25", "end": "2026-07-28T18:20:18", "elapsed_s": 473, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1314, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:21:08", "start": "2026-07-28T18:23:37", "end": "2026-07-28T18:50:04", "elapsed_s": 1587, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.4408, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:36:04", "start": "2026-07-28T18:39:20", "end": "2026-07-28T23:06:29", "elapsed_s": 16029, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.4525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:36:45", "start": "2026-07-28T18:39:45", "end": "2026-07-28T23:47:04", "elapsed_s": 18439, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.1219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:39:18", "start": "2026-07-28T18:43:06", "end": "2026-07-28T18:49:26", "elapsed_s": 380, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1056, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:39:42", "start": "2026-07-28T18:48:43", "end": "2026-07-28T23:59:18", "elapsed_s": 18635, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.1764, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:50:16", "start": "2026-07-28T18:52:46", "end": "2026-07-28T23:47:33", "elapsed_s": 17687, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.9131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T18:50:57", "start": "2026-07-28T18:53:17", "end": "2026-07-28T23:59:18", "elapsed_s": 18361, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.1003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T23:07:23", "start": "2026-07-28T23:09:30", "end": "2026-07-28T23:47:04", "elapsed_s": 2254, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T23:47:55", "start": "2026-07-28T23:50:08", "end": "2026-07-29T00:02:09", "elapsed_s": 721, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T23:48:07", "start": "2026-07-28T23:50:08", "end": "2026-07-29T00:02:29", "elapsed_s": 741, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T23:48:36", "start": "2026-07-28T23:50:38", "end": "2026-07-29T00:02:09", "elapsed_s": 691, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1919, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-28T23:59:21", "start": "2026-07-29T00:01:23", "end": "2026-07-29T00:02:52", "elapsed_s": 89, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0247, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:00:19", "start": "2026-07-29T00:02:26", "end": "2026-07-29T00:15:59", "elapsed_s": 813, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2258, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:02:13", "start": "2026-07-29T00:04:14", "end": "2026-07-29T00:37:48", "elapsed_s": 2014, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5594, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:03:01", "start": "2026-07-29T00:05:02", "end": "2026-07-29T00:38:08", "elapsed_s": 1986, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:03:18", "start": "2026-07-29T00:05:19", "end": "2026-07-29T00:15:59", "elapsed_s": 640, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1778, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:03:43", "start": "2026-07-29T00:05:47", "end": "2026-07-29T01:25:41", "elapsed_s": 4794, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.3317, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:16:49", "start": "2026-07-29T00:18:52", "end": "2026-07-29T00:37:48", "elapsed_s": 1136, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:16:50", "start": "2026-07-29T00:18:52", "end": "2026-07-29T00:30:21", "elapsed_s": 689, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1914, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:31:09", "start": "2026-07-29T00:33:14", "end": "2026-07-29T00:38:33", "elapsed_s": 319, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0886, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:38:41", "start": "2026-07-29T00:40:51", "end": "2026-07-29T00:40:56", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:38:41", "start": "2026-07-29T00:40:51", "end": "2026-07-29T00:55:46", "elapsed_s": 895, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2486, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:39:00", "start": "2026-07-29T00:41:08", "end": "2026-07-29T01:02:54", "elapsed_s": 1306, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3628, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:39:22", "start": "2026-07-29T00:41:24", "end": "2026-07-29T02:00:52", "elapsed_s": 4768, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.3244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:41:46", "start": "2026-07-29T00:44:29", "end": "2026-07-29T00:55:49", "elapsed_s": 680, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1889, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:56:37", "start": "2026-07-29T00:58:41", "end": "2026-07-29T01:17:46", "elapsed_s": 1145, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T00:56:39", "start": "2026-07-29T00:58:41", "end": "2026-07-29T01:05:02", "elapsed_s": 381, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:03:48", "start": "2026-07-29T01:05:51", "end": "2026-07-29T01:23:07", "elapsed_s": 1036, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2878, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:05:54", "start": "2026-07-29T01:08:10", "end": "2026-07-29T01:08:58", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:09:49", "start": "2026-07-29T01:11:52", "end": "2026-07-29T01:45:27", "elapsed_s": 2015, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:18:37", "start": "2026-07-29T01:20:38", "end": "2026-07-29T01:23:07", "elapsed_s": 149, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0414, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:23:56", "start": "2026-07-29T01:26:02", "end": "2026-07-29T01:35:16", "elapsed_s": 554, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1539, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:24:05", "start": "2026-07-29T01:26:07", "end": "2026-07-29T01:34:56", "elapsed_s": 529, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1469, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:26:35", "start": "2026-07-29T01:28:42", "end": "2026-07-29T01:35:16", "elapsed_s": 394, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:35:46", "start": "2026-07-29T01:37:53", "end": "2026-07-29T01:47:56", "elapsed_s": 603, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1675, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:36:05", "start": "2026-07-29T01:38:06", "end": "2026-07-29T01:47:56", "elapsed_s": 590, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1639, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:36:06", "start": "2026-07-29T01:38:08", "end": "2026-07-29T02:00:31", "elapsed_s": 1343, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3731, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:45:31", "start": "2026-07-29T01:47:44", "end": "2026-07-29T01:48:00", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:48:47", "start": "2026-07-29T01:50:48", "end": "2026-07-29T02:13:15", "elapsed_s": 1347, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3742, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:48:49", "start": "2026-07-29T01:51:19", "end": "2026-07-29T02:13:15", "elapsed_s": 1316, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3656, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T01:48:50", "start": "2026-07-29T01:51:50", "end": "2026-07-29T02:13:11", "elapsed_s": 1281, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3558, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T02:01:31", "start": "2026-07-29T02:03:32", "end": "2026-07-29T02:13:11", "elapsed_s": 579, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1608, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T02:01:44", "start": "2026-07-29T02:03:58", "end": "2026-07-29T02:13:15", "elapsed_s": 557, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1547, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T02:14:01", "start": "2026-07-29T02:16:04", "end": "2026-07-29T08:52:56", "elapsed_s": 23812, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 6.6144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T02:14:02", "start": "2026-07-29T02:16:04", "end": "2026-07-29T08:26:39", "elapsed_s": 22235, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 6.1764, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T02:14:06", "start": "2026-07-29T02:16:23", "end": "2026-07-29T08:27:09", "elapsed_s": 22246, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 6.1794, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T02:14:10", "start": "2026-07-29T02:16:23", "end": "2026-07-29T08:27:01", "elapsed_s": 22238, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 6.1772, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T02:14:11", "start": "2026-07-29T02:16:23", "end": "2026-07-29T09:41:19", "elapsed_s": 26696, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 7.4156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T08:27:05", "start": "2026-07-29T08:29:07", "end": "2026-07-29T09:41:06", "elapsed_s": 4319, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.1997, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T08:27:34", "start": "2026-07-29T08:29:35", "end": "2026-07-29T08:52:51", "elapsed_s": 1396, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3878, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T08:28:04", "start": "2026-07-29T08:30:11", "end": "2026-07-29T09:22:24", "elapsed_s": 3133, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8703, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T08:53:00", "start": "2026-07-29T08:55:07", "end": "2026-07-29T10:20:47", "elapsed_s": 5140, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.4278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T08:53:45", "start": "2026-07-29T08:55:47", "end": "2026-07-29T09:41:06", "elapsed_s": 2719, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7553, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37874763", "job_name": "sal-paterson", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "FAILED", "submit": "2026-07-29T08:56:28", "start": "2026-07-29T08:56:29", "end": "2026-07-29T08:58:16", "elapsed_s": 107, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0297, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37875114", "job_name": "sal-paterson", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "FAILED", "submit": "2026-07-29T09:15:57", "start": "2026-07-29T09:15:58", "end": "2026-07-29T09:20:01", "elapsed_s": 243, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0675, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T09:23:14", "start": "2026-07-29T09:25:16", "end": "2026-07-29T09:41:06", "elapsed_s": 950, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2639, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37876258", "job_name": "sal-paterson", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-29T09:29:41", "start": "2026-07-29T09:29:43", "end": "2026-07-29T13:22:31", "elapsed_s": 13968, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 3.88, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T09:41:57", "start": "2026-07-29T09:43:58", "end": "2026-07-29T10:21:08", "elapsed_s": 2230, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.6194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T09:41:59", "start": "2026-07-29T09:44:02", "end": "2026-07-29T10:21:49", "elapsed_s": 2267, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.6297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T09:42:02", "start": "2026-07-29T09:44:06", "end": "2026-07-29T12:52:57", "elapsed_s": 11331, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 3.1475, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T09:42:17", "start": "2026-07-29T09:44:19", "end": "2026-07-29T12:53:49", "elapsed_s": 11370, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 3.1583, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T10:21:53", "start": "2026-07-29T10:23:55", "end": "2026-07-29T12:53:45", "elapsed_s": 8990, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.4972, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T10:22:02", "start": "2026-07-29T10:24:29", "end": "2026-07-29T11:00:37", "elapsed_s": 2168, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.6022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T10:22:23", "start": "2026-07-29T10:24:29", "end": "2026-07-29T11:00:27", "elapsed_s": 2158, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5994, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T11:01:20", "start": "2026-07-29T11:03:29", "end": "2026-07-29T12:05:06", "elapsed_s": 3697, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.0269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T11:01:32", "start": "2026-07-29T11:04:00", "end": "2026-07-29T12:52:57", "elapsed_s": 6537, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.8158, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T12:05:57", "start": "2026-07-29T12:08:05", "end": "2026-07-29T12:52:57", "elapsed_s": 2692, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7478, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T12:53:01", "start": "2026-07-29T12:55:14", "end": "2026-07-29T12:55:27", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T12:53:49", "start": "2026-07-29T12:55:52", "end": "2026-07-29T12:59:04", "elapsed_s": 192, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0533, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T12:53:49", "start": "2026-07-29T12:55:52", "end": "2026-07-29T12:59:46", "elapsed_s": 234, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.065, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T12:54:45", "start": "2026-07-29T12:56:52", "end": "2026-07-29T12:57:48", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T12:54:46", "start": "2026-07-29T12:57:09", "end": "2026-07-29T13:05:49", "elapsed_s": 520, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1444, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T12:56:19", "start": "2026-07-29T12:58:42", "end": "2026-07-29T13:06:08", "elapsed_s": 446, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T12:58:41", "start": "2026-07-29T13:00:53", "end": "2026-07-29T13:08:35", "elapsed_s": 462, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:00:09", "start": "2026-07-29T13:03:19", "end": "2026-07-29T13:08:35", "elapsed_s": 316, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0878, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:00:52", "start": "2026-07-29T13:04:26", "end": "2026-07-29T13:05:26", "elapsed_s": 60, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:06:17", "start": "2026-07-29T13:09:52", "end": "2026-07-29T13:13:38", "elapsed_s": 226, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0628, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:06:46", "start": "2026-07-29T13:09:58", "end": "2026-07-29T13:15:34", "elapsed_s": 336, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0933, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:06:58", "start": "2026-07-29T13:10:26", "end": "2026-07-29T13:13:38", "elapsed_s": 192, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0533, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:09:27", "start": "2026-07-29T13:11:30", "end": "2026-07-29T13:21:23", "elapsed_s": 593, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1647, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:09:47", "start": "2026-07-29T13:11:52", "end": "2026-07-29T13:15:38", "elapsed_s": 226, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0628, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:14:42", "start": "2026-07-29T13:16:53", "end": "2026-07-29T13:23:00", "elapsed_s": 367, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:14:44", "start": "2026-07-29T13:16:53", "end": "2026-07-29T13:23:00", "elapsed_s": 367, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:16:25", "start": "2026-07-29T13:18:37", "end": "2026-07-29T13:21:53", "elapsed_s": 196, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0544, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:16:29", "start": "2026-07-29T13:18:37", "end": "2026-07-29T13:28:45", "elapsed_s": 608, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1689, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:22:14", "start": "2026-07-29T13:24:27", "end": "2026-07-29T13:28:45", "elapsed_s": 258, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0717, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:22:44", "start": "2026-07-29T13:26:13", "end": "2026-07-29T13:27:02", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:23:03", "start": "2026-07-29T13:26:29", "end": "2026-07-29T13:30:44", "elapsed_s": 255, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0708, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:24:13", "start": "2026-07-29T13:26:29", "end": "2026-07-29T13:30:44", "elapsed_s": 255, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0708, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:27:53", "start": "2026-07-29T13:30:02", "end": "2026-07-29T13:30:47", "elapsed_s": 45, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:29:40", "start": "2026-07-29T13:31:41", "end": "2026-07-29T13:33:07", "elapsed_s": 86, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:29:57", "start": "2026-07-29T13:32:39", "end": "2026-07-29T13:44:32", "elapsed_s": 713, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1981, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37888131", "job_name": "sal-paterson", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-29T13:30:08", "start": "2026-07-29T13:30:09", "end": "2026-07-29T13:38:59", "elapsed_s": 530, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:30:46", "start": "2026-07-29T13:32:53", "end": "2026-07-29T13:44:32", "elapsed_s": 699, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1942, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:30:46", "start": "2026-07-29T13:33:12", "end": "2026-07-29T13:44:58", "elapsed_s": 706, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1961, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:31:43", "start": "2026-07-29T13:33:47", "end": "2026-07-29T13:48:10", "elapsed_s": 863, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:34:13", "start": "2026-07-29T13:36:21", "end": "2026-07-29T13:42:27", "elapsed_s": 366, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:43:17", "start": "2026-07-29T13:45:29", "end": "2026-07-29T13:45:40", "elapsed_s": 11, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:45:22", "start": "2026-07-29T13:47:30", "end": "2026-07-29T13:49:32", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:45:43", "start": "2026-07-29T13:47:58", "end": "2026-07-29T13:56:29", "elapsed_s": 511, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:45:52", "start": "2026-07-29T13:47:58", "end": "2026-07-29T13:57:00", "elapsed_s": 542, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1506, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:46:32", "start": "2026-07-29T13:48:36", "end": "2026-07-29T14:20:26", "elapsed_s": 1910, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:49:02", "start": "2026-07-29T13:51:03", "end": "2026-07-29T13:54:28", "elapsed_s": 205, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0569, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:50:22", "start": "2026-07-29T13:52:31", "end": "2026-07-29T13:55:05", "elapsed_s": 154, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0428, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:55:20", "start": "2026-07-29T13:57:25", "end": "2026-07-29T14:01:51", "elapsed_s": 266, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0739, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:55:56", "start": "2026-07-29T13:58:01", "end": "2026-07-29T14:01:01", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:57:20", "start": "2026-07-29T14:01:01", "end": "2026-07-29T14:02:41", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T13:58:11", "start": "2026-07-29T14:01:41", "end": "2026-07-29T14:03:12", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:01:53", "start": "2026-07-29T14:04:00", "end": "2026-07-29T14:07:42", "elapsed_s": 222, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0617, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:02:45", "start": "2026-07-29T14:05:15", "end": "2026-07-29T14:20:23", "elapsed_s": 908, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2522, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:03:34", "start": "2026-07-29T14:06:00", "end": "2026-07-29T14:07:42", "elapsed_s": 102, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:04:02", "start": "2026-07-29T14:06:03", "end": "2026-07-29T14:08:03", "elapsed_s": 120, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37889646", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "TIMEOUT", "submit": "2026-07-29T14:08:32", "start": "2026-07-29T14:09:47", "end": "2026-08-01T14:10:10", "elapsed_s": 259223, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 72.0064, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:08:34", "start": "2026-07-29T14:10:49", "end": "2026-07-29T14:12:00", "elapsed_s": 71, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:08:35", "start": "2026-07-29T14:11:01", "end": "2026-07-29T14:20:02", "elapsed_s": 541, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1503, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:08:57", "start": "2026-07-29T14:11:29", "end": "2026-07-29T14:16:06", "elapsed_s": 277, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:12:51", "start": "2026-07-29T14:16:29", "end": "2026-07-29T14:19:38", "elapsed_s": 189, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:17:01", "start": "2026-07-29T14:19:23", "end": "2026-07-29T14:20:23", "elapsed_s": 60, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:20:29", "start": "2026-07-29T14:22:34", "end": "2026-07-29T14:25:29", "elapsed_s": 175, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0486, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:20:53", "start": "2026-07-29T14:23:03", "end": "2026-07-29T15:06:23", "elapsed_s": 2600, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.7222, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:21:14", "start": "2026-07-29T14:25:38", "end": "2026-07-29T14:27:56", "elapsed_s": 138, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:21:15", "start": "2026-07-29T14:26:03", "end": "2026-07-29T14:28:11", "elapsed_s": 128, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:21:41", "start": "2026-07-29T14:26:37", "end": "2026-07-29T14:29:34", "elapsed_s": 177, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0492, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:26:19", "start": "2026-07-29T14:28:36", "end": "2026-07-29T14:29:34", "elapsed_s": 58, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:28:48", "start": "2026-07-29T14:30:58", "end": "2026-07-29T15:09:48", "elapsed_s": 2330, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:29:06", "start": "2026-07-29T14:31:09", "end": "2026-07-29T16:43:03", "elapsed_s": 7914, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 2.1983, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:30:26", "start": "2026-07-29T14:32:45", "end": "2026-07-29T14:34:12", "elapsed_s": 87, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:30:57", "start": "2026-07-29T14:33:46", "end": "2026-07-29T14:37:48", "elapsed_s": 242, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0672, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:35:05", "start": "2026-07-29T14:37:18", "end": "2026-07-29T16:43:03", "elapsed_s": 7545, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 2.0958, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:38:39", "start": "2026-07-29T14:40:49", "end": "2026-07-29T14:41:02", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T14:41:04", "start": "2026-07-29T14:43:06", "end": "2026-07-29T15:04:39", "elapsed_s": 1293, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3592, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37895214", "job_name": "low_floor_extract", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-07-29T14:54:35", "start": "2026-07-29T14:55:06", "end": "2026-07-29T14:55:07", "elapsed_s": 1, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0003, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37895426", "job_name": "low_floor_extract", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-29T15:02:37", "start": "2026-07-29T15:03:55", "end": "2026-07-29T15:09:16", "elapsed_s": 321, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0892, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:04:41", "start": "2026-07-29T15:06:46", "end": "2026-07-29T15:08:35", "elapsed_s": 109, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:07:18", "start": "2026-07-29T15:09:25", "end": "2026-07-29T15:13:00", "elapsed_s": 215, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37895571", "job_name": "sal-gainesville", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-07-29T15:07:47", "start": "None", "end": "2026-07-29T15:11:40", "elapsed_s": 0, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:09:25", "start": "2026-07-29T15:11:41", "end": "2026-07-29T15:13:00", "elapsed_s": 79, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:09:50", "start": "2026-07-29T15:12:11", "end": "2026-07-29T16:26:42", "elapsed_s": 4471, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.2419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37895723", "job_name": "sal-gainesville", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:11:40", "start": "2026-07-29T15:11:41", "end": "2026-07-29T16:05:40", "elapsed_s": 3239, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.8997, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:13:02", "start": "2026-07-29T15:15:22", "end": "2026-07-29T15:15:26", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:13:50", "start": "2026-07-29T15:17:24", "end": "2026-07-29T15:19:11", "elapsed_s": 107, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:16:19", "start": "2026-07-29T15:18:25", "end": "2026-07-29T15:34:53", "elapsed_s": 988, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2744, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:20:02", "start": "2026-07-29T15:22:12", "end": "2026-07-29T15:22:55", "elapsed_s": 43, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:23:46", "start": "2026-07-29T15:26:01", "end": "2026-07-29T15:34:39", "elapsed_s": 518, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1439, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:34:56", "start": "2026-07-29T15:37:11", "end": "2026-07-29T15:39:12", "elapsed_s": 121, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0336, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:35:32", "start": "2026-07-29T15:37:43", "end": "2026-07-29T16:07:07", "elapsed_s": 1764, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.49, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T15:40:04", "start": "2026-07-29T15:42:13", "end": "2026-07-29T16:05:03", "elapsed_s": 1370, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3806, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37897737", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-29T15:56:16", "start": "2026-07-29T15:56:18", "end": "2026-07-29T16:10:34", "elapsed_s": 856, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2378, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37897738", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-29T15:56:16", "start": "2026-07-29T15:56:18", "end": "2026-07-29T16:24:43", "elapsed_s": 1705, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4736, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37897739", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-29T15:56:16", "start": "2026-07-29T15:56:18", "end": "2026-07-29T16:18:19", "elapsed_s": 1321, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3669, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37897740", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-29T15:56:16", "start": "2026-07-29T15:58:33", "end": "2026-07-29T16:28:25", "elapsed_s": 1792, "nodes": 1, "gpus": 2, "gpu_type": "l40", "gpu_hours": 0.9956, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:05:06", "start": "2026-07-29T16:07:10", "end": "2026-07-29T16:09:12", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37895723", "job_name": "sal-gainesville", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:06:30", "start": "2026-07-29T16:08:42", "end": "2026-07-29T17:52:49", "elapsed_s": 6247, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.7353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:07:10", "start": "2026-07-29T16:09:13", "end": "2026-07-29T16:14:48", "elapsed_s": 335, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0931, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:10:02", "start": "2026-07-29T16:12:46", "end": "2026-07-29T16:13:47", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:14:38", "start": "2026-07-29T16:16:51", "end": "2026-07-29T16:18:53", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:15:47", "start": "2026-07-29T16:17:52", "end": "2026-07-29T16:23:15", "elapsed_s": 323, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0897, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:19:42", "start": "2026-07-29T16:21:56", "end": "2026-07-29T16:23:27", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:24:05", "start": "2026-07-29T16:26:07", "end": "2026-07-29T16:26:30", "elapsed_s": 23, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0064, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:24:19", "start": "2026-07-29T16:26:21", "end": "2026-07-29T16:27:16", "elapsed_s": 55, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:27:18", "start": "2026-07-29T16:29:23", "end": "2026-07-29T16:31:41", "elapsed_s": 138, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:27:20", "start": "2026-07-29T16:29:23", "end": "2026-07-29T19:30:57", "elapsed_s": 10894, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.0261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:27:33", "start": "2026-07-29T16:30:02", "end": "2026-07-29T16:31:54", "elapsed_s": 112, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:31:57", "start": "2026-07-29T16:34:03", "end": "2026-07-29T16:34:44", "elapsed_s": 41, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:32:31", "start": "2026-07-29T16:34:38", "end": "2026-07-29T19:31:00", "elapsed_s": 10582, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.9394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:35:34", "start": "2026-07-29T16:37:35", "end": "2026-07-29T16:51:36", "elapsed_s": 841, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2336, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:43:55", "start": "2026-07-29T16:46:18", "end": "2026-07-29T19:31:00", "elapsed_s": 9882, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.745, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:43:58", "start": "2026-07-29T16:46:30", "end": "2026-07-29T16:48:02", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:48:52", "start": "2026-07-29T16:50:54", "end": "2026-07-29T16:53:56", "elapsed_s": 182, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0506, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:52:27", "start": "2026-07-29T16:55:49", "end": "2026-07-29T17:23:22", "elapsed_s": 1653, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4592, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:54:00", "start": "2026-07-29T16:56:18", "end": "2026-07-29T16:57:16", "elapsed_s": 58, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T16:58:06", "start": "2026-07-29T17:01:03", "end": "2026-07-29T19:31:00", "elapsed_s": 8997, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.4992, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T17:24:16", "start": "2026-07-29T17:26:20", "end": "2026-07-29T19:31:04", "elapsed_s": 7484, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.0789, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37895723", "job_name": "sal-gainesville", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T17:53:41", "start": "2026-07-29T17:58:06", "end": "2026-07-29T18:14:35", "elapsed_s": 989, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2747, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37895723", "job_name": "sal-gainesville", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T18:15:31", "start": "2026-07-29T18:17:57", "end": "2026-07-29T18:27:53", "elapsed_s": 596, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1656, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37895723", "job_name": "sal-gainesville", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "CANCELLED by 197096", "submit": "2026-07-29T18:28:46", "start": "2026-07-29T18:31:45", "end": "2026-07-29T18:32:10", "elapsed_s": 25, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0069, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37903756", "job_name": "sal-gainesville", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-07-29T18:32:10", "start": "2026-07-29T18:32:27", "end": "2026-07-29T19:44:05", "elapsed_s": 4298, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.1939, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T19:31:02", "start": "2026-07-29T19:33:29", "end": "2026-07-29T20:51:46", "elapsed_s": 4697, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.3047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T19:31:49", "start": "2026-07-29T19:33:59", "end": "2026-07-29T19:43:03", "elapsed_s": 544, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1511, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T19:31:52", "start": "2026-07-29T19:33:59", "end": "2026-07-29T19:43:00", "elapsed_s": 541, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1503, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T19:31:54", "start": "2026-07-29T19:33:59", "end": "2026-07-29T19:37:26", "elapsed_s": 207, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T19:31:56", "start": "2026-07-29T19:33:59", "end": "2026-07-29T19:37:26", "elapsed_s": 207, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T19:38:16", "start": "2026-07-29T19:44:29", "end": "2026-07-29T20:14:45", "elapsed_s": 1816, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T19:38:16", "start": "2026-07-29T19:44:29", "end": "2026-07-29T20:14:45", "elapsed_s": 1816, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T19:43:58", "start": "2026-07-29T19:50:20", "end": "2026-07-29T20:08:18", "elapsed_s": 1078, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2994, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T19:44:11", "start": "2026-07-29T19:51:21", "end": "2026-07-29T19:57:17", "elapsed_s": 356, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0989, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T19:58:08", "start": "2026-07-29T20:02:12", "end": "2026-07-29T20:09:08", "elapsed_s": 416, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T20:09:11", "start": "2026-07-29T20:12:30", "end": "2026-07-29T21:17:10", "elapsed_s": 3880, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0778, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T20:09:16", "start": "2026-07-29T20:12:30", "end": "2026-07-29T20:14:45", "elapsed_s": 135, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0375, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T20:15:36", "start": "2026-07-29T20:18:35", "end": "2026-07-29T21:17:10", "elapsed_s": 3515, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9764, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T20:15:36", "start": "2026-07-29T20:20:37", "end": "2026-07-29T20:21:43", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T20:15:39", "start": "2026-07-29T20:20:48", "end": "2026-07-29T21:17:13", "elapsed_s": 3385, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9403, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T20:22:38", "start": "2026-07-29T20:24:40", "end": "2026-07-29T20:27:46", "elapsed_s": 186, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T20:28:36", "start": "2026-07-29T20:30:37", "end": "2026-07-29T21:17:13", "elapsed_s": 2796, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T20:51:48", "start": "2026-07-29T20:55:21", "end": "2026-07-29T21:09:20", "elapsed_s": 839, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2331, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:10:11", "start": "2026-07-29T21:12:24", "end": "2026-07-29T21:13:22", "elapsed_s": 58, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:14:13", "start": "2026-07-29T21:16:37", "end": "2026-07-29T21:17:13", "elapsed_s": 36, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.01, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:17:11", "start": "2026-07-29T21:19:29", "end": "2026-07-29T21:21:09", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:18:01", "start": "2026-07-29T21:20:32", "end": "2026-07-29T21:21:09", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:18:02", "start": "2026-07-29T21:21:37", "end": "2026-07-29T21:22:40", "elapsed_s": 63, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:18:03", "start": "2026-07-29T21:22:04", "end": "2026-07-29T21:23:10", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:18:04", "start": "2026-07-29T21:22:04", "end": "2026-07-29T21:31:21", "elapsed_s": 557, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1547, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:21:12", "start": "2026-07-29T21:23:50", "end": "2026-07-29T21:43:46", "elapsed_s": 1196, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:22:01", "start": "2026-07-29T21:24:06", "end": "2026-07-29T21:30:46", "elapsed_s": 400, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:23:36", "start": "2026-07-29T21:25:37", "end": "2026-07-29T21:59:52", "elapsed_s": 2055, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5708, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:23:59", "start": "2026-07-29T21:27:09", "end": "2026-07-29T21:31:02", "elapsed_s": 233, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0647, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:31:05", "start": "2026-07-29T21:33:16", "end": "2026-07-29T21:37:43", "elapsed_s": 267, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0742, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:31:35", "start": "2026-07-29T21:34:47", "end": "2026-07-29T22:00:17", "elapsed_s": 1530, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:32:12", "start": "2026-07-29T21:36:19", "end": "2026-07-29T21:37:45", "elapsed_s": 86, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:38:33", "start": "2026-07-29T21:41:17", "end": "2026-07-29T22:00:37", "elapsed_s": 1160, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3222, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:38:35", "start": "2026-07-29T21:41:56", "end": "2026-07-29T23:11:27", "elapsed_s": 5371, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.4919, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T21:44:35", "start": "2026-07-29T21:47:03", "end": "2026-07-29T23:10:33", "elapsed_s": 5010, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.3917, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T22:00:42", "start": "2026-07-29T22:02:52", "end": "2026-07-29T22:15:58", "elapsed_s": 786, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T22:01:08", "start": "2026-07-29T22:04:23", "end": "2026-07-29T22:05:17", "elapsed_s": 54, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.015, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T22:01:29", "start": "2026-07-29T22:05:24", "end": "2026-07-29T23:10:33", "elapsed_s": 3909, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0858, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T22:06:07", "start": "2026-07-29T22:08:58", "end": "2026-07-29T23:10:33", "elapsed_s": 3695, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T22:16:49", "start": "2026-07-29T22:19:11", "end": "2026-07-29T22:19:16", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T22:20:06", "start": "2026-07-29T22:22:14", "end": "2026-07-29T23:10:33", "elapsed_s": 2899, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:11:21", "start": "2026-07-29T23:14:13", "end": "2026-07-29T23:38:59", "elapsed_s": 1486, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:11:23", "start": "2026-07-29T23:14:44", "end": "2026-07-29T23:53:43", "elapsed_s": 2339, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6497, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:11:24", "start": "2026-07-29T23:14:44", "end": "2026-07-29T23:48:14", "elapsed_s": 2010, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5583, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:11:24", "start": "2026-07-29T23:14:44", "end": "2026-07-29T23:30:06", "elapsed_s": 922, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2561, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:12:20", "start": "2026-07-29T23:14:44", "end": "2026-07-29T23:20:53", "elapsed_s": 369, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:21:43", "start": "2026-07-29T23:24:01", "end": "2026-07-29T23:53:54", "elapsed_s": 1793, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4981, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:31:04", "start": "2026-07-29T23:35:23", "end": "2026-07-29T23:36:25", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:37:18", "start": "2026-07-29T23:40:01", "end": "2026-07-29T23:51:25", "elapsed_s": 684, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.19, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:39:51", "start": "2026-07-29T23:45:41", "end": "2026-07-29T23:51:43", "elapsed_s": 362, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:48:16", "start": "2026-07-29T23:50:19", "end": "2026-07-29T23:50:27", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:51:17", "start": "2026-07-29T23:55:27", "end": "2026-07-30T00:00:02", "elapsed_s": 275, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0764, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:52:17", "start": "2026-07-29T23:55:27", "end": "2026-07-30T00:40:38", "elapsed_s": 2711, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:52:32", "start": "2026-07-29T23:55:27", "end": "2026-07-30T00:00:04", "elapsed_s": 277, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:54:33", "start": "2026-07-29T23:57:31", "end": "2026-07-30T00:02:15", "elapsed_s": 284, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0789, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-29T23:54:44", "start": "2026-07-29T23:58:01", "end": "2026-07-30T00:02:15", "elapsed_s": 254, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0706, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:00:54", "start": "2026-07-30T00:03:08", "end": "2026-07-30T00:19:30", "elapsed_s": 982, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2728, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:00:54", "start": "2026-07-30T00:04:09", "end": "2026-07-30T00:20:01", "elapsed_s": 952, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2644, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:03:06", "start": "2026-07-30T00:05:11", "end": "2026-07-30T00:40:38", "elapsed_s": 2127, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5908, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:03:06", "start": "2026-07-30T00:06:43", "end": "2026-07-30T00:40:41", "elapsed_s": 2038, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5661, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:20:22", "start": "2026-07-30T00:22:35", "end": "2026-07-30T00:24:12", "elapsed_s": 97, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:20:51", "start": "2026-07-30T00:23:05", "end": "2026-07-30T00:24:44", "elapsed_s": 99, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:25:12", "start": "2026-07-30T00:28:12", "end": "2026-07-30T00:40:34", "elapsed_s": 742, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:25:33", "start": "2026-07-30T00:28:43", "end": "2026-07-30T00:32:27", "elapsed_s": 224, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0622, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:33:17", "start": "2026-07-30T00:36:23", "end": "2026-07-30T00:40:34", "elapsed_s": 251, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0697, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:40:40", "start": "2026-07-30T00:44:33", "end": "2026-07-30T00:50:45", "elapsed_s": 372, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:41:24", "start": "2026-07-30T00:45:34", "end": "2026-07-30T00:51:15", "elapsed_s": 341, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0947, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:41:26", "start": "2026-07-30T00:46:05", "end": "2026-07-30T00:51:15", "elapsed_s": 310, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0861, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:41:27", "start": "2026-07-30T00:46:05", "end": "2026-07-30T00:51:13", "elapsed_s": 308, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0856, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:41:30", "start": "2026-07-30T00:47:06", "end": "2026-07-30T01:02:02", "elapsed_s": 896, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2489, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:51:51", "start": "2026-07-30T00:54:45", "end": "2026-07-30T01:02:31", "elapsed_s": 466, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1294, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:52:03", "start": "2026-07-30T00:54:45", "end": "2026-07-30T00:57:06", "elapsed_s": 141, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0392, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:52:06", "start": "2026-07-30T00:56:17", "end": "2026-07-30T01:01:59", "elapsed_s": 342, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.095, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:52:08", "start": "2026-07-30T00:58:06", "end": "2026-07-30T01:03:01", "elapsed_s": 295, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0819, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T00:57:09", "start": "2026-07-30T01:00:14", "end": "2026-07-30T01:02:31", "elapsed_s": 137, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0381, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:02:48", "start": "2026-07-30T01:11:06", "end": "2026-07-30T01:12:16", "elapsed_s": 70, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:02:53", "start": "2026-07-30T01:11:36", "end": "2026-07-30T01:20:31", "elapsed_s": 535, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1486, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:03:21", "start": "2026-07-30T01:11:36", "end": "2026-07-30T01:16:07", "elapsed_s": 271, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0753, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:03:37", "start": "2026-07-30T01:12:43", "end": "2026-07-30T01:17:38", "elapsed_s": 295, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0819, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:03:52", "start": "2026-07-30T01:13:39", "end": "2026-07-30T01:26:21", "elapsed_s": 762, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:13:10", "start": "2026-07-30T01:15:41", "end": "2026-07-30T01:20:45", "elapsed_s": 304, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0844, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:16:10", "start": "2026-07-30T01:18:15", "end": "2026-07-30T01:33:41", "elapsed_s": 926, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2572, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:18:29", "start": "2026-07-30T01:20:45", "end": "2026-07-30T01:33:46", "elapsed_s": 781, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:21:34", "start": "2026-07-30T01:23:45", "end": "2026-07-30T01:33:41", "elapsed_s": 596, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1656, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:21:36", "start": "2026-07-30T01:24:39", "end": "2026-07-30T01:33:38", "elapsed_s": 539, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1497, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:27:17", "start": "2026-07-30T01:30:30", "end": "2026-07-30T01:33:43", "elapsed_s": 193, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:33:43", "start": "2026-07-30T01:37:39", "end": "2026-07-30T01:37:43", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:34:29", "start": "2026-07-30T01:38:41", "end": "2026-07-30T01:45:02", "elapsed_s": 381, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:34:31", "start": "2026-07-30T01:38:41", "end": "2026-07-30T01:44:39", "elapsed_s": 358, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0994, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:34:35", "start": "2026-07-30T01:40:12", "end": "2026-07-30T01:43:43", "elapsed_s": 211, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0586, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:34:37", "start": "2026-07-30T01:40:43", "end": "2026-07-30T01:44:42", "elapsed_s": 239, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0664, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:38:32", "start": "2026-07-30T01:41:45", "end": "2026-07-30T01:44:39", "elapsed_s": 174, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0483, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:44:38", "start": "2026-07-30T01:46:51", "end": "2026-07-30T01:50:53", "elapsed_s": 242, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0672, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:44:41", "start": "2026-07-30T01:46:51", "end": "2026-07-30T01:56:11", "elapsed_s": 560, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:45:28", "start": "2026-07-30T01:51:59", "end": "2026-07-30T01:55:48", "elapsed_s": 229, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0636, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:45:32", "start": "2026-07-30T01:51:59", "end": "2026-07-30T02:11:17", "elapsed_s": 1158, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:45:53", "start": "2026-07-30T01:54:32", "end": "2026-07-30T02:06:13", "elapsed_s": 701, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1947, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:51:45", "start": "2026-07-30T01:54:32", "end": "2026-07-30T02:06:13", "elapsed_s": 701, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1947, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:56:13", "start": "2026-07-30T01:59:38", "end": "2026-07-30T02:06:13", "elapsed_s": 395, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T01:56:54", "start": "2026-07-30T02:00:09", "end": "2026-07-30T02:06:13", "elapsed_s": 364, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:07:04", "start": "2026-07-30T02:09:20", "end": "2026-07-30T02:38:25", "elapsed_s": 1745, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4847, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:07:04", "start": "2026-07-30T02:09:20", "end": "2026-07-30T02:38:25", "elapsed_s": 1745, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4847, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:07:04", "start": "2026-07-30T02:09:50", "end": "2026-07-30T02:38:27", "elapsed_s": 1717, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:07:04", "start": "2026-07-30T02:09:50", "end": "2026-07-30T02:38:47", "elapsed_s": 1737, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4825, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:12:09", "start": "2026-07-30T02:14:26", "end": "2026-07-30T02:38:27", "elapsed_s": 1441, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:38:29", "start": "2026-07-30T02:40:48", "end": "2026-07-30T02:49:04", "elapsed_s": 496, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1378, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:39:19", "start": "2026-07-30T02:41:59", "end": "2026-07-30T02:47:47", "elapsed_s": 348, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0967, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:39:19", "start": "2026-07-30T02:41:59", "end": "2026-07-30T02:47:47", "elapsed_s": 348, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0967, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:39:21", "start": "2026-07-30T02:42:29", "end": "2026-07-30T02:44:13", "elapsed_s": 104, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:40:10", "start": "2026-07-30T02:42:29", "end": "2026-07-30T02:44:28", "elapsed_s": 119, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0331, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:44:15", "start": "2026-07-30T02:46:34", "end": "2026-07-30T02:59:42", "elapsed_s": 788, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:45:18", "start": "2026-07-30T02:48:49", "end": "2026-07-30T02:59:44", "elapsed_s": 655, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1819, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:47:50", "start": "2026-07-30T02:50:08", "end": "2026-07-30T02:59:42", "elapsed_s": 574, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1594, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:47:50", "start": "2026-07-30T02:50:08", "end": "2026-07-30T02:59:44", "elapsed_s": 576, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.16, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:49:54", "start": "2026-07-30T02:52:41", "end": "2026-07-30T02:59:48", "elapsed_s": 427, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T02:59:44", "start": "2026-07-30T03:01:52", "end": "2026-07-30T03:10:39", "elapsed_s": 527, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1464, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:00:32", "start": "2026-07-30T03:03:24", "end": "2026-07-30T03:10:42", "elapsed_s": 438, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:00:33", "start": "2026-07-30T03:03:54", "end": "2026-07-30T03:11:22", "elapsed_s": 448, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:00:40", "start": "2026-07-30T03:03:54", "end": "2026-07-30T03:10:42", "elapsed_s": 408, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:00:42", "start": "2026-07-30T03:03:54", "end": "2026-07-30T03:10:42", "elapsed_s": 408, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:11:30", "start": "2026-07-30T03:20:47", "end": "2026-07-30T03:21:24", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:11:33", "start": "2026-07-30T03:21:18", "end": "2026-07-30T03:21:49", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:11:33", "start": "2026-07-30T03:22:50", "end": "2026-07-30T03:32:36", "elapsed_s": 586, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1628, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:11:34", "start": "2026-07-30T03:22:50", "end": "2026-07-30T03:32:03", "elapsed_s": 553, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:12:11", "start": "2026-07-30T03:23:51", "end": "2026-07-30T03:29:23", "elapsed_s": 332, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0922, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:22:20", "start": "2026-07-30T03:25:54", "end": "2026-07-30T03:32:05", "elapsed_s": 371, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:22:39", "start": "2026-07-30T03:26:25", "end": "2026-07-30T03:29:50", "elapsed_s": 205, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0569, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:30:33", "start": "2026-07-30T03:33:02", "end": "2026-07-30T03:42:46", "elapsed_s": 584, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1622, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:30:40", "start": "2026-07-30T03:33:02", "end": "2026-07-30T03:42:46", "elapsed_s": 584, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1622, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:32:53", "start": "2026-07-30T03:35:04", "end": "2026-07-30T03:43:11", "elapsed_s": 487, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:32:55", "start": "2026-07-30T03:35:35", "end": "2026-07-30T03:35:49", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:33:28", "start": "2026-07-30T03:36:05", "end": "2026-07-30T03:42:46", "elapsed_s": 401, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:35:52", "start": "2026-07-30T03:38:08", "end": "2026-07-30T03:42:44", "elapsed_s": 276, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:43:33", "start": "2026-07-30T03:45:46", "end": "2026-07-30T03:53:44", "elapsed_s": 478, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1328, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:43:38", "start": "2026-07-30T03:45:46", "end": "2026-07-30T03:53:40", "elapsed_s": 474, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1317, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:43:40", "start": "2026-07-30T03:45:46", "end": "2026-07-30T03:53:44", "elapsed_s": 478, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1328, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:43:43", "start": "2026-07-30T03:45:46", "end": "2026-07-30T04:26:42", "elapsed_s": 2456, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6822, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:44:00", "start": "2026-07-30T03:47:23", "end": "2026-07-30T03:53:40", "elapsed_s": 377, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:54:31", "start": "2026-07-30T03:58:38", "end": "2026-07-30T04:15:14", "elapsed_s": 996, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:54:31", "start": "2026-07-30T03:59:40", "end": "2026-07-30T04:15:17", "elapsed_s": 937, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:54:34", "start": "2026-07-30T03:59:40", "end": "2026-07-30T04:00:41", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T03:54:34", "start": "2026-07-30T03:59:40", "end": "2026-07-30T04:15:55", "elapsed_s": 975, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2708, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:01:47", "start": "2026-07-30T04:04:15", "end": "2026-07-30T04:15:55", "elapsed_s": 700, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1944, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:15:57", "start": "2026-07-30T04:18:02", "end": "2026-07-30T04:26:42", "elapsed_s": 520, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1444, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:16:04", "start": "2026-07-30T04:18:32", "end": "2026-07-30T04:26:39", "elapsed_s": 487, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:16:09", "start": "2026-07-30T04:19:33", "end": "2026-07-30T04:26:51", "elapsed_s": 438, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:16:45", "start": "2026-07-30T04:20:04", "end": "2026-07-30T04:26:51", "elapsed_s": 407, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:27:29", "start": "2026-07-30T04:29:43", "end": "2026-07-30T04:38:01", "elapsed_s": 498, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:27:34", "start": "2026-07-30T04:30:44", "end": "2026-07-30T04:38:01", "elapsed_s": 437, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:27:38", "start": "2026-07-30T04:33:47", "end": "2026-07-30T05:00:18", "elapsed_s": 1591, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:27:42", "start": "2026-07-30T04:35:49", "end": "2026-07-30T04:59:45", "elapsed_s": 1436, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3989, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:27:48", "start": "2026-07-30T04:36:19", "end": "2026-07-30T04:38:04", "elapsed_s": 105, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0292, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:38:03", "start": "2026-07-30T04:40:55", "end": "2026-07-30T04:50:49", "elapsed_s": 594, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.165, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:38:50", "start": "2026-07-30T04:41:23", "end": "2026-07-30T04:42:24", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:38:53", "start": "2026-07-30T04:41:43", "end": "2026-07-30T04:49:00", "elapsed_s": 437, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:43:13", "start": "2026-07-30T04:45:57", "end": "2026-07-30T04:49:03", "elapsed_s": 186, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:49:05", "start": "2026-07-30T04:53:02", "end": "2026-07-30T07:34:51", "elapsed_s": 9709, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.6969, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:49:51", "start": "2026-07-30T04:53:02", "end": "2026-07-30T07:18:44", "elapsed_s": 8742, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.4283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:51:55", "start": "2026-07-30T04:55:04", "end": "2026-07-30T04:59:45", "elapsed_s": 281, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0781, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:59:47", "start": "2026-07-30T05:02:40", "end": "2026-07-30T06:07:33", "elapsed_s": 3893, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0814, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T04:59:48", "start": "2026-07-30T05:03:11", "end": "2026-07-30T05:28:14", "elapsed_s": 1503, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.4175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T05:01:10", "start": "2026-07-30T05:03:41", "end": "2026-07-30T06:07:56", "elapsed_s": 3855, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0708, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T05:29:04", "start": "2026-07-30T05:31:31", "end": "2026-07-30T06:28:44", "elapsed_s": 3433, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.9536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T06:08:23", "start": "2026-07-30T06:10:56", "end": "2026-07-30T06:24:06", "elapsed_s": 790, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T06:08:45", "start": "2026-07-30T06:10:56", "end": "2026-07-30T06:24:06", "elapsed_s": 790, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T06:24:08", "start": "2026-07-30T06:26:12", "end": "2026-07-30T07:47:05", "elapsed_s": 4853, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.3481, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T06:24:08", "start": "2026-07-30T06:26:12", "end": "2026-07-30T06:47:56", "elapsed_s": 1304, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3622, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T06:28:47", "start": "2026-07-30T06:31:16", "end": "2026-07-30T06:37:56", "elapsed_s": 400, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T06:38:46", "start": "2026-07-30T06:41:24", "end": "2026-07-30T07:18:20", "elapsed_s": 2216, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.6156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T06:49:02", "start": "2026-07-30T06:52:32", "end": "2026-07-30T07:47:05", "elapsed_s": 3273, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.9092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37923168", "job_name": "low_floor_extract", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-30T06:58:30", "start": "2026-07-30T06:58:36", "end": "2026-07-30T07:02:55", "elapsed_s": 259, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0719, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:19:12", "start": "2026-07-30T07:21:22", "end": "2026-07-30T07:27:57", "elapsed_s": 395, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:19:36", "start": "2026-07-30T07:25:55", "end": "2026-07-30T07:34:31", "elapsed_s": 516, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1433, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:28:48", "start": "2026-07-30T07:30:57", "end": "2026-07-30T07:36:14", "elapsed_s": 317, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0881, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:35:22", "start": "2026-07-30T07:37:32", "end": "2026-07-30T07:40:05", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:35:41", "start": "2026-07-30T07:38:33", "end": "2026-07-30T07:46:38", "elapsed_s": 485, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1347, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:37:05", "start": "2026-07-30T07:41:34", "end": "2026-07-30T07:48:09", "elapsed_s": 395, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:40:56", "start": "2026-07-30T07:43:06", "end": "2026-07-30T07:48:39", "elapsed_s": 333, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0925, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:47:45", "start": "2026-07-30T07:49:57", "end": "2026-07-30T08:16:39", "elapsed_s": 1602, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.445, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:47:54", "start": "2026-07-30T07:50:40", "end": "2026-07-30T08:01:43", "elapsed_s": 663, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1842, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:48:00", "start": "2026-07-30T07:50:48", "end": "2026-07-30T08:01:23", "elapsed_s": 635, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1764, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:48:58", "start": "2026-07-30T07:50:59", "end": "2026-07-30T08:01:23", "elapsed_s": 624, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1733, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:49:29", "start": "2026-07-30T07:51:59", "end": "2026-07-30T07:58:59", "elapsed_s": 420, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T07:59:48", "start": "2026-07-30T08:02:47", "end": "2026-07-30T08:30:54", "elapsed_s": 1687, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4686, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:02:12", "start": "2026-07-30T08:04:18", "end": "2026-07-30T08:11:50", "elapsed_s": 452, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:02:13", "start": "2026-07-30T08:04:59", "end": "2026-07-30T08:11:06", "elapsed_s": 367, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:03:07", "start": "2026-07-30T08:05:18", "end": "2026-07-30T08:16:59", "elapsed_s": 701, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1947, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:11:56", "start": "2026-07-30T08:15:24", "end": "2026-07-30T08:19:57", "elapsed_s": 273, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0758, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:12:46", "start": "2026-07-30T08:16:25", "end": "2026-07-30T09:06:42", "elapsed_s": 3017, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8381, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:17:45", "start": "2026-07-30T08:20:58", "end": "2026-07-30T08:45:02", "elapsed_s": 1444, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:18:05", "start": "2026-07-30T08:20:58", "end": "2026-07-30T09:09:58", "elapsed_s": 2940, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:20:49", "start": "2026-07-30T08:23:30", "end": "2026-07-30T08:26:00", "elapsed_s": 150, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0417, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:26:50", "start": "2026-07-30T08:30:34", "end": "2026-07-30T08:36:37", "elapsed_s": 363, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:32:17", "start": "2026-07-30T08:34:30", "end": "2026-07-30T09:53:49", "elapsed_s": 4759, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.3219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:37:28", "start": "2026-07-30T08:39:39", "end": "2026-07-30T08:44:24", "elapsed_s": 285, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0792, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:45:05", "start": "2026-07-30T08:48:44", "end": "2026-07-30T08:54:17", "elapsed_s": 333, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0925, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:45:14", "start": "2026-07-30T08:49:03", "end": "2026-07-30T08:54:05", "elapsed_s": 302, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0839, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:54:56", "start": "2026-07-30T08:57:05", "end": "2026-07-30T08:58:05", "elapsed_s": 60, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:55:09", "start": "2026-07-30T08:57:20", "end": "2026-07-30T08:58:05", "elapsed_s": 45, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:58:54", "start": "2026-07-30T09:01:05", "end": "2026-07-30T09:06:06", "elapsed_s": 301, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0836, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T08:58:54", "start": "2026-07-30T09:01:05", "end": "2026-07-30T09:06:25", "elapsed_s": 320, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0889, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T09:06:55", "start": "2026-07-30T09:08:57", "end": "2026-07-30T09:53:49", "elapsed_s": 2692, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.7478, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T09:07:19", "start": "2026-07-30T09:09:27", "end": "2026-07-30T09:53:51", "elapsed_s": 2664, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.74, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T09:07:32", "start": "2026-07-30T09:09:58", "end": "2026-07-30T09:53:51", "elapsed_s": 2633, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.7314, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T09:10:51", "start": "2026-07-30T09:13:59", "end": "2026-07-30T09:15:09", "elapsed_s": 70, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T09:15:59", "start": "2026-07-30T09:19:37", "end": "2026-07-30T09:53:51", "elapsed_s": 2054, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5706, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T09:54:39", "start": "2026-07-30T09:56:41", "end": "2026-07-30T10:11:17", "elapsed_s": 876, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2433, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T09:54:42", "start": "2026-07-30T09:57:42", "end": "2026-07-30T10:07:49", "elapsed_s": 607, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1686, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T09:54:42", "start": "2026-07-30T09:57:55", "end": "2026-07-30T10:08:18", "elapsed_s": 623, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1731, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T09:54:44", "start": "2026-07-30T09:58:42", "end": "2026-07-30T10:07:36", "elapsed_s": 534, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1483, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T09:54:49", "start": "2026-07-30T10:01:14", "end": "2026-07-30T10:07:49", "elapsed_s": 395, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37925450", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-30T09:59:47", "start": "2026-07-30T10:01:44", "end": "2026-07-30T10:14:39", "elapsed_s": 775, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37925451", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-30T09:59:47", "start": "2026-07-30T10:01:44", "end": "2026-07-30T10:03:32", "elapsed_s": 108, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.03, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37925452", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-30T09:59:47", "start": "2026-07-30T10:03:46", "end": "2026-07-30T10:19:08", "elapsed_s": 922, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2561, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37925453", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-30T09:59:48", "start": "2026-07-30T10:03:15", "end": "2026-07-30T10:28:44", "elapsed_s": 1529, "nodes": 1, "gpus": 2, "gpu_type": "l40s", "gpu_hours": 0.8494, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:07:52", "start": "2026-07-30T10:10:02", "end": "2026-07-30T10:12:52", "elapsed_s": 170, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:08:29", "start": "2026-07-30T10:10:51", "end": "2026-07-30T10:16:46", "elapsed_s": 355, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0986, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:08:41", "start": "2026-07-30T10:13:09", "end": "2026-07-30T10:16:46", "elapsed_s": 217, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:09:07", "start": "2026-07-30T10:13:21", "end": "2026-07-30T10:14:18", "elapsed_s": 57, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0158, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:12:25", "start": "2026-07-30T10:15:53", "end": "2026-07-30T10:16:24", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:12:54", "start": "2026-07-30T10:16:09", "end": "2026-07-30T10:32:03", "elapsed_s": 954, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.265, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37925554", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-30T10:14:17", "start": "2026-07-30T10:16:09", "end": "2026-07-30T10:48:11", "elapsed_s": 1922, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:15:07", "start": "2026-07-30T10:17:17", "end": "2026-07-30T10:35:56", "elapsed_s": 1119, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:17:14", "start": "2026-07-30T10:19:56", "end": "2026-07-30T10:34:04", "elapsed_s": 848, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:17:34", "start": "2026-07-30T10:20:26", "end": "2026-07-30T10:35:05", "elapsed_s": 879, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:17:52", "start": "2026-07-30T10:22:27", "end": "2026-07-30T10:36:00", "elapsed_s": 813, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2258, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:32:55", "start": "2026-07-30T10:35:14", "end": "2026-07-30T10:40:16", "elapsed_s": 302, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0839, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:34:07", "start": "2026-07-30T10:36:19", "end": "2026-07-30T10:45:24", "elapsed_s": 545, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:35:56", "start": "2026-07-30T10:38:04", "end": "2026-07-30T10:40:02", "elapsed_s": 118, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0328, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:36:47", "start": "2026-07-30T10:39:08", "end": "2026-07-30T10:40:08", "elapsed_s": 60, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:36:50", "start": "2026-07-30T10:39:08", "end": "2026-07-30T10:40:39", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:40:53", "start": "2026-07-30T10:44:27", "end": "2026-07-30T10:45:46", "elapsed_s": 79, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:40:59", "start": "2026-07-30T10:44:27", "end": "2026-07-30T10:47:12", "elapsed_s": 165, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0458, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:41:06", "start": "2026-07-30T10:44:27", "end": "2026-07-30T10:46:49", "elapsed_s": 142, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:41:45", "start": "2026-07-30T10:44:27", "end": "2026-07-30T11:01:19", "elapsed_s": 1012, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2811, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:46:14", "start": "2026-07-30T10:48:18", "end": "2026-07-30T10:48:42", "elapsed_s": 24, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:46:37", "start": "2026-07-30T10:48:39", "end": "2026-07-30T10:49:18", "elapsed_s": 39, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:47:44", "start": "2026-07-30T10:50:45", "end": "2026-07-30T10:56:06", "elapsed_s": 321, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0892, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:48:04", "start": "2026-07-30T10:50:45", "end": "2026-07-30T11:00:59", "elapsed_s": 614, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1706, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:49:41", "start": "2026-07-30T10:53:18", "end": "2026-07-30T10:55:41", "elapsed_s": 143, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:50:15", "start": "2026-07-30T10:53:18", "end": "2026-07-30T10:57:01", "elapsed_s": 223, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0619, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:56:30", "start": "2026-07-30T10:58:46", "end": "2026-07-30T11:01:14", "elapsed_s": 148, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0411, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:56:56", "start": "2026-07-30T10:59:31", "end": "2026-07-30T11:03:20", "elapsed_s": 229, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0636, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T10:57:52", "start": "2026-07-30T11:00:19", "end": "2026-07-30T11:17:32", "elapsed_s": 1033, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2869, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:02:05", "start": "2026-07-30T11:04:20", "end": "2026-07-30T11:04:54", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:02:08", "start": "2026-07-30T11:04:20", "end": "2026-07-30T11:05:19", "elapsed_s": 59, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:02:20", "start": "2026-07-30T11:04:25", "end": "2026-07-30T11:06:56", "elapsed_s": 151, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:04:12", "start": "2026-07-30T11:06:20", "end": "2026-07-30T11:12:20", "elapsed_s": 360, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:06:01", "start": "2026-07-30T11:08:20", "end": "2026-07-30T11:16:20", "elapsed_s": 480, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:06:26", "start": "2026-07-30T11:08:27", "end": "2026-07-30T11:17:12", "elapsed_s": 525, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1458, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:08:01", "start": "2026-07-30T11:10:59", "end": "2026-07-30T11:17:47", "elapsed_s": 408, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:13:09", "start": "2026-07-30T11:15:20", "end": "2026-07-30T11:17:29", "elapsed_s": 129, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:17:12", "start": "2026-07-30T11:19:17", "end": "2026-07-30T11:32:13", "elapsed_s": 776, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:18:17", "start": "2026-07-30T11:20:35", "end": "2026-07-30T11:29:18", "elapsed_s": 523, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1453, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:18:22", "start": "2026-07-30T11:20:35", "end": "2026-07-30T11:21:24", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:18:29", "start": "2026-07-30T11:20:35", "end": "2026-07-30T11:29:13", "elapsed_s": 518, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1439, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:18:39", "start": "2026-07-30T11:21:06", "end": "2026-07-30T11:29:41", "elapsed_s": 515, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1431, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:21:26", "start": "2026-07-30T11:24:04", "end": "2026-07-30T11:26:07", "elapsed_s": 123, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0342, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:27:01", "start": "2026-07-30T11:29:11", "end": "2026-07-30T12:19:25", "elapsed_s": 3014, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:29:14", "start": "2026-07-30T11:33:14", "end": "2026-07-30T12:21:22", "elapsed_s": 2888, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:29:19", "start": "2026-07-30T11:33:14", "end": "2026-07-30T11:38:53", "elapsed_s": 339, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0942, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:30:34", "start": "2026-07-30T11:33:14", "end": "2026-07-30T11:38:53", "elapsed_s": 339, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0942, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:33:04", "start": "2026-07-30T11:35:16", "end": "2026-07-30T12:11:57", "elapsed_s": 2201, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:38:55", "start": "2026-07-30T11:41:20", "end": "2026-07-30T11:45:23", "elapsed_s": 243, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0675, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:38:55", "start": "2026-07-30T11:41:20", "end": "2026-07-30T11:41:27", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:42:23", "start": "2026-07-30T11:45:48", "end": "2026-07-30T12:47:48", "elapsed_s": 3720, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T11:46:16", "start": "2026-07-30T11:48:51", "end": "2026-07-30T12:22:20", "elapsed_s": 2009, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5581, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:12:46", "start": "2026-07-30T12:16:15", "end": "2026-07-30T12:18:49", "elapsed_s": 154, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0428, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:19:46", "start": "2026-07-30T12:23:21", "end": "2026-07-30T12:28:28", "elapsed_s": 307, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0853, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:20:15", "start": "2026-07-30T12:23:21", "end": "2026-07-30T12:47:51", "elapsed_s": 1470, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:22:14", "start": "2026-07-30T12:24:22", "end": "2026-07-30T12:25:23", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:22:23", "start": "2026-07-30T12:25:22", "end": "2026-07-30T12:47:54", "elapsed_s": 1352, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3756, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:26:12", "start": "2026-07-30T12:28:24", "end": "2026-07-30T12:31:24", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:28:31", "start": "2026-07-30T12:30:56", "end": "2026-07-30T12:47:48", "elapsed_s": 1012, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2811, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:32:18", "start": "2026-07-30T12:35:19", "end": "2026-07-30T12:47:48", "elapsed_s": 749, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:47:49", "start": "2026-07-30T12:50:25", "end": "2026-07-30T12:58:58", "elapsed_s": 513, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:47:50", "start": "2026-07-30T12:50:25", "end": "2026-07-30T12:58:56", "elapsed_s": 511, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:48:37", "start": "2026-07-30T12:50:44", "end": "2026-07-30T12:58:58", "elapsed_s": 494, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:48:41", "start": "2026-07-30T12:50:44", "end": "2026-07-30T12:53:25", "elapsed_s": 161, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0447, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:48:43", "start": "2026-07-30T12:50:44", "end": "2026-07-30T12:53:25", "elapsed_s": 161, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0447, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:54:15", "start": "2026-07-30T12:57:20", "end": "2026-07-30T12:58:56", "elapsed_s": 96, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:54:32", "start": "2026-07-30T12:57:40", "end": "2026-07-30T12:57:45", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:58:36", "start": "2026-07-30T13:00:49", "end": "2026-07-30T13:35:07", "elapsed_s": 2058, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5717, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:59:45", "start": "2026-07-30T13:01:54", "end": "2026-07-30T13:13:49", "elapsed_s": 715, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1986, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:59:46", "start": "2026-07-30T13:01:56", "end": "2026-07-30T13:17:17", "elapsed_s": 921, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2558, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:59:48", "start": "2026-07-30T13:01:56", "end": "2026-07-30T13:17:53", "elapsed_s": 957, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2658, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T12:59:49", "start": "2026-07-30T13:02:25", "end": "2026-07-30T13:14:22", "elapsed_s": 717, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1992, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:14:38", "start": "2026-07-30T13:18:59", "end": "2026-07-30T13:21:40", "elapsed_s": 161, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0447, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:15:13", "start": "2026-07-30T13:19:25", "end": "2026-07-30T13:23:00", "elapsed_s": 215, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:17:19", "start": "2026-07-30T13:19:42", "end": "2026-07-30T13:22:26", "elapsed_s": 164, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0456, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:18:43", "start": "2026-07-30T13:21:18", "end": "2026-07-30T13:30:21", "elapsed_s": 543, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:22:28", "start": "2026-07-30T13:24:48", "end": "2026-07-30T13:29:47", "elapsed_s": 299, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0831, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:22:30", "start": "2026-07-30T13:24:48", "end": "2026-07-30T13:29:26", "elapsed_s": 278, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0772, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:23:49", "start": "2026-07-30T13:26:13", "end": "2026-07-30T13:26:33", "elapsed_s": 20, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0056, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:27:25", "start": "2026-07-30T13:29:47", "end": "2026-07-30T13:30:48", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:30:17", "start": "2026-07-30T13:32:19", "end": "2026-07-30T13:36:54", "elapsed_s": 275, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0764, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:30:42", "start": "2026-07-30T13:32:49", "end": "2026-07-30T13:37:07", "elapsed_s": 258, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0717, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:31:25", "start": "2026-07-30T13:35:02", "end": "2026-07-30T13:37:30", "elapsed_s": 148, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0411, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:31:37", "start": "2026-07-30T13:35:27", "end": "2026-07-30T13:37:50", "elapsed_s": 143, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:35:56", "start": "2026-07-30T13:38:02", "end": "2026-07-30T13:41:34", "elapsed_s": 212, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0589, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:36:57", "start": "2026-07-30T13:38:59", "end": "2026-07-30T13:40:14", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:37:57", "start": "2026-07-30T13:40:12", "end": "2026-07-30T13:41:26", "elapsed_s": 74, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0206, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:38:20", "start": "2026-07-30T13:40:27", "end": "2026-07-30T13:42:39", "elapsed_s": 132, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0367, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:38:39", "start": "2026-07-30T13:41:26", "end": "2026-07-30T13:42:04", "elapsed_s": 38, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:41:05", "start": "2026-07-30T13:43:26", "end": "2026-07-30T13:50:51", "elapsed_s": 445, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:42:16", "start": "2026-07-30T13:44:26", "end": "2026-07-30T13:45:10", "elapsed_s": 44, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:42:40", "start": "2026-07-30T13:44:57", "end": "2026-07-30T13:45:18", "elapsed_s": 21, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:43:10", "start": "2026-07-30T13:45:57", "end": "2026-07-30T13:48:41", "elapsed_s": 164, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0456, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:43:28", "start": "2026-07-30T13:45:57", "end": "2026-07-30T13:47:40", "elapsed_s": 103, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0286, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:45:12", "start": "2026-07-30T13:48:06", "end": "2026-07-30T13:52:08", "elapsed_s": 242, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0672, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:46:08", "start": "2026-07-30T13:48:27", "end": "2026-07-30T13:51:24", "elapsed_s": 177, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0492, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:47:42", "start": "2026-07-30T13:49:57", "end": "2026-07-30T13:52:08", "elapsed_s": 131, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0364, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:49:31", "start": "2026-07-30T13:51:40", "end": "2026-07-30T13:52:33", "elapsed_s": 53, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:51:44", "start": "2026-07-30T13:53:47", "end": "2026-07-30T13:54:42", "elapsed_s": 55, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:52:31", "start": "2026-07-30T13:54:33", "end": "2026-07-30T14:00:52", "elapsed_s": 379, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:52:58", "start": "2026-07-30T13:55:12", "end": "2026-07-30T14:00:30", "elapsed_s": 318, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0883, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:52:58", "start": "2026-07-30T13:55:26", "end": "2026-07-30T13:55:58", "elapsed_s": 32, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0089, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:53:25", "start": "2026-07-30T13:55:26", "end": "2026-07-30T14:03:19", "elapsed_s": 473, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1314, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:55:32", "start": "2026-07-30T13:57:34", "end": "2026-07-30T13:58:46", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:56:00", "start": "2026-07-30T13:58:15", "end": "2026-07-30T13:59:26", "elapsed_s": 71, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T13:59:36", "start": "2026-07-30T14:01:39", "end": "2026-07-30T14:02:53", "elapsed_s": 74, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0206, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:00:16", "start": "2026-07-30T14:02:18", "end": "2026-07-30T14:05:24", "elapsed_s": 186, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:01:38", "start": "2026-07-30T14:04:19", "end": "2026-07-30T14:04:21", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:01:45", "start": "2026-07-30T14:04:19", "end": "2026-07-30T14:05:55", "elapsed_s": 96, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:03:43", "start": "2026-07-30T14:06:21", "end": "2026-07-30T14:06:39", "elapsed_s": 18, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.005, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:04:09", "start": "2026-07-30T14:06:21", "end": "2026-07-30T14:12:17", "elapsed_s": 356, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0989, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:05:10", "start": "2026-07-30T14:07:22", "end": "2026-07-30T14:08:17", "elapsed_s": 55, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:06:14", "start": "2026-07-30T14:09:24", "end": "2026-07-30T14:12:27", "elapsed_s": 183, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:06:48", "start": "2026-07-30T14:09:24", "end": "2026-07-30T14:11:52", "elapsed_s": 148, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0411, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:07:31", "start": "2026-07-30T14:09:54", "end": "2026-07-30T14:10:39", "elapsed_s": 45, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:09:14", "start": "2026-07-30T14:11:26", "end": "2026-07-30T14:13:50", "elapsed_s": 144, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.04, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:11:30", "start": "2026-07-30T14:14:59", "end": "2026-07-30T14:22:36", "elapsed_s": 457, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:12:41", "start": "2026-07-30T14:14:59", "end": "2026-07-30T14:15:25", "elapsed_s": 26, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0072, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:13:06", "start": "2026-07-30T14:15:30", "end": "2026-07-30T14:23:13", "elapsed_s": 463, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1286, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:13:16", "start": "2026-07-30T14:16:00", "end": "2026-07-30T14:22:52", "elapsed_s": 412, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:14:41", "start": "2026-07-30T14:17:01", "end": "2026-07-30T14:24:53", "elapsed_s": 472, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:16:15", "start": "2026-07-30T14:18:33", "end": "2026-07-30T14:24:56", "elapsed_s": 383, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1064, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:23:28", "start": "2026-07-30T14:26:09", "end": "2026-07-30T14:27:47", "elapsed_s": 98, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:23:41", "start": "2026-07-30T14:26:09", "end": "2026-07-30T14:28:11", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:24:04", "start": "2026-07-30T14:26:09", "end": "2026-07-30T14:38:20", "elapsed_s": 731, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:25:42", "start": "2026-07-30T14:28:41", "end": "2026-07-30T14:35:05", "elapsed_s": 384, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:25:46", "start": "2026-07-30T14:30:12", "end": "2026-07-30T14:34:10", "elapsed_s": 238, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0661, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:28:37", "start": "2026-07-30T14:30:43", "end": "2026-07-30T14:33:16", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:29:03", "start": "2026-07-30T14:31:14", "end": "2026-07-30T14:35:20", "elapsed_s": 246, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0683, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:34:05", "start": "2026-07-30T14:36:18", "end": "2026-07-30T14:37:36", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:35:01", "start": "2026-07-30T14:37:19", "end": "2026-07-30T14:38:25", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:35:55", "start": "2026-07-30T14:38:25", "end": "2026-07-30T14:50:13", "elapsed_s": 708, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1967, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:36:17", "start": "2026-07-30T14:38:25", "end": "2026-07-30T14:50:33", "elapsed_s": 728, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:38:27", "start": "2026-07-30T14:40:30", "end": "2026-07-30T14:42:25", "elapsed_s": 115, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:39:09", "start": "2026-07-30T14:41:12", "end": "2026-07-30T14:42:38", "elapsed_s": 86, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:39:14", "start": "2026-07-30T14:42:38", "end": "2026-07-30T14:51:24", "elapsed_s": 526, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:43:14", "start": "2026-07-30T14:48:00", "end": "2026-07-30T14:51:24", "elapsed_s": 204, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0567, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:43:28", "start": "2026-07-30T14:48:00", "end": "2026-07-30T14:48:13", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:49:10", "start": "2026-07-30T14:52:26", "end": "2026-07-30T14:57:27", "elapsed_s": 301, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0836, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:51:24", "start": "2026-07-30T14:53:27", "end": "2026-07-30T14:59:05", "elapsed_s": 338, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0939, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:51:41", "start": "2026-07-30T14:53:52", "end": "2026-07-30T14:56:38", "elapsed_s": 166, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:52:14", "start": "2026-07-30T14:54:26", "end": "2026-07-30T14:55:37", "elapsed_s": 71, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:52:32", "start": "2026-07-30T14:54:36", "end": "2026-07-30T15:00:01", "elapsed_s": 325, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0903, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:55:40", "start": "2026-07-30T14:57:50", "end": "2026-07-30T15:00:26", "elapsed_s": 156, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0433, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:57:28", "start": "2026-07-30T14:59:33", "end": "2026-07-30T15:36:05", "elapsed_s": 2192, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6089, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:58:16", "start": "2026-07-30T15:00:26", "end": "2026-07-30T16:36:50", "elapsed_s": 5784, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.6067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T14:59:54", "start": "2026-07-30T15:02:26", "end": "2026-07-30T15:05:26", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:01:00", "start": "2026-07-30T15:03:06", "end": "2026-07-30T15:09:50", "elapsed_s": 404, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:01:15", "start": "2026-07-30T15:03:19", "end": "2026-07-30T15:35:26", "elapsed_s": 1927, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:06:16", "start": "2026-07-30T15:08:19", "end": "2026-07-30T15:16:27", "elapsed_s": 488, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:10:42", "start": "2026-07-30T15:13:25", "end": "2026-07-30T15:16:44", "elapsed_s": 199, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0553, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:17:19", "start": "2026-07-30T15:19:26", "end": "2026-07-30T15:23:05", "elapsed_s": 219, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0608, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:17:34", "start": "2026-07-30T15:20:02", "end": "2026-07-30T15:21:21", "elapsed_s": 79, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:22:15", "start": "2026-07-30T15:24:26", "end": "2026-07-30T15:25:27", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:23:54", "start": "2026-07-30T15:26:08", "end": "2026-07-30T15:27:39", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:26:17", "start": "2026-07-30T15:28:27", "end": "2026-07-30T15:30:02", "elapsed_s": 95, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:28:28", "start": "2026-07-30T15:30:42", "end": "2026-07-30T15:32:26", "elapsed_s": 104, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:30:51", "start": "2026-07-30T15:33:15", "end": "2026-07-30T15:34:47", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:33:15", "start": "2026-07-30T15:35:48", "end": "2026-07-30T15:56:14", "elapsed_s": 1226, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3406, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:35:37", "start": "2026-07-30T15:37:50", "end": "2026-07-30T15:38:18", "elapsed_s": 28, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:36:07", "start": "2026-07-30T15:39:07", "end": "2026-07-30T15:41:24", "elapsed_s": 137, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0381, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:36:17", "start": "2026-07-30T15:39:07", "end": "2026-07-30T15:51:10", "elapsed_s": 723, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:39:12", "start": "2026-07-30T15:42:10", "end": "2026-07-30T15:43:39", "elapsed_s": 89, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0247, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:42:20", "start": "2026-07-30T15:44:27", "end": "2026-07-30T16:32:33", "elapsed_s": 2886, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:44:27", "start": "2026-07-30T15:46:28", "end": "2026-07-30T15:47:23", "elapsed_s": 55, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:48:15", "start": "2026-07-30T15:50:19", "end": "2026-07-30T16:33:57", "elapsed_s": 2618, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.7272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:51:13", "start": "2026-07-30T15:53:25", "end": "2026-07-30T17:21:33", "elapsed_s": 5288, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.4689, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T15:57:04", "start": "2026-07-30T15:59:09", "end": "2026-07-30T15:59:26", "elapsed_s": 17, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:00:15", "start": "2026-07-30T16:02:20", "end": "2026-07-30T16:14:51", "elapsed_s": 751, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:15:41", "start": "2026-07-30T16:17:48", "end": "2026-07-30T16:18:59", "elapsed_s": 71, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:19:49", "start": "2026-07-30T16:21:59", "end": "2026-07-30T16:22:43", "elapsed_s": 44, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:23:33", "start": "2026-07-30T16:25:36", "end": "2026-07-30T16:31:24", "elapsed_s": 348, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0967, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:32:15", "start": "2026-07-30T16:35:15", "end": "2026-07-30T16:38:32", "elapsed_s": 197, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0547, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:33:23", "start": "2026-07-30T16:35:32", "end": "2026-07-30T16:55:10", "elapsed_s": 1178, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:33:59", "start": "2026-07-30T16:36:11", "end": "2026-07-30T16:36:50", "elapsed_s": 39, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:37:44", "start": "2026-07-30T16:39:51", "end": "2026-07-30T16:47:55", "elapsed_s": 484, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:37:59", "start": "2026-07-30T16:40:18", "end": "2026-07-30T16:48:10", "elapsed_s": 472, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:39:27", "start": "2026-07-30T16:41:33", "end": "2026-07-30T16:47:55", "elapsed_s": 382, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:47:56", "start": "2026-07-30T16:50:04", "end": "2026-07-30T16:51:12", "elapsed_s": 68, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:48:54", "start": "2026-07-30T16:51:05", "end": "2026-07-30T19:43:06", "elapsed_s": 10321, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.8669, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:49:01", "start": "2026-07-30T16:51:05", "end": "2026-07-30T16:59:54", "elapsed_s": 529, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1469, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:52:02", "start": "2026-07-30T16:54:09", "end": "2026-07-30T16:54:40", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:54:43", "start": "2026-07-30T16:57:00", "end": "2026-07-30T16:59:33", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T16:56:04", "start": "2026-07-30T16:58:14", "end": "2026-07-30T18:55:51", "elapsed_s": 7057, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.9603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T17:00:22", "start": "2026-07-30T17:02:31", "end": "2026-07-30T19:42:26", "elapsed_s": 9595, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.6653, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T17:00:45", "start": "2026-07-30T17:02:50", "end": "2026-07-30T19:42:26", "elapsed_s": 9576, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.66, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T17:22:41", "start": "2026-07-30T17:25:12", "end": "2026-07-30T17:56:28", "elapsed_s": 1876, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T17:57:18", "start": "2026-07-30T17:59:32", "end": "2026-07-30T18:55:51", "elapsed_s": 3379, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9386, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37940649", "job_name": "yolo_pack", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt", "state": "COMPLETED", "submit": "2026-07-30T18:09:13", "start": "2026-07-30T18:09:24", "end": "2026-07-30T20:47:17", "elapsed_s": 9473, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T18:55:52", "start": "2026-07-30T18:58:07", "end": "2026-07-30T19:05:45", "elapsed_s": 458, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T18:56:44", "start": "2026-07-30T18:59:02", "end": "2026-07-30T19:06:41", "elapsed_s": 459, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T19:06:36", "start": "2026-07-30T19:08:39", "end": "2026-07-30T19:59:54", "elapsed_s": 3075, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8542, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T19:07:48", "start": "2026-07-30T19:09:53", "end": "2026-07-30T19:59:56", "elapsed_s": 3003, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8342, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T19:43:19", "start": "2026-07-30T19:45:22", "end": "2026-07-30T19:51:12", "elapsed_s": 350, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0972, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T19:43:23", "start": "2026-07-30T19:45:31", "end": "2026-07-30T19:51:09", "elapsed_s": 338, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0939, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T19:44:02", "start": "2026-07-30T19:46:18", "end": "2026-07-30T19:51:17", "elapsed_s": 299, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0831, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T19:51:11", "start": "2026-07-30T19:53:23", "end": "2026-07-30T19:53:35", "elapsed_s": 12, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T19:51:14", "start": "2026-07-30T19:53:23", "end": "2026-07-30T19:53:38", "elapsed_s": 15, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T19:52:07", "start": "2026-07-30T19:54:54", "end": "2026-07-30T19:59:54", "elapsed_s": 300, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0833, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T19:53:37", "start": "2026-07-30T19:55:41", "end": "2026-07-30T20:00:22", "elapsed_s": 281, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0781, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T19:54:28", "start": "2026-07-30T19:56:30", "end": "2026-07-30T19:56:52", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T19:57:42", "start": "2026-07-30T19:59:46", "end": "2026-07-30T20:00:17", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:00:46", "start": "2026-07-30T20:02:47", "end": "2026-07-30T20:03:02", "elapsed_s": 15, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:00:53", "start": "2026-07-30T20:03:00", "end": "2026-07-30T20:05:18", "elapsed_s": 138, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:01:03", "start": "2026-07-30T20:03:07", "end": "2026-07-30T20:51:24", "elapsed_s": 2897, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:01:07", "start": "2026-07-30T20:03:20", "end": "2026-07-30T20:51:48", "elapsed_s": 2908, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:01:11", "start": "2026-07-30T20:03:23", "end": "2026-07-30T20:05:18", "elapsed_s": 115, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:03:51", "start": "2026-07-30T20:06:33", "end": "2026-07-30T20:07:11", "elapsed_s": 38, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:06:07", "start": "2026-07-30T20:08:45", "end": "2026-07-30T20:22:10", "elapsed_s": 805, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:06:10", "start": "2026-07-30T20:08:45", "end": "2026-07-30T20:22:13", "elapsed_s": 808, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:08:01", "start": "2026-07-30T20:10:07", "end": "2026-07-30T20:22:07", "elapsed_s": 720, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:22:11", "start": "2026-07-30T20:24:18", "end": "2026-07-30T20:32:36", "elapsed_s": 498, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:22:56", "start": "2026-07-30T20:25:14", "end": "2026-07-30T20:32:32", "elapsed_s": 438, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:23:03", "start": "2026-07-30T20:25:14", "end": "2026-07-30T20:32:58", "elapsed_s": 464, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:32:34", "start": "2026-07-30T20:34:49", "end": "2026-07-30T20:37:20", "elapsed_s": 151, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:33:25", "start": "2026-07-30T20:35:26", "end": "2026-07-30T20:37:20", "elapsed_s": 114, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0317, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:33:49", "start": "2026-07-30T20:35:57", "end": "2026-07-30T20:37:20", "elapsed_s": 83, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0231, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:38:09", "start": "2026-07-30T20:41:19", "end": "2026-07-30T20:42:50", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:38:09", "start": "2026-07-30T20:41:19", "end": "2026-07-30T20:44:04", "elapsed_s": 165, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0458, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:38:15", "start": "2026-07-30T20:41:19", "end": "2026-07-30T20:48:37", "elapsed_s": 438, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:42:52", "start": "2026-07-30T20:45:36", "end": "2026-07-30T20:48:37", "elapsed_s": 181, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0503, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:44:07", "start": "2026-07-30T20:46:37", "end": "2026-07-30T20:49:25", "elapsed_s": 168, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0467, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:49:27", "start": "2026-07-30T20:51:41", "end": "2026-07-30T20:53:45", "elapsed_s": 124, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:49:30", "start": "2026-07-30T20:51:41", "end": "2026-07-30T20:56:04", "elapsed_s": 263, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0731, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:50:14", "start": "2026-07-30T20:53:30", "end": "2026-07-30T20:54:55", "elapsed_s": 85, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:52:19", "start": "2026-07-30T20:54:43", "end": "2026-07-30T20:56:01", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:52:59", "start": "2026-07-30T20:55:05", "end": "2026-07-30T20:55:49", "elapsed_s": 44, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:54:34", "start": "2026-07-30T20:56:45", "end": "2026-07-30T20:58:16", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:56:02", "start": "2026-07-30T20:58:16", "end": "2026-07-30T21:04:17", "elapsed_s": 361, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:56:39", "start": "2026-07-30T20:58:46", "end": "2026-07-30T21:04:47", "elapsed_s": 361, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:56:50", "start": "2026-07-30T20:58:51", "end": "2026-07-30T21:07:02", "elapsed_s": 491, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1364, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:56:54", "start": "2026-07-30T20:59:01", "end": "2026-07-30T21:21:27", "elapsed_s": 1346, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3739, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T20:59:06", "start": "2026-07-30T21:01:19", "end": "2026-07-30T21:03:20", "elapsed_s": 121, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0336, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:04:12", "start": "2026-07-30T21:06:24", "end": "2026-07-30T21:07:55", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:05:09", "start": "2026-07-30T21:07:55", "end": "2026-07-30T21:28:47", "elapsed_s": 1252, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3478, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:05:40", "start": "2026-07-30T21:08:56", "end": "2026-07-30T21:28:47", "elapsed_s": 1191, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3308, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:07:05", "start": "2026-07-30T21:09:26", "end": "2026-07-30T21:28:47", "elapsed_s": 1161, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:08:45", "start": "2026-07-30T21:10:58", "end": "2026-07-30T21:13:30", "elapsed_s": 152, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0422, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:14:26", "start": "2026-07-30T21:16:32", "end": "2026-07-30T21:28:47", "elapsed_s": 735, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:22:40", "start": "2026-07-30T21:24:51", "end": "2026-07-30T21:28:47", "elapsed_s": 236, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0656, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:29:35", "start": "2026-07-30T21:31:45", "end": "2026-07-30T21:50:44", "elapsed_s": 1139, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:29:37", "start": "2026-07-30T21:31:45", "end": "2026-07-30T21:37:25", "elapsed_s": 340, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0944, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:29:37", "start": "2026-07-30T21:31:45", "end": "2026-07-30T21:33:16", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:29:39", "start": "2026-07-30T21:31:45", "end": "2026-07-30T21:33:52", "elapsed_s": 127, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:29:48", "start": "2026-07-30T21:31:56", "end": "2026-07-30T21:57:00", "elapsed_s": 1504, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.4178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:34:06", "start": "2026-07-30T21:36:18", "end": "2026-07-30T23:09:55", "elapsed_s": 5617, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.5603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:34:42", "start": "2026-07-30T21:36:49", "end": "2026-07-30T21:50:46", "elapsed_s": 837, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2325, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:38:16", "start": "2026-07-30T21:40:22", "end": "2026-07-30T22:39:31", "elapsed_s": 3549, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.9858, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:51:33", "start": "2026-07-30T21:54:00", "end": "2026-07-30T23:10:03", "elapsed_s": 4563, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.2675, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-30T21:51:36", "start": "2026-07-30T21:54:00", "end": "2026-07-31T06:00:02", "elapsed_s": 29162, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T21:57:54", "start": "2026-07-30T21:59:58", "end": "2026-07-30T23:56:19", "elapsed_s": 6981, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.9392, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T22:40:23", "start": "2026-07-30T22:42:32", "end": "2026-07-30T23:02:48", "elapsed_s": 1216, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3378, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T23:03:41", "start": "2026-07-30T23:05:46", "end": "2026-07-30T23:08:30", "elapsed_s": 164, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0456, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T23:08:31", "start": "2026-07-30T23:10:32", "end": "2026-07-30T23:21:56", "elapsed_s": 684, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.19, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T23:09:57", "start": "2026-07-30T23:12:04", "end": "2026-07-30T23:56:32", "elapsed_s": 2668, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7411, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T23:10:54", "start": "2026-07-30T23:13:12", "end": "2026-07-31T00:04:50", "elapsed_s": 3098, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8606, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T23:22:58", "start": "2026-07-30T23:24:59", "end": "2026-07-30T23:53:58", "elapsed_s": 1739, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4831, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T23:54:50", "start": "2026-07-30T23:57:18", "end": "2026-07-31T00:00:51", "elapsed_s": 213, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0592, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T23:57:17", "start": "2026-07-30T23:59:24", "end": "2026-07-31T00:04:52", "elapsed_s": 328, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0911, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-30T23:57:22", "start": "2026-07-30T23:59:34", "end": "2026-07-31T00:01:19", "elapsed_s": 105, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0292, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T00:01:22", "start": "2026-07-31T00:03:27", "end": "2026-07-31T00:05:18", "elapsed_s": 111, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0308, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T00:01:41", "start": "2026-07-31T00:03:54", "end": "2026-07-31T00:04:18", "elapsed_s": 24, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-31T00:05:11", "start": "2026-07-31T00:07:19", "end": "2026-07-31T08:15:02", "elapsed_s": 29263, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1286, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T00:05:40", "start": "2026-07-31T00:07:59", "end": "2026-07-31T00:11:19", "elapsed_s": 200, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T00:05:47", "start": "2026-07-31T00:07:59", "end": "2026-07-31T00:10:50", "elapsed_s": 171, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0475, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-31T00:06:07", "start": "2026-07-31T00:08:18", "end": "2026-07-31T08:15:02", "elapsed_s": 29204, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-31T00:11:40", "start": "2026-07-31T00:13:41", "end": "2026-07-31T08:15:02", "elapsed_s": 28881, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-07-31T00:12:08", "start": "2026-07-31T00:14:19", "end": "2026-07-31T08:15:02", "elapsed_s": 28843, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T06:00:05", "start": "2026-07-31T06:02:08", "end": "2026-07-31T13:48:42", "elapsed_s": 27994, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 7.7761, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T08:15:54", "start": "2026-07-31T08:18:02", "end": "2026-07-31T09:15:00", "elapsed_s": 3418, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.9494, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T08:15:55", "start": "2026-07-31T08:18:02", "end": "2026-07-31T09:15:00", "elapsed_s": 3418, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.9494, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T08:15:59", "start": "2026-07-31T08:18:02", "end": "2026-07-31T13:48:05", "elapsed_s": 19803, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.5008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T08:16:06", "start": "2026-07-31T08:18:29", "end": "2026-07-31T13:43:46", "elapsed_s": 19517, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.4214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T09:15:03", "start": "2026-07-31T09:17:19", "end": "2026-07-31T13:43:31", "elapsed_s": 15972, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.4367, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T09:16:23", "start": "2026-07-31T09:18:29", "end": "2026-07-31T13:43:38", "elapsed_s": 15909, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.4192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37965593", "job_name": "sal-sao-paulo", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-07-31T12:56:26", "start": "2026-07-31T12:56:30", "end": "2026-07-31T12:57:19", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0136, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37965881", "job_name": "sal-sao-paulo", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-31T13:13:04", "start": "2026-07-31T13:13:13", "end": "2026-07-31T15:52:44", "elapsed_s": 9571, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.6586, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T13:43:32", "start": "2026-07-31T13:46:10", "end": "2026-07-31T13:53:17", "elapsed_s": 427, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T13:43:51", "start": "2026-07-31T13:46:41", "end": "2026-07-31T14:54:10", "elapsed_s": 4049, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.1247, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T13:44:29", "start": "2026-07-31T13:48:12", "end": "2026-07-31T13:55:21", "elapsed_s": 429, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T13:48:57", "start": "2026-07-31T13:51:03", "end": "2026-07-31T13:51:24", "elapsed_s": 21, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T13:49:32", "start": "2026-07-31T13:51:45", "end": "2026-07-31T13:55:42", "elapsed_s": 237, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0658, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T13:52:13", "start": "2026-07-31T13:54:15", "end": "2026-07-31T14:09:21", "elapsed_s": 906, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T13:53:18", "start": "2026-07-31T13:55:21", "end": "2026-07-31T13:59:52", "elapsed_s": 271, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0753, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T13:56:12", "start": "2026-07-31T13:58:14", "end": "2026-07-31T14:05:49", "elapsed_s": 455, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T13:56:31", "start": "2026-07-31T13:58:52", "end": "2026-07-31T15:58:42", "elapsed_s": 7190, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.9972, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T13:59:55", "start": "2026-07-31T14:02:25", "end": "2026-07-31T14:03:13", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T14:04:05", "start": "2026-07-31T14:06:29", "end": "2026-07-31T14:07:25", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T14:05:52", "start": "2026-07-31T14:07:53", "end": "2026-07-31T14:09:01", "elapsed_s": 68, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T14:08:14", "start": "2026-07-31T14:10:18", "end": "2026-07-31T14:24:34", "elapsed_s": 856, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2378, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T14:09:49", "start": "2026-07-31T14:12:01", "end": "2026-07-31T14:25:09", "elapsed_s": 788, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T14:10:12", "start": "2026-07-31T14:13:37", "end": "2026-07-31T15:14:17", "elapsed_s": 3640, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.0111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T14:25:25", "start": "2026-07-31T14:27:48", "end": "2026-07-31T14:32:34", "elapsed_s": 286, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0794, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T14:26:00", "start": "2026-07-31T14:28:06", "end": "2026-07-31T15:10:11", "elapsed_s": 2525, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T14:33:23", "start": "2026-07-31T14:35:28", "end": "2026-07-31T14:36:12", "elapsed_s": 44, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T14:37:03", "start": "2026-07-31T14:39:07", "end": "2026-07-31T15:33:30", "elapsed_s": 3263, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9064, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T14:55:02", "start": "2026-07-31T14:57:09", "end": "2026-07-31T15:27:34", "elapsed_s": 1825, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5069, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:11:02", "start": "2026-07-31T15:13:18", "end": "2026-07-31T15:27:05", "elapsed_s": 827, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:15:09", "start": "2026-07-31T15:17:11", "end": "2026-07-31T15:37:42", "elapsed_s": 1231, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:27:55", "start": "2026-07-31T15:30:02", "end": "2026-07-31T15:34:15", "elapsed_s": 253, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0703, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:28:30", "start": "2026-07-31T15:30:45", "end": "2026-07-31T15:37:24", "elapsed_s": 399, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:34:20", "start": "2026-07-31T15:37:27", "end": "2026-07-31T15:37:42", "elapsed_s": 15, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:35:05", "start": "2026-07-31T15:38:37", "end": "2026-07-31T15:46:28", "elapsed_s": 471, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1308, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:37:26", "start": "2026-07-31T15:39:30", "end": "2026-07-31T15:46:59", "elapsed_s": 449, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1247, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:38:34", "start": "2026-07-31T15:40:42", "end": "2026-07-31T15:42:47", "elapsed_s": 125, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0347, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:38:39", "start": "2026-07-31T15:40:42", "end": "2026-07-31T15:50:09", "elapsed_s": 567, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:42:49", "start": "2026-07-31T15:47:32", "end": "2026-07-31T15:49:43", "elapsed_s": 131, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0364, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:47:02", "start": "2026-07-31T15:49:07", "end": "2026-07-31T16:18:30", "elapsed_s": 1763, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4897, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:47:19", "start": "2026-07-31T15:50:41", "end": "2026-07-31T15:58:20", "elapsed_s": 459, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:50:31", "start": "2026-07-31T15:54:22", "end": "2026-07-31T16:35:29", "elapsed_s": 2467, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.6853, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:51:01", "start": "2026-07-31T15:56:28", "end": "2026-07-31T16:33:49", "elapsed_s": 2241, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37971663", "job_name": "sal-sao-paulo", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-07-31T15:58:19", "start": "2026-07-31T16:04:21", "end": "2026-07-31T16:09:12", "elapsed_s": 291, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0808, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:59:11", "start": "2026-07-31T16:03:49", "end": "2026-07-31T16:35:29", "elapsed_s": 1900, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T15:59:36", "start": "2026-07-31T16:04:53", "end": "2026-07-31T16:41:03", "elapsed_s": 2170, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T16:19:23", "start": "2026-07-31T16:30:15", "end": "2026-07-31T16:44:52", "elapsed_s": 877, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2436, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T16:33:51", "start": "2026-07-31T16:36:31", "end": "2026-07-31T17:12:42", "elapsed_s": 2171, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T16:35:33", "start": "2026-07-31T16:40:36", "end": "2026-07-31T16:46:49", "elapsed_s": 373, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T16:37:19", "start": "2026-07-31T16:42:09", "end": "2026-07-31T17:06:38", "elapsed_s": 1469, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.4081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T16:42:05", "start": "2026-07-31T16:45:47", "end": "2026-07-31T17:01:52", "elapsed_s": 965, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2681, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T16:44:55", "start": "2026-07-31T16:49:09", "end": "2026-07-31T17:12:42", "elapsed_s": 1413, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3925, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T16:47:51", "start": "2026-07-31T16:50:59", "end": "2026-07-31T17:15:16", "elapsed_s": 1457, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T17:02:47", "start": "2026-07-31T17:04:54", "end": "2026-08-01T00:43:41", "elapsed_s": 27527, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 7.6464, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T17:07:27", "start": "2026-07-31T17:09:38", "end": "2026-07-31T17:14:15", "elapsed_s": 277, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T17:12:43", "start": "2026-07-31T17:15:11", "end": "2026-08-01T00:43:38", "elapsed_s": 26907, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 7.4742, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T17:13:33", "start": "2026-07-31T17:17:19", "end": "2026-07-31T20:25:19", "elapsed_s": 11280, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 3.1333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T17:15:18", "start": "2026-07-31T17:19:42", "end": "2026-07-31T17:50:11", "elapsed_s": 1829, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T17:16:49", "start": "2026-07-31T17:21:24", "end": "2026-07-31T18:29:15", "elapsed_s": 4071, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.1308, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T17:50:14", "start": "2026-07-31T17:52:41", "end": "2026-07-31T18:15:18", "elapsed_s": 1357, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T18:16:07", "start": "2026-07-31T18:18:22", "end": "2026-07-31T18:38:30", "elapsed_s": 1208, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T18:30:05", "start": "2026-07-31T18:33:44", "end": "2026-07-31T18:51:00", "elapsed_s": 1036, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2878, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T18:39:25", "start": "2026-07-31T18:43:18", "end": "2026-07-31T18:43:51", "elapsed_s": 33, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T18:44:44", "start": "2026-07-31T18:47:55", "end": "2026-07-31T18:49:37", "elapsed_s": 102, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T18:51:52", "start": "2026-07-31T18:54:39", "end": "2026-07-31T18:56:46", "elapsed_s": 127, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T18:57:37", "start": "2026-07-31T18:59:52", "end": "2026-07-31T19:01:24", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T18:59:48", "start": "2026-07-31T19:02:26", "end": "2026-07-31T19:03:23", "elapsed_s": 57, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0158, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T19:02:15", "start": "2026-07-31T19:04:20", "end": "2026-08-01T00:43:38", "elapsed_s": 20358, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.655, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T19:04:14", "start": "2026-07-31T19:07:04", "end": "2026-07-31T19:09:15", "elapsed_s": 131, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0364, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T19:10:08", "start": "2026-07-31T19:12:24", "end": "2026-07-31T19:57:32", "elapsed_s": 2708, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.7522, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T19:57:38", "start": "2026-07-31T19:59:46", "end": "2026-08-01T00:43:38", "elapsed_s": 17032, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.7311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-07-31T20:26:56", "start": "2026-07-31T20:28:58", "end": "2026-08-01T00:43:38", "elapsed_s": 15280, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.2444, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T00:43:39", "start": "2026-08-01T00:45:41", "end": "2026-08-01T00:54:38", "elapsed_s": 537, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1492, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T00:44:26", "start": "2026-08-01T00:46:51", "end": "2026-08-01T00:54:30", "elapsed_s": 459, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T00:44:27", "start": "2026-08-01T00:46:51", "end": "2026-08-01T00:54:30", "elapsed_s": 459, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T00:44:29", "start": "2026-08-01T00:46:51", "end": "2026-08-01T00:54:38", "elapsed_s": 467, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T00:44:34", "start": "2026-08-01T00:47:03", "end": "2026-08-01T00:47:24", "elapsed_s": 21, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T00:48:18", "start": "2026-08-01T00:52:50", "end": "2026-08-01T00:54:30", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T00:54:32", "start": "2026-08-01T00:56:40", "end": "2026-08-01T01:14:54", "elapsed_s": 1094, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T00:54:32", "start": "2026-08-01T00:56:40", "end": "2026-08-01T00:57:50", "elapsed_s": 70, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T00:55:27", "start": "2026-08-01T00:57:41", "end": "2026-08-01T01:09:30", "elapsed_s": 709, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1969, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T00:55:29", "start": "2026-08-01T00:57:50", "end": "2026-08-01T01:08:50", "elapsed_s": 660, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1833, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T00:55:30", "start": "2026-08-01T00:57:50", "end": "2026-08-01T01:08:19", "elapsed_s": 629, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1747, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T00:58:42", "start": "2026-08-01T01:02:15", "end": "2026-08-01T01:02:51", "elapsed_s": 36, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.01, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:03:52", "start": "2026-08-01T01:09:21", "end": "2026-08-01T01:09:30", "elapsed_s": 9, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:08:21", "start": "2026-08-01T01:10:22", "end": "2026-08-01T01:14:56", "elapsed_s": 274, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0761, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:09:41", "start": "2026-08-01T01:11:51", "end": "2026-08-01T01:14:54", "elapsed_s": 183, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:10:18", "start": "2026-08-01T01:12:23", "end": "2026-08-01T01:14:54", "elapsed_s": 151, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:10:19", "start": "2026-08-01T01:12:23", "end": "2026-08-01T01:14:56", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:14:56", "start": "2026-08-01T01:16:58", "end": "2026-08-01T01:32:49", "elapsed_s": 951, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2642, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:15:44", "start": "2026-08-01T01:17:46", "end": "2026-08-01T01:38:51", "elapsed_s": 1265, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:15:45", "start": "2026-08-01T01:22:50", "end": "2026-08-01T01:38:55", "elapsed_s": 965, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2681, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:15:46", "start": "2026-08-01T01:22:50", "end": "2026-08-01T01:31:55", "elapsed_s": 545, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:15:59", "start": "2026-08-01T01:22:50", "end": "2026-08-01T01:38:55", "elapsed_s": 965, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2681, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:31:57", "start": "2026-08-01T01:34:22", "end": "2026-08-01T01:47:50", "elapsed_s": 808, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:33:40", "start": "2026-08-01T01:35:52", "end": "2026-08-01T01:47:50", "elapsed_s": 718, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1994, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:38:57", "start": "2026-08-01T01:41:27", "end": "2026-08-01T01:45:51", "elapsed_s": 264, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0733, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:38:57", "start": "2026-08-01T01:41:27", "end": "2026-08-01T02:02:48", "elapsed_s": 1281, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3558, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:39:46", "start": "2026-08-01T01:41:52", "end": "2026-08-01T01:47:50", "elapsed_s": 358, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0994, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:46:43", "start": "2026-08-01T01:48:51", "end": "2026-08-01T02:02:48", "elapsed_s": 837, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2325, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:47:52", "start": "2026-08-01T01:50:36", "end": "2026-08-01T02:02:50", "elapsed_s": 734, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:48:40", "start": "2026-08-01T01:51:06", "end": "2026-08-01T02:00:24", "elapsed_s": 558, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.155, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T01:48:44", "start": "2026-08-01T01:51:06", "end": "2026-08-01T02:00:51", "elapsed_s": 585, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1625, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:00:26", "start": "2026-08-01T02:02:35", "end": "2026-08-01T02:02:48", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:00:53", "start": "2026-08-01T02:03:07", "end": "2026-08-01T02:17:08", "elapsed_s": 841, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2336, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:03:37", "start": "2026-08-01T02:07:13", "end": "2026-08-01T02:17:51", "elapsed_s": 638, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1772, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:03:38", "start": "2026-08-01T02:09:51", "end": "2026-08-01T02:17:51", "elapsed_s": 480, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:03:40", "start": "2026-08-01T02:10:23", "end": "2026-08-01T02:32:49", "elapsed_s": 1346, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3739, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:03:49", "start": "2026-08-01T02:10:23", "end": "2026-08-01T02:17:51", "elapsed_s": 448, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:17:53", "start": "2026-08-01T02:20:31", "end": "2026-08-01T02:23:03", "elapsed_s": 152, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0422, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:18:00", "start": "2026-08-01T02:20:52", "end": "2026-08-01T02:36:40", "elapsed_s": 948, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2633, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:18:41", "start": "2026-08-01T02:20:52", "end": "2026-08-01T02:36:10", "elapsed_s": 918, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.255, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:18:45", "start": "2026-08-01T02:21:02", "end": "2026-08-01T02:21:18", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:22:10", "start": "2026-08-01T02:25:05", "end": "2026-08-01T02:32:51", "elapsed_s": 466, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1294, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:23:53", "start": "2026-08-01T02:26:06", "end": "2026-08-01T02:33:36", "elapsed_s": 450, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:33:42", "start": "2026-08-01T02:37:15", "end": "2026-08-01T03:02:50", "elapsed_s": 1535, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:33:47", "start": "2026-08-01T02:37:15", "end": "2026-08-01T02:37:46", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:34:37", "start": "2026-08-01T02:37:55", "end": "2026-08-01T02:41:10", "elapsed_s": 195, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0542, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:37:01", "start": "2026-08-01T02:39:12", "end": "2026-08-01T02:47:52", "elapsed_s": 520, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1444, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:37:32", "start": "2026-08-01T02:39:48", "end": "2026-08-01T03:02:50", "elapsed_s": 1382, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3839, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:38:47", "start": "2026-08-01T02:41:49", "end": "2026-08-01T02:47:52", "elapsed_s": 363, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:42:01", "start": "2026-08-01T02:44:07", "end": "2026-08-01T02:47:52", "elapsed_s": 225, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0625, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:47:55", "start": "2026-08-01T02:50:05", "end": "2026-08-01T03:44:03", "elapsed_s": 3238, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8994, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:48:43", "start": "2026-08-01T02:50:53", "end": "2026-08-01T03:04:11", "elapsed_s": 798, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:48:43", "start": "2026-08-01T02:50:56", "end": "2026-08-01T02:56:55", "elapsed_s": 359, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0997, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T02:57:49", "start": "2026-08-01T02:59:55", "end": "2026-08-01T03:17:51", "elapsed_s": 1076, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2989, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T03:02:51", "start": "2026-08-01T03:05:07", "end": "2026-08-01T03:05:38", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T03:03:43", "start": "2026-08-01T03:06:39", "end": "2026-08-01T03:17:51", "elapsed_s": 672, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1867, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T03:05:00", "start": "2026-08-01T03:07:09", "end": "2026-08-01T03:07:56", "elapsed_s": 47, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T03:06:32", "start": "2026-08-01T03:08:56", "end": "2026-08-01T09:49:17", "elapsed_s": 24021, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 6.6725, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T03:08:53", "start": "2026-08-01T03:10:57", "end": "2026-08-01T03:17:51", "elapsed_s": 414, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.115, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T03:18:41", "start": "2026-08-01T03:20:50", "end": "2026-08-01T03:32:51", "elapsed_s": 721, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T03:18:41", "start": "2026-08-01T03:20:50", "end": "2026-08-01T03:32:58", "elapsed_s": 728, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T03:18:48", "start": "2026-08-01T03:20:50", "end": "2026-08-01T03:33:01", "elapsed_s": 731, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T03:32:54", "start": "2026-08-01T03:34:58", "end": "2026-08-01T09:25:49", "elapsed_s": 21051, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.8475, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T03:33:50", "start": "2026-08-01T03:35:58", "end": "2026-08-01T09:46:59", "elapsed_s": 22261, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 6.1836, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-01T03:33:51", "start": "2026-08-01T03:35:58", "end": "2026-08-01T11:45:02", "elapsed_s": 29344, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 8.1511, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T03:44:53", "start": "2026-08-01T03:46:59", "end": "2026-08-01T09:24:05", "elapsed_s": 20226, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.6183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37998087", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-08-01T08:12:52", "start": "2026-08-01T08:12:53", "end": "2026-08-01T08:29:13", "elapsed_s": 980, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2722, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37998088", "job_name": "qwen_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-08-01T08:12:52", "start": "2026-08-01T14:11:19", "end": "2026-08-01T14:35:33", "elapsed_s": 1454, "nodes": 1, "gpus": 2, "gpu_type": "l40s", "gpu_hours": 0.8078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37998089", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-08-01T08:12:52", "start": "2026-08-01T08:29:15", "end": "2026-08-01T08:41:08", "elapsed_s": 713, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1981, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37998090", "job_name": "open_curb_ramp_compare", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-08-01T08:12:52", "start": "2026-08-01T08:41:10", "end": "2026-08-01T09:05:54", "elapsed_s": 1484, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T09:24:56", "start": "2026-08-01T09:27:16", "end": "2026-08-01T09:45:51", "elapsed_s": 1115, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T09:26:44", "start": "2026-08-01T09:28:46", "end": "2026-08-01T10:53:16", "elapsed_s": 5070, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.4083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T09:45:53", "start": "2026-08-01T09:48:00", "end": "2026-08-01T09:49:17", "elapsed_s": 77, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T09:47:53", "start": "2026-08-01T09:50:16", "end": "2026-08-01T12:55:49", "elapsed_s": 11133, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 3.0925, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T09:49:18", "start": "2026-08-01T09:52:03", "end": "2026-08-01T10:04:28", "elapsed_s": 745, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2069, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T09:50:08", "start": "2026-08-01T09:52:16", "end": "2026-08-01T09:53:06", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T09:53:56", "start": "2026-08-01T09:57:37", "end": "2026-08-01T10:34:44", "elapsed_s": 2227, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.6186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T10:04:30", "start": "2026-08-01T10:07:06", "end": "2026-08-01T12:31:14", "elapsed_s": 8648, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 2.4022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T10:35:48", "start": "2026-08-01T10:38:22", "end": "2026-08-01T10:52:41", "elapsed_s": 859, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2386, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T10:53:31", "start": "2026-08-01T10:56:55", "end": "2026-08-01T11:58:40", "elapsed_s": 3705, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.0292, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T10:54:05", "start": "2026-08-01T11:12:09", "end": "2026-08-01T11:59:17", "elapsed_s": 2828, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.7856, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T11:45:04", "start": "2026-08-01T11:59:44", "end": "2026-08-01T18:43:11", "elapsed_s": 24207, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 6.7242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T11:59:30", "start": "2026-08-01T12:01:45", "end": "2026-08-01T16:03:03", "elapsed_s": 14478, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T12:00:05", "start": "2026-08-01T12:02:16", "end": "2026-08-01T18:21:38", "elapsed_s": 22762, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 6.3228, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T12:32:06", "start": "2026-08-01T12:34:17", "end": "2026-08-01T18:21:16", "elapsed_s": 20819, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.7831, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T12:56:47", "start": "2026-08-01T12:58:54", "end": "2026-08-01T18:43:11", "elapsed_s": 20657, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.7381, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T16:03:55", "start": "2026-08-01T16:06:05", "end": "2026-08-01T16:06:11", "elapsed_s": 6, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T16:07:01", "start": "2026-08-01T16:09:20", "end": "2026-08-01T18:20:54", "elapsed_s": 7894, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.1928, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T18:21:40", "start": "2026-08-01T18:24:02", "end": "2026-08-01T18:43:11", "elapsed_s": 1149, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T18:21:44", "start": "2026-08-01T18:24:02", "end": "2026-08-01T18:30:11", "elapsed_s": 369, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T18:22:19", "start": "2026-08-01T18:24:32", "end": "2026-08-01T18:43:11", "elapsed_s": 1119, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T18:30:13", "start": "2026-08-01T18:33:09", "end": "2026-08-01T18:43:11", "elapsed_s": 602, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1672, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T18:44:01", "start": "2026-08-01T18:46:16", "end": "2026-08-01T19:14:19", "elapsed_s": 1683, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4675, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T18:44:03", "start": "2026-08-01T18:46:16", "end": "2026-08-01T18:53:35", "elapsed_s": 439, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T18:44:09", "start": "2026-08-01T18:46:16", "end": "2026-08-01T19:38:43", "elapsed_s": 3147, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.8742, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T18:44:10", "start": "2026-08-01T18:46:16", "end": "2026-08-01T19:36:55", "elapsed_s": 3039, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.8442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T18:44:16", "start": "2026-08-01T18:46:47", "end": "2026-08-01T19:36:34", "elapsed_s": 2987, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.8297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T18:54:27", "start": "2026-08-01T18:56:52", "end": "2026-08-01T19:36:03", "elapsed_s": 2351, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.6531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:15:10", "start": "2026-08-01T19:17:33", "end": "2026-08-01T19:44:07", "elapsed_s": 1594, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4428, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:36:55", "start": "2026-08-01T19:39:19", "end": "2026-08-01T19:44:07", "elapsed_s": 288, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.08, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:36:57", "start": "2026-08-01T19:39:50", "end": "2026-08-02T00:39:19", "elapsed_s": 17969, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 4.9914, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:37:26", "start": "2026-08-01T19:39:50", "end": "2026-08-01T22:06:08", "elapsed_s": 8778, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 2.4383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:39:45", "start": "2026-08-01T19:41:54", "end": "2026-08-01T19:43:40", "elapsed_s": 106, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0294, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:44:33", "start": "2026-08-01T19:46:40", "end": "2026-08-01T19:47:08", "elapsed_s": 28, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:44:58", "start": "2026-08-01T19:48:15", "end": "2026-08-01T19:55:10", "elapsed_s": 415, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:45:04", "start": "2026-08-01T19:48:15", "end": "2026-08-01T19:55:50", "elapsed_s": 455, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:48:06", "start": "2026-08-01T19:50:20", "end": "2026-08-01T19:55:10", "elapsed_s": 290, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0806, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:55:14", "start": "2026-08-01T19:57:36", "end": "2026-08-01T19:58:46", "elapsed_s": 70, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:56:02", "start": "2026-08-01T19:58:06", "end": "2026-08-01T20:06:05", "elapsed_s": 479, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1331, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:56:43", "start": "2026-08-01T19:59:07", "end": "2026-08-02T00:31:03", "elapsed_s": 16316, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.5322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T19:59:41", "start": "2026-08-01T20:02:09", "end": "2026-08-01T20:05:47", "elapsed_s": 218, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0606, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T20:05:50", "start": "2026-08-01T20:08:14", "end": "2026-08-01T23:34:03", "elapsed_s": 12349, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.4303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T20:06:59", "start": "2026-08-01T20:09:14", "end": "2026-08-02T00:31:03", "elapsed_s": 15709, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.3636, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T22:06:09", "start": "2026-08-01T22:08:29", "end": "2026-08-01T23:34:24", "elapsed_s": 5155, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.4319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T23:34:53", "start": "2026-08-02T00:10:42", "end": "2026-08-02T00:31:03", "elapsed_s": 1221, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3392, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-01T23:35:14", "start": "2026-08-02T00:15:46", "end": "2026-08-02T00:20:27", "elapsed_s": 281, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0781, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T00:21:17", "start": "2026-08-02T00:24:23", "end": "2026-08-02T00:35:55", "elapsed_s": 692, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1922, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T00:31:51", "start": "2026-08-02T00:34:00", "end": "2026-08-02T01:00:21", "elapsed_s": 1581, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4392, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T00:31:52", "start": "2026-08-02T00:40:36", "end": "2026-08-02T00:51:02", "elapsed_s": 626, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1739, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T00:31:54", "start": "2026-08-02T00:40:36", "end": "2026-08-02T00:50:05", "elapsed_s": 569, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1581, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T00:36:45", "start": "2026-08-02T00:40:36", "end": "2026-08-02T00:50:05", "elapsed_s": 569, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1581, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T00:40:13", "start": "2026-08-02T00:46:41", "end": "2026-08-02T00:50:05", "elapsed_s": 204, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0567, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T00:50:07", "start": "2026-08-02T00:52:46", "end": "2026-08-02T01:00:21", "elapsed_s": 455, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T00:50:54", "start": "2026-08-02T00:59:21", "end": "2026-08-02T01:00:24", "elapsed_s": 63, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T00:50:54", "start": "2026-08-02T00:59:21", "end": "2026-08-02T01:00:48", "elapsed_s": 87, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T00:51:52", "start": "2026-08-02T00:59:21", "end": "2026-08-02T01:00:24", "elapsed_s": 63, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:00:26", "start": "2026-08-02T01:02:54", "end": "2026-08-02T01:06:32", "elapsed_s": 218, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0606, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:01:11", "start": "2026-08-02T01:03:54", "end": "2026-08-02T01:06:32", "elapsed_s": 158, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0439, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:01:13", "start": "2026-08-02T01:03:54", "end": "2026-08-02T01:10:39", "elapsed_s": 405, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:01:15", "start": "2026-08-02T01:07:28", "end": "2026-08-02T01:10:39", "elapsed_s": 191, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:01:38", "start": "2026-08-02T01:07:28", "end": "2026-08-02T01:10:39", "elapsed_s": 191, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:07:22", "start": "2026-08-02T01:09:29", "end": "2026-08-02T01:10:39", "elapsed_s": 70, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:07:22", "start": "2026-08-02T01:09:29", "end": "2026-08-02T01:11:09", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:10:41", "start": "2026-08-02T01:17:05", "end": "2026-08-02T01:20:57", "elapsed_s": 232, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0644, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:11:32", "start": "2026-08-02T01:17:36", "end": "2026-08-02T01:21:16", "elapsed_s": 220, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0611, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:11:35", "start": "2026-08-02T01:20:38", "end": "2026-08-02T01:21:00", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:11:44", "start": "2026-08-02T01:20:38", "end": "2026-08-02T01:20:57", "elapsed_s": 19, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:11:59", "start": "2026-08-02T01:22:09", "end": "2026-08-02T01:36:28", "elapsed_s": 859, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2386, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:20:59", "start": "2026-08-02T01:23:41", "end": "2026-08-02T01:36:00", "elapsed_s": 739, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:21:02", "start": "2026-08-02T01:24:42", "end": "2026-08-02T01:31:20", "elapsed_s": 398, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:21:59", "start": "2026-08-02T01:25:43", "end": "2026-08-02T01:36:00", "elapsed_s": 617, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1714, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:22:05", "start": "2026-08-02T01:25:43", "end": "2026-08-02T01:31:18", "elapsed_s": 335, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0931, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:32:09", "start": "2026-08-02T01:34:51", "end": "2026-08-02T01:36:00", "elapsed_s": 69, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:32:10", "start": "2026-08-02T01:37:24", "end": "2026-08-02T01:41:38", "elapsed_s": 254, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0706, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:36:03", "start": "2026-08-02T01:38:24", "end": "2026-08-02T01:41:38", "elapsed_s": 194, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0539, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:36:49", "start": "2026-08-02T01:39:56", "end": "2026-08-02T01:42:06", "elapsed_s": 130, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0361, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:36:50", "start": "2026-08-02T01:39:56", "end": "2026-08-02T01:41:38", "elapsed_s": 102, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:37:20", "start": "2026-08-02T01:39:56", "end": "2026-08-02T01:41:38", "elapsed_s": 102, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:42:27", "start": "2026-08-02T01:50:35", "end": "2026-08-02T01:55:23", "elapsed_s": 288, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.08, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:42:28", "start": "2026-08-02T01:50:35", "end": "2026-08-02T01:51:03", "elapsed_s": 28, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:42:29", "start": "2026-08-02T01:52:36", "end": "2026-08-02T01:55:23", "elapsed_s": 167, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0464, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:42:30", "start": "2026-08-02T01:53:07", "end": "2026-08-02T01:59:42", "elapsed_s": 395, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:43:01", "start": "2026-08-02T01:53:07", "end": "2026-08-02T01:59:42", "elapsed_s": 395, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:51:06", "start": "2026-08-02T01:54:07", "end": "2026-08-02T01:59:45", "elapsed_s": 338, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0939, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:56:13", "start": "2026-08-02T01:58:41", "end": "2026-08-02T01:59:45", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T01:56:19", "start": "2026-08-02T01:59:11", "end": "2026-08-02T01:59:42", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:00:31", "start": "2026-08-02T02:03:15", "end": "2026-08-02T02:04:06", "elapsed_s": 51, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:00:31", "start": "2026-08-02T02:03:15", "end": "2026-08-02T02:04:33", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:00:33", "start": "2026-08-02T02:05:16", "end": "2026-08-02T02:08:27", "elapsed_s": 191, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:00:35", "start": "2026-08-02T02:05:16", "end": "2026-08-02T02:08:27", "elapsed_s": 191, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:00:38", "start": "2026-08-02T02:05:46", "end": "2026-08-02T02:08:27", "elapsed_s": 161, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0447, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:04:08", "start": "2026-08-02T02:06:47", "end": "2026-08-02T02:08:27", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:05:22", "start": "2026-08-02T02:07:48", "end": "2026-08-02T02:08:50", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:09:16", "start": "2026-08-02T02:11:20", "end": "2026-08-02T02:13:37", "elapsed_s": 137, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0381, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:09:16", "start": "2026-08-02T02:11:20", "end": "2026-08-02T02:38:40", "elapsed_s": 1640, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.4556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:09:17", "start": "2026-08-02T02:11:20", "end": "2026-08-02T02:12:41", "elapsed_s": 81, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:09:18", "start": "2026-08-02T02:12:21", "end": "2026-08-02T02:16:59", "elapsed_s": 278, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0772, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:09:40", "start": "2026-08-02T02:14:53", "end": "2026-08-02T02:16:59", "elapsed_s": 126, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.035, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:12:43", "start": "2026-08-02T02:15:53", "end": "2026-08-02T02:16:59", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:13:39", "start": "2026-08-02T02:15:53", "end": "2026-08-02T02:17:24", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:17:01", "start": "2026-08-02T02:19:26", "end": "2026-08-02T02:21:19", "elapsed_s": 113, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0314, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:17:48", "start": "2026-08-02T02:20:57", "end": "2026-08-02T02:21:55", "elapsed_s": 58, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:17:49", "start": "2026-08-02T02:22:29", "end": "2026-08-02T02:25:38", "elapsed_s": 189, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:18:13", "start": "2026-08-02T02:22:59", "end": "2026-08-02T02:25:40", "elapsed_s": 161, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0447, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:21:21", "start": "2026-08-02T02:23:29", "end": "2026-08-02T02:25:40", "elapsed_s": 131, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0364, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:22:45", "start": "2026-08-02T02:25:31", "end": "2026-08-02T02:25:38", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:26:27", "start": "2026-08-02T02:29:04", "end": "2026-08-02T02:30:00", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:26:28", "start": "2026-08-02T02:29:34", "end": "2026-08-02T02:30:00", "elapsed_s": 26, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0072, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:26:30", "start": "2026-08-02T02:31:05", "end": "2026-08-02T02:34:20", "elapsed_s": 195, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0542, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:26:33", "start": "2026-08-02T02:31:05", "end": "2026-08-02T02:34:20", "elapsed_s": 195, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0542, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:30:50", "start": "2026-08-02T02:34:07", "end": "2026-08-02T02:34:20", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:30:50", "start": "2026-08-02T02:35:39", "end": "2026-08-02T02:38:40", "elapsed_s": 181, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0503, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:35:09", "start": "2026-08-02T02:37:40", "end": "2026-08-02T02:38:40", "elapsed_s": 60, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:35:10", "start": "2026-08-02T02:37:40", "end": "2026-08-02T02:38:40", "elapsed_s": 60, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:35:11", "start": "2026-08-02T02:38:10", "end": "2026-08-02T02:38:40", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:39:29", "start": "2026-08-02T02:41:43", "end": "2026-08-02T02:43:40", "elapsed_s": 117, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0325, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:39:30", "start": "2026-08-02T02:41:43", "end": "2026-08-02T02:42:58", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:39:32", "start": "2026-08-02T02:44:15", "end": "2026-08-02T02:47:39", "elapsed_s": 204, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0567, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:39:33", "start": "2026-08-02T02:44:15", "end": "2026-08-02T02:47:18", "elapsed_s": 183, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:39:44", "start": "2026-08-02T02:44:45", "end": "2026-08-02T02:47:18", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:43:00", "start": "2026-08-02T02:45:16", "end": "2026-08-02T02:47:18", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:44:30", "start": "2026-08-02T02:47:48", "end": "2026-08-02T02:51:38", "elapsed_s": 230, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0639, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:48:08", "start": "2026-08-02T02:53:24", "end": "2026-08-02T02:56:01", "elapsed_s": 157, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0436, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:48:10", "start": "2026-08-02T02:53:54", "end": "2026-08-02T02:56:01", "elapsed_s": 127, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:48:18", "start": "2026-08-02T02:53:54", "end": "2026-08-02T02:55:57", "elapsed_s": 123, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0342, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:48:28", "start": "2026-08-02T02:53:54", "end": "2026-08-02T02:56:01", "elapsed_s": 127, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:52:30", "start": "2026-08-02T02:55:26", "end": "2026-08-02T02:56:40", "elapsed_s": 74, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0206, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:56:00", "start": "2026-08-02T02:58:29", "end": "2026-08-02T03:00:18", "elapsed_s": 109, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:56:03", "start": "2026-08-02T02:58:59", "end": "2026-08-02T03:00:18", "elapsed_s": 79, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:56:54", "start": "2026-08-02T02:58:59", "end": "2026-08-02T03:00:21", "elapsed_s": 82, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0228, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:56:57", "start": "2026-08-02T02:59:29", "end": "2026-08-02T03:00:21", "elapsed_s": 52, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T02:57:29", "start": "2026-08-02T03:00:00", "end": "2026-08-02T03:00:21", "elapsed_s": 21, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:00:20", "start": "2026-08-02T03:02:32", "end": "2026-08-02T03:13:22", "elapsed_s": 650, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1806, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:01:07", "start": "2026-08-02T03:03:33", "end": "2026-08-02T03:04:39", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:01:11", "start": "2026-08-02T03:05:35", "end": "2026-08-02T03:17:41", "elapsed_s": 726, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:01:11", "start": "2026-08-02T03:10:40", "end": "2026-08-02T03:17:41", "elapsed_s": 421, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:01:17", "start": "2026-08-02T03:10:40", "end": "2026-08-02T03:13:42", "elapsed_s": 182, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0506, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:05:32", "start": "2026-08-02T03:10:40", "end": "2026-08-02T03:13:19", "elapsed_s": 159, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:13:21", "start": "2026-08-02T03:15:44", "end": "2026-08-02T03:17:41", "elapsed_s": 117, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0325, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:13:24", "start": "2026-08-02T03:16:45", "end": "2026-08-02T03:22:03", "elapsed_s": 318, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0883, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:13:44", "start": "2026-08-02T03:16:45", "end": "2026-08-02T03:17:41", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:18:30", "start": "2026-08-02T03:20:49", "end": "2026-08-02T03:22:03", "elapsed_s": 74, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0206, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:18:31", "start": "2026-08-02T03:21:19", "end": "2026-08-02T03:22:03", "elapsed_s": 44, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:18:33", "start": "2026-08-02T03:21:50", "end": "2026-08-02T03:22:03", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:18:34", "start": "2026-08-02T03:21:50", "end": "2026-08-02T03:22:03", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:22:52", "start": "2026-08-02T03:25:54", "end": "2026-08-02T03:26:23", "elapsed_s": 29, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:22:53", "start": "2026-08-02T03:27:56", "end": "2026-08-02T03:30:47", "elapsed_s": 171, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0475, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:22:53", "start": "2026-08-02T03:28:26", "end": "2026-08-02T04:01:12", "elapsed_s": 1966, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:22:54", "start": "2026-08-02T03:28:26", "end": "2026-08-02T04:01:15", "elapsed_s": 1969, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5469, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:22:54", "start": "2026-08-02T03:29:57", "end": "2026-08-02T03:30:47", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:27:13", "start": "2026-08-02T03:30:28", "end": "2026-08-02T03:30:47", "elapsed_s": 19, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:31:37", "start": "2026-08-02T03:35:03", "end": "2026-08-02T03:39:27", "elapsed_s": 264, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0733, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:31:38", "start": "2026-08-02T03:35:03", "end": "2026-08-02T03:35:05", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:31:43", "start": "2026-08-02T03:35:03", "end": "2026-08-02T03:35:05", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:35:08", "start": "2026-08-02T03:37:35", "end": "2026-08-02T03:39:27", "elapsed_s": 112, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:36:05", "start": "2026-08-02T03:39:06", "end": "2026-08-02T03:39:27", "elapsed_s": 21, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:40:17", "start": "2026-08-02T03:43:40", "end": "2026-08-02T03:43:51", "elapsed_s": 11, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:40:18", "start": "2026-08-02T03:45:11", "end": "2026-08-02T03:48:09", "elapsed_s": 178, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0494, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:40:19", "start": "2026-08-02T03:45:42", "end": "2026-08-02T03:48:09", "elapsed_s": 147, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0408, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:44:42", "start": "2026-08-02T03:46:43", "end": "2026-08-02T03:48:07", "elapsed_s": 84, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0233, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:48:56", "start": "2026-08-02T03:53:19", "end": "2026-08-02T03:56:50", "elapsed_s": 211, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0586, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:49:00", "start": "2026-08-02T03:53:50", "end": "2026-08-02T03:56:50", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:49:00", "start": "2026-08-02T03:53:50", "end": "2026-08-02T03:56:50", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:57:40", "start": "2026-08-02T03:59:57", "end": "2026-08-02T04:13:52", "elapsed_s": 835, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:57:40", "start": "2026-08-02T03:59:57", "end": "2026-08-02T05:06:45", "elapsed_s": 4008, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.1133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T03:57:41", "start": "2026-08-02T04:00:27", "end": "2026-08-02T04:14:04", "elapsed_s": 817, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T04:01:14", "start": "2026-08-02T04:03:30", "end": "2026-08-02T05:10:16", "elapsed_s": 4006, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.1128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T04:02:07", "start": "2026-08-02T04:04:31", "end": "2026-08-02T05:10:24", "elapsed_s": 3953, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.0981, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T04:13:56", "start": "2026-08-02T04:16:11", "end": "2026-08-02T12:28:39", "elapsed_s": 29548, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-02T04:14:55", "start": "2026-08-02T04:17:12", "end": "2026-08-02T12:30:04", "elapsed_s": 29572, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T05:07:35", "start": "2026-08-02T05:09:49", "end": "2026-08-02T05:41:56", "elapsed_s": 1927, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T05:10:19", "start": "2026-08-02T05:12:21", "end": "2026-08-02T12:28:39", "elapsed_s": 26178, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 7.2717, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T05:11:15", "start": "2026-08-02T05:13:22", "end": "2026-08-02T12:29:02", "elapsed_s": 26140, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 7.2611, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T05:42:44", "start": "2026-08-02T05:45:12", "end": "2026-08-02T12:31:24", "elapsed_s": 24372, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 6.77, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38016766", "job_name": "yolo_cpu_probe", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-08-02T07:41:40", "start": "2026-08-02T07:41:41", "end": "2026-08-02T07:59:43", "elapsed_s": 1082, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38017333", "job_name": "yolo_io_probe", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "COMPLETED", "submit": "2026-08-02T09:36:59", "start": "2026-08-02T09:37:53", "end": "2026-08-02T09:43:11", "elapsed_s": 318, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0883, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T12:28:42", "start": "2026-08-02T12:31:02", "end": "2026-08-02T12:36:43", "elapsed_s": 341, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0947, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T12:29:03", "start": "2026-08-02T12:32:34", "end": "2026-08-02T13:05:17", "elapsed_s": 1963, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5453, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T12:29:33", "start": "2026-08-02T12:32:34", "end": "2026-08-02T12:57:46", "elapsed_s": 1512, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.42, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T12:30:58", "start": "2026-08-02T12:33:36", "end": "2026-08-02T13:38:41", "elapsed_s": 3905, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.0847, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T12:32:14", "start": "2026-08-02T12:42:00", "end": "2026-08-02T13:19:15", "elapsed_s": 2235, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T12:37:38", "start": "2026-08-02T12:59:03", "end": "2026-08-02T13:04:56", "elapsed_s": 353, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0981, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T12:57:47", "start": "2026-08-02T13:04:11", "end": "2026-08-02T13:19:15", "elapsed_s": 904, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2511, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:05:46", "start": "2026-08-02T13:08:48", "end": "2026-08-02T13:25:08", "elapsed_s": 980, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2722, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:06:10", "start": "2026-08-02T13:08:48", "end": "2026-08-02T13:30:33", "elapsed_s": 1305, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3625, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:20:08", "start": "2026-08-02T13:24:17", "end": "2026-08-02T13:36:36", "elapsed_s": 739, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:20:22", "start": "2026-08-02T13:24:17", "end": "2026-08-02T13:38:09", "elapsed_s": 832, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:25:10", "start": "2026-08-02T13:27:20", "end": "2026-08-02T13:36:11", "elapsed_s": 531, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1475, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:31:30", "start": "2026-08-02T13:33:32", "end": "2026-08-02T13:37:39", "elapsed_s": 247, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0686, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:37:03", "start": "2026-08-02T13:41:19", "end": "2026-08-02T13:45:00", "elapsed_s": 221, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0614, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:37:34", "start": "2026-08-02T13:42:54", "end": "2026-08-02T13:44:29", "elapsed_s": 95, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:38:31", "start": "2026-08-02T13:46:37", "end": "2026-08-02T13:47:20", "elapsed_s": 43, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:39:00", "start": "2026-08-02T13:49:14", "end": "2026-08-02T13:58:56", "elapsed_s": 582, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1617, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:39:34", "start": "2026-08-02T13:57:12", "end": "2026-08-02T14:02:23", "elapsed_s": 311, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0864, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:45:22", "start": "2026-08-02T13:57:12", "end": "2026-08-02T13:58:02", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:45:52", "start": "2026-08-02T13:57:12", "end": "2026-08-02T13:58:25", "elapsed_s": 73, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0203, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:48:10", "start": "2026-08-02T14:01:24", "end": "2026-08-02T14:06:46", "elapsed_s": 322, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0894, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:58:04", "start": "2026-08-02T14:01:24", "end": "2026-08-02T14:02:23", "elapsed_s": 59, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:58:28", "start": "2026-08-02T14:02:29", "end": "2026-08-02T14:08:11", "elapsed_s": 342, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.095, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T13:58:58", "start": "2026-08-02T14:04:03", "end": "2026-08-02T14:08:43", "elapsed_s": 280, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0778, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:03:13", "start": "2026-08-02T14:05:37", "end": "2026-08-02T14:09:15", "elapsed_s": 218, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0606, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:03:16", "start": "2026-08-02T14:05:37", "end": "2026-08-02T14:07:09", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:07:39", "start": "2026-08-02T14:09:47", "end": "2026-08-02T14:15:28", "elapsed_s": 341, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0947, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:08:02", "start": "2026-08-02T14:11:51", "end": "2026-08-02T14:15:28", "elapsed_s": 217, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:09:07", "start": "2026-08-02T14:11:51", "end": "2026-08-02T14:15:58", "elapsed_s": 247, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0686, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:09:35", "start": "2026-08-02T14:11:51", "end": "2026-08-02T14:18:40", "elapsed_s": 409, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:10:06", "start": "2026-08-02T14:12:22", "end": "2026-08-02T14:15:29", "elapsed_s": 187, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0519, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:15:30", "start": "2026-08-02T14:17:32", "end": "2026-08-02T14:18:18", "elapsed_s": 46, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:16:00", "start": "2026-08-02T14:19:36", "end": "2026-08-02T14:19:43", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:16:21", "start": "2026-08-02T14:19:36", "end": "2026-08-02T14:19:43", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:16:24", "start": "2026-08-02T14:19:36", "end": "2026-08-02T14:19:46", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:19:10", "start": "2026-08-02T14:21:41", "end": "2026-08-02T14:24:01", "elapsed_s": 140, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0389, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:19:33", "start": "2026-08-02T14:22:45", "end": "2026-08-02T14:36:46", "elapsed_s": 841, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2336, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:19:45", "start": "2026-08-02T14:23:16", "end": "2026-08-02T14:24:01", "elapsed_s": 45, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:20:35", "start": "2026-08-02T14:23:47", "end": "2026-08-02T14:28:07", "elapsed_s": 260, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0722, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:20:36", "start": "2026-08-02T14:23:47", "end": "2026-08-02T14:34:09", "elapsed_s": 622, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1728, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:24:53", "start": "2026-08-02T14:27:55", "end": "2026-08-02T14:33:38", "elapsed_s": 343, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0953, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:24:57", "start": "2026-08-02T14:27:55", "end": "2026-08-02T14:35:11", "elapsed_s": 436, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:29:01", "start": "2026-08-02T14:31:35", "end": "2026-08-02T14:37:52", "elapsed_s": 377, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:34:36", "start": "2026-08-02T14:37:52", "end": "2026-08-02T14:41:17", "elapsed_s": 205, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0569, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:35:01", "start": "2026-08-02T14:38:23", "end": "2026-08-02T14:41:17", "elapsed_s": 174, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0483, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:36:04", "start": "2026-08-02T14:38:54", "end": "2026-08-02T14:45:37", "elapsed_s": 403, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:37:41", "start": "2026-08-02T14:40:59", "end": "2026-08-02T14:41:30", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:38:46", "start": "2026-08-02T14:42:32", "end": "2026-08-02T14:48:42", "elapsed_s": 370, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:42:07", "start": "2026-08-02T14:44:36", "end": "2026-08-02T14:45:37", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:42:11", "start": "2026-08-02T14:44:36", "end": "2026-08-02T14:45:59", "elapsed_s": 83, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0231, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:42:22", "start": "2026-08-02T14:44:36", "end": "2026-08-02T14:46:20", "elapsed_s": 104, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:45:40", "start": "2026-08-02T14:48:12", "end": "2026-08-02T14:48:42", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:46:28", "start": "2026-08-02T14:49:15", "end": "2026-08-02T14:54:24", "elapsed_s": 309, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0858, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:46:50", "start": "2026-08-02T14:50:16", "end": "2026-08-02T14:51:18", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:47:09", "start": "2026-08-02T14:50:16", "end": "2026-08-02T14:56:28", "elapsed_s": 372, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:49:34", "start": "2026-08-02T14:51:49", "end": "2026-08-02T14:54:10", "elapsed_s": 141, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0392, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:49:35", "start": "2026-08-02T14:51:49", "end": "2026-08-02T14:57:30", "elapsed_s": 341, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0947, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:51:20", "start": "2026-08-02T14:53:22", "end": "2026-08-02T14:54:10", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:54:27", "start": "2026-08-02T14:56:59", "end": "2026-08-02T14:59:18", "elapsed_s": 139, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0386, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:55:00", "start": "2026-08-02T14:57:30", "end": "2026-08-02T14:58:48", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:55:02", "start": "2026-08-02T14:58:01", "end": "2026-08-02T14:58:27", "elapsed_s": 26, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0072, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:57:22", "start": "2026-08-02T14:59:34", "end": "2026-08-02T15:03:22", "elapsed_s": 228, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0633, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:58:22", "start": "2026-08-02T15:00:36", "end": "2026-08-02T15:03:22", "elapsed_s": 166, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:58:30", "start": "2026-08-02T15:01:08", "end": "2026-08-02T15:02:45", "elapsed_s": 97, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T14:58:52", "start": "2026-08-02T15:01:38", "end": "2026-08-02T15:03:11", "elapsed_s": 93, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0258, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:00:14", "start": "2026-08-02T15:02:40", "end": "2026-08-02T15:02:45", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:03:42", "start": "2026-08-02T15:05:45", "end": "2026-08-02T15:11:49", "elapsed_s": 364, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:03:45", "start": "2026-08-02T15:06:15", "end": "2026-08-02T15:11:27", "elapsed_s": 312, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0867, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:04:08", "start": "2026-08-02T15:06:15", "end": "2026-08-02T15:11:27", "elapsed_s": 312, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0867, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:04:16", "start": "2026-08-02T15:06:46", "end": "2026-08-02T15:07:47", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:04:23", "start": "2026-08-02T15:07:17", "end": "2026-08-02T15:11:27", "elapsed_s": 250, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0694, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:08:39", "start": "2026-08-02T15:12:23", "end": "2026-08-02T15:15:43", "elapsed_s": 200, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:12:19", "start": "2026-08-02T15:14:25", "end": "2026-08-02T15:15:43", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:12:22", "start": "2026-08-02T15:14:25", "end": "2026-08-02T15:15:43", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:12:22", "start": "2026-08-02T15:14:25", "end": "2026-08-02T15:15:43", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:12:40", "start": "2026-08-02T15:16:59", "end": "2026-08-02T15:18:31", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:16:32", "start": "2026-08-02T15:19:32", "end": "2026-08-02T15:21:19", "elapsed_s": 107, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:16:34", "start": "2026-08-02T15:22:05", "end": "2026-08-02T15:23:40", "elapsed_s": 95, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:16:35", "start": "2026-08-02T15:22:36", "end": "2026-08-02T15:23:40", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:16:35", "start": "2026-08-02T15:22:36", "end": "2026-08-02T15:23:40", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:19:21", "start": "2026-08-02T15:22:36", "end": "2026-08-02T15:23:40", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:22:08", "start": "2026-08-02T15:24:38", "end": "2026-08-02T15:25:34", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:24:29", "start": "2026-08-02T15:26:40", "end": "2026-08-02T15:27:57", "elapsed_s": 77, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:24:31", "start": "2026-08-02T15:29:45", "end": "2026-08-02T15:36:55", "elapsed_s": 430, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:24:32", "start": "2026-08-02T15:29:45", "end": "2026-08-02T15:36:28", "elapsed_s": 403, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:24:32", "start": "2026-08-02T15:30:15", "end": "2026-08-02T15:38:24", "elapsed_s": 489, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:26:29", "start": "2026-08-02T15:30:46", "end": "2026-08-02T15:36:55", "elapsed_s": 369, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:28:50", "start": "2026-08-02T15:32:18", "end": "2026-08-02T15:36:28", "elapsed_s": 250, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0694, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:37:18", "start": "2026-08-02T15:39:26", "end": "2026-08-02T15:40:47", "elapsed_s": 81, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:37:26", "start": "2026-08-02T15:39:57", "end": "2026-08-02T15:41:28", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:37:47", "start": "2026-08-02T15:39:57", "end": "2026-08-02T15:45:27", "elapsed_s": 330, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0917, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:37:47", "start": "2026-08-02T15:39:57", "end": "2026-08-02T15:40:47", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:39:20", "start": "2026-08-02T15:41:28", "end": "2026-08-02T15:45:04", "elapsed_s": 216, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.06, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:40:49", "start": "2026-08-02T15:43:30", "end": "2026-08-02T15:45:04", "elapsed_s": 94, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:41:39", "start": "2026-08-02T15:44:32", "end": "2026-08-02T15:46:19", "elapsed_s": 107, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:42:22", "start": "2026-08-02T15:45:02", "end": "2026-08-02T15:45:04", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:45:07", "start": "2026-08-02T15:48:05", "end": "2026-08-02T15:53:38", "elapsed_s": 333, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0925, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:45:30", "start": "2026-08-02T15:48:05", "end": "2026-08-02T15:54:13", "elapsed_s": 368, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:45:55", "start": "2026-08-02T15:48:05", "end": "2026-08-02T15:57:58", "elapsed_s": 593, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1647, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:46:02", "start": "2026-08-02T15:50:08", "end": "2026-08-02T15:52:41", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:47:12", "start": "2026-08-02T15:50:08", "end": "2026-08-02T15:53:38", "elapsed_s": 210, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0583, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:53:42", "start": "2026-08-02T15:55:44", "end": "2026-08-02T15:57:58", "elapsed_s": 134, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:54:29", "start": "2026-08-02T15:56:45", "end": "2026-08-02T15:58:17", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:54:32", "start": "2026-08-02T15:56:45", "end": "2026-08-02T15:57:58", "elapsed_s": 73, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0203, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:55:05", "start": "2026-08-02T15:57:16", "end": "2026-08-02T15:59:18", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:58:49", "start": "2026-08-02T16:01:20", "end": "2026-08-02T16:06:34", "elapsed_s": 314, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0872, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:58:49", "start": "2026-08-02T16:01:20", "end": "2026-08-02T16:07:05", "elapsed_s": 345, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0958, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:58:50", "start": "2026-08-02T16:01:20", "end": "2026-08-02T16:06:34", "elapsed_s": 314, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0872, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T15:59:14", "start": "2026-08-02T16:01:20", "end": "2026-08-02T16:06:34", "elapsed_s": 314, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0872, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:00:09", "start": "2026-08-02T16:02:21", "end": "2026-08-02T16:06:34", "elapsed_s": 253, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0703, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:06:37", "start": "2026-08-02T16:08:58", "end": "2026-08-02T16:10:49", "elapsed_s": 111, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0308, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:07:24", "start": "2026-08-02T16:09:28", "end": "2026-08-02T16:11:00", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:07:25", "start": "2026-08-02T16:09:28", "end": "2026-08-02T16:11:24", "elapsed_s": 116, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:07:27", "start": "2026-08-02T16:09:28", "end": "2026-08-02T16:10:49", "elapsed_s": 81, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:07:57", "start": "2026-08-02T16:09:59", "end": "2026-08-02T16:10:49", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:10:51", "start": "2026-08-02T16:14:35", "end": "2026-08-02T16:15:05", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:11:45", "start": "2026-08-02T16:14:35", "end": "2026-08-02T16:15:05", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:11:49", "start": "2026-08-02T16:16:06", "end": "2026-08-02T16:18:34", "elapsed_s": 148, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0411, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:12:15", "start": "2026-08-02T16:16:06", "end": "2026-08-02T16:19:41", "elapsed_s": 215, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:12:15", "start": "2026-08-02T16:16:06", "end": "2026-08-02T16:20:11", "elapsed_s": 245, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0681, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:15:56", "start": "2026-08-02T16:18:09", "end": "2026-08-02T16:18:34", "elapsed_s": 25, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0069, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:15:57", "start": "2026-08-02T16:18:09", "end": "2026-08-02T16:18:34", "elapsed_s": 25, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0069, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:19:24", "start": "2026-08-02T16:21:43", "end": "2026-08-02T16:24:16", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:19:26", "start": "2026-08-02T16:21:43", "end": "2026-08-02T16:24:01", "elapsed_s": 138, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:19:27", "start": "2026-08-02T16:22:14", "end": "2026-08-02T16:23:37", "elapsed_s": 83, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0231, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:19:44", "start": "2026-08-02T16:23:15", "end": "2026-08-02T16:24:46", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:21:09", "start": "2026-08-02T16:24:16", "end": "2026-08-02T16:27:55", "elapsed_s": 219, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0608, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:24:36", "start": "2026-08-02T16:26:50", "end": "2026-08-02T16:32:29", "elapsed_s": 339, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0942, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:24:53", "start": "2026-08-02T16:27:20", "end": "2026-08-02T16:27:55", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:25:08", "start": "2026-08-02T16:27:20", "end": "2026-08-02T16:27:55", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:25:48", "start": "2026-08-02T16:27:51", "end": "2026-08-02T16:32:26", "elapsed_s": 275, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0764, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:27:58", "start": "2026-08-02T16:30:24", "end": "2026-08-02T16:32:11", "elapsed_s": 107, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:28:45", "start": "2026-08-02T16:31:25", "end": "2026-08-02T16:33:27", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:28:47", "start": "2026-08-02T16:31:25", "end": "2026-08-02T16:32:57", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:32:30", "start": "2026-08-02T16:35:30", "end": "2026-08-02T16:41:08", "elapsed_s": 338, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0939, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:33:01", "start": "2026-08-02T16:35:30", "end": "2026-08-02T16:36:28", "elapsed_s": 58, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:33:01", "start": "2026-08-02T16:35:30", "end": "2026-08-02T16:42:09", "elapsed_s": 399, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:33:23", "start": "2026-08-02T16:36:01", "end": "2026-08-02T16:36:28", "elapsed_s": 27, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0075, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:34:27", "start": "2026-08-02T16:37:33", "end": "2026-08-02T16:40:46", "elapsed_s": 193, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:37:18", "start": "2026-08-02T16:39:36", "end": "2026-08-02T16:40:46", "elapsed_s": 70, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:37:18", "start": "2026-08-02T16:39:36", "end": "2026-08-02T16:41:08", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:40:49", "start": "2026-08-02T16:43:11", "end": "2026-08-02T16:45:03", "elapsed_s": 112, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:41:37", "start": "2026-08-02T16:43:42", "end": "2026-08-02T16:49:20", "elapsed_s": 338, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0939, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:41:57", "start": "2026-08-02T16:44:13", "end": "2026-08-02T16:45:45", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:42:07", "start": "2026-08-02T16:46:16", "end": "2026-08-02T16:52:24", "elapsed_s": 368, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:43:08", "start": "2026-08-02T16:46:16", "end": "2026-08-02T16:52:47", "elapsed_s": 391, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:45:59", "start": "2026-08-02T16:48:49", "end": "2026-08-02T16:49:20", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:46:38", "start": "2026-08-02T16:50:52", "end": "2026-08-02T16:52:26", "elapsed_s": 94, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:50:11", "start": "2026-08-02T16:52:24", "end": "2026-08-02T16:53:55", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:50:11", "start": "2026-08-02T16:53:25", "end": "2026-08-02T16:53:40", "elapsed_s": 15, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:53:16", "start": "2026-08-02T16:55:27", "end": "2026-08-02T16:57:25", "elapsed_s": 118, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0328, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:53:21", "start": "2026-08-02T16:55:27", "end": "2026-08-02T17:02:32", "elapsed_s": 425, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:53:38", "start": "2026-08-02T16:55:58", "end": "2026-08-02T16:57:29", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:54:31", "start": "2026-08-02T16:58:30", "end": "2026-08-02T17:08:11", "elapsed_s": 581, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1614, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:54:48", "start": "2026-08-02T16:58:30", "end": "2026-08-02T17:02:12", "elapsed_s": 222, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0617, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:58:17", "start": "2026-08-02T17:01:34", "end": "2026-08-02T17:02:35", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T16:58:22", "start": "2026-08-02T17:02:04", "end": "2026-08-02T17:02:12", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:02:16", "start": "2026-08-02T17:04:37", "end": "2026-08-02T17:06:39", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:03:05", "start": "2026-08-02T17:06:09", "end": "2026-08-02T17:10:51", "elapsed_s": 282, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0783, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:03:28", "start": "2026-08-02T17:06:09", "end": "2026-08-02T17:06:30", "elapsed_s": 21, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:03:28", "start": "2026-08-02T17:06:09", "end": "2026-08-02T17:06:55", "elapsed_s": 46, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:06:32", "start": "2026-08-02T17:09:12", "end": "2026-08-02T17:10:51", "elapsed_s": 99, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:07:32", "start": "2026-08-02T17:09:43", "end": "2026-08-02T17:11:14", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:07:53", "start": "2026-08-02T17:10:13", "end": "2026-08-02T17:16:22", "elapsed_s": 369, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:09:00", "start": "2026-08-02T17:12:46", "end": "2026-08-02T17:18:58", "elapsed_s": 372, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:11:41", "start": "2026-08-02T17:13:48", "end": "2026-08-02T17:26:32", "elapsed_s": 764, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:11:44", "start": "2026-08-02T17:14:19", "end": "2026-08-02T17:15:08", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:12:04", "start": "2026-08-02T17:14:19", "end": "2026-08-02T17:15:20", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:16:02", "start": "2026-08-02T17:18:28", "end": "2026-08-02T17:21:18", "elapsed_s": 170, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:16:14", "start": "2026-08-02T17:20:02", "end": "2026-08-02T17:21:18", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:16:25", "start": "2026-08-02T17:20:02", "end": "2026-08-02T17:21:18", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:19:54", "start": "2026-08-02T17:22:40", "end": "2026-08-02T17:23:49", "elapsed_s": 69, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:22:22", "start": "2026-08-02T17:24:47", "end": "2026-08-02T17:25:41", "elapsed_s": 54, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.015, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:22:24", "start": "2026-08-02T17:25:19", "end": "2026-08-02T17:25:41", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:22:25", "start": "2026-08-02T17:25:19", "end": "2026-08-02T17:25:41", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:24:43", "start": "2026-08-02T17:26:55", "end": "2026-08-02T17:28:31", "elapsed_s": 96, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:26:34", "start": "2026-08-02T17:29:37", "end": "2026-08-02T17:37:02", "elapsed_s": 445, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:26:37", "start": "2026-08-02T17:29:37", "end": "2026-08-02T17:41:55", "elapsed_s": 738, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.205, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:26:42", "start": "2026-08-02T17:29:37", "end": "2026-08-02T17:33:42", "elapsed_s": 245, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0681, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:27:24", "start": "2026-08-02T17:29:37", "end": "2026-08-02T17:34:03", "elapsed_s": 266, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0739, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:29:27", "start": "2026-08-02T17:31:47", "end": "2026-08-02T17:32:51", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:33:49", "start": "2026-08-02T17:38:08", "end": "2026-08-02T17:45:47", "elapsed_s": 459, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:34:37", "start": "2026-08-02T17:38:08", "end": "2026-08-02T17:38:40", "elapsed_s": 32, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0089, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:34:57", "start": "2026-08-02T17:38:40", "end": "2026-08-02T17:41:25", "elapsed_s": 165, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0458, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:37:59", "start": "2026-08-02T17:40:45", "end": "2026-08-02T17:45:54", "elapsed_s": 309, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0858, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:39:35", "start": "2026-08-02T17:42:49", "end": "2026-08-02T17:43:19", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:42:16", "start": "2026-08-02T17:44:53", "end": "2026-08-02T17:45:47", "elapsed_s": 54, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.015, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:42:57", "start": "2026-08-02T17:45:55", "end": "2026-08-02T17:47:55", "elapsed_s": 120, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:43:24", "start": "2026-08-02T17:45:55", "end": "2026-08-02T17:47:16", "elapsed_s": 81, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:46:42", "start": "2026-08-02T17:49:00", "end": "2026-08-02T17:50:07", "elapsed_s": 67, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:46:43", "start": "2026-08-02T17:49:00", "end": "2026-08-02T17:50:07", "elapsed_s": 67, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:47:13", "start": "2026-08-02T17:50:02", "end": "2026-08-02T17:50:33", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:47:19", "start": "2026-08-02T17:51:04", "end": "2026-08-02T17:55:53", "elapsed_s": 289, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0803, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:48:46", "start": "2026-08-02T17:52:36", "end": "2026-08-02T17:56:25", "elapsed_s": 229, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0636, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:50:57", "start": "2026-08-02T17:53:07", "end": "2026-08-02T17:56:12", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:50:58", "start": "2026-08-02T17:53:07", "end": "2026-08-02T17:56:25", "elapsed_s": 198, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.055, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:51:27", "start": "2026-08-02T17:53:38", "end": "2026-08-02T17:55:53", "elapsed_s": 135, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0375, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:56:53", "start": "2026-08-02T17:59:18", "end": "2026-08-02T18:00:20", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:56:56", "start": "2026-08-02T17:59:18", "end": "2026-08-02T18:01:54", "elapsed_s": 156, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0433, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:57:16", "start": "2026-08-02T17:59:18", "end": "2026-08-02T18:01:23", "elapsed_s": 125, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0347, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:57:35", "start": "2026-08-02T17:59:49", "end": "2026-08-02T18:00:13", "elapsed_s": 24, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T17:57:37", "start": "2026-08-02T18:01:23", "end": "2026-08-02T18:04:42", "elapsed_s": 199, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0553, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:01:07", "start": "2026-08-02T18:03:33", "end": "2026-08-02T18:05:41", "elapsed_s": 128, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:01:11", "start": "2026-08-02T18:03:33", "end": "2026-08-02T18:05:09", "elapsed_s": 96, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:01:27", "start": "2026-08-02T18:03:33", "end": "2026-08-02T18:03:36", "elapsed_s": 3, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:02:46", "start": "2026-08-02T18:05:41", "end": "2026-08-02T18:09:03", "elapsed_s": 202, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0561, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:04:26", "start": "2026-08-02T18:06:46", "end": "2026-08-02T18:09:00", "elapsed_s": 134, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:05:12", "start": "2026-08-02T18:07:49", "end": "2026-08-02T18:12:14", "elapsed_s": 265, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0736, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:05:36", "start": "2026-08-02T18:08:52", "end": "2026-08-02T18:09:03", "elapsed_s": 11, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:06:37", "start": "2026-08-02T18:09:24", "end": "2026-08-02T18:25:42", "elapsed_s": 978, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2717, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:09:56", "start": "2026-08-02T18:13:17", "end": "2026-08-02T18:17:20", "elapsed_s": 243, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0675, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:09:56", "start": "2026-08-02T18:14:20", "end": "2026-08-02T18:17:20", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:09:58", "start": "2026-08-02T18:15:22", "end": "2026-08-02T18:18:28", "elapsed_s": 186, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:13:04", "start": "2026-08-02T18:15:53", "end": "2026-08-02T18:17:26", "elapsed_s": 93, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0258, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:18:13", "start": "2026-08-02T18:20:34", "end": "2026-08-02T18:25:42", "elapsed_s": 308, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0856, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:18:13", "start": "2026-08-02T18:21:05", "end": "2026-08-02T18:25:42", "elapsed_s": 277, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:18:34", "start": "2026-08-02T18:21:05", "end": "2026-08-02T18:25:42", "elapsed_s": 277, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:19:18", "start": "2026-08-02T18:22:07", "end": "2026-08-02T18:25:42", "elapsed_s": 215, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:26:55", "start": "2026-08-02T18:29:58", "end": "2026-08-02T18:33:44", "elapsed_s": 226, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0628, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:26:55", "start": "2026-08-02T18:31:01", "end": "2026-08-02T18:34:05", "elapsed_s": 184, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0511, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:26:55", "start": "2026-08-02T18:31:32", "end": "2026-08-02T18:34:09", "elapsed_s": 157, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0436, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:26:56", "start": "2026-08-02T18:32:04", "end": "2026-08-02T18:34:09", "elapsed_s": 125, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0347, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:26:59", "start": "2026-08-02T18:32:04", "end": "2026-08-02T18:34:09", "elapsed_s": 125, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0347, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:34:35", "start": "2026-08-02T18:36:47", "end": "2026-08-02T18:40:11", "elapsed_s": 204, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0567, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:35:00", "start": "2026-08-02T18:37:50", "end": "2026-08-02T18:40:14", "elapsed_s": 144, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.04, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:35:00", "start": "2026-08-02T18:38:23", "end": "2026-08-02T18:40:14", "elapsed_s": 111, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0308, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:35:00", "start": "2026-08-02T18:39:26", "end": "2026-08-02T18:40:14", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:35:07", "start": "2026-08-02T18:39:58", "end": "2026-08-02T18:40:14", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:41:05", "start": "2026-08-02T18:44:14", "end": "2026-08-02T18:44:34", "elapsed_s": 20, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0056, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:41:07", "start": "2026-08-02T18:45:17", "end": "2026-08-02T18:46:32", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:41:08", "start": "2026-08-02T18:45:17", "end": "2026-08-02T18:48:52", "elapsed_s": 215, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:41:08", "start": "2026-08-02T18:45:48", "end": "2026-08-02T18:49:08", "elapsed_s": 200, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:41:09", "start": "2026-08-02T18:45:48", "end": "2026-08-02T18:48:48", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:45:24", "start": "2026-08-02T18:47:52", "end": "2026-08-02T18:48:48", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:46:35", "start": "2026-08-02T18:49:56", "end": "2026-08-02T18:53:25", "elapsed_s": 209, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0581, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:49:46", "start": "2026-08-02T18:52:00", "end": "2026-08-02T18:53:25", "elapsed_s": 85, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:49:48", "start": "2026-08-02T18:52:31", "end": "2026-08-02T18:53:25", "elapsed_s": 54, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.015, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:49:54", "start": "2026-08-02T18:52:31", "end": "2026-08-02T18:53:25", "elapsed_s": 54, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.015, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:50:01", "start": "2026-08-02T18:52:31", "end": "2026-08-02T18:54:08", "elapsed_s": 97, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:53:28", "start": "2026-08-02T18:56:08", "end": "2026-08-02T18:57:47", "elapsed_s": 99, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:54:17", "start": "2026-08-02T18:56:39", "end": "2026-08-02T18:57:50", "elapsed_s": 71, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:54:17", "start": "2026-08-02T18:56:39", "end": "2026-08-02T19:02:08", "elapsed_s": 329, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0914, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:54:18", "start": "2026-08-02T18:57:10", "end": "2026-08-02T18:57:47", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:55:00", "start": "2026-08-02T18:58:44", "end": "2026-08-02T19:10:53", "elapsed_s": 729, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:57:48", "start": "2026-08-02T19:00:17", "end": "2026-08-02T19:11:42", "elapsed_s": 685, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1903, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:58:36", "start": "2026-08-02T19:00:47", "end": "2026-08-02T19:10:53", "elapsed_s": 606, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1683, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T18:58:45", "start": "2026-08-02T19:00:47", "end": "2026-08-02T19:02:08", "elapsed_s": 81, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:03:07", "start": "2026-08-02T19:05:26", "end": "2026-08-02T19:10:02", "elapsed_s": 276, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:03:12", "start": "2026-08-02T19:05:26", "end": "2026-08-02T19:10:53", "elapsed_s": 327, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0908, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:10:04", "start": "2026-08-02T19:12:06", "end": "2026-08-02T19:15:15", "elapsed_s": 189, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:10:57", "start": "2026-08-02T19:13:07", "end": "2026-08-02T19:15:19", "elapsed_s": 132, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0367, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:11:44", "start": "2026-08-02T19:14:08", "end": "2026-08-02T19:15:44", "elapsed_s": 96, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:11:47", "start": "2026-08-02T19:14:08", "end": "2026-08-02T19:15:15", "elapsed_s": 67, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:12:31", "start": "2026-08-02T19:14:39", "end": "2026-08-02T19:15:19", "elapsed_s": 40, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:15:23", "start": "2026-08-02T19:17:42", "end": "2026-08-02T19:19:38", "elapsed_s": 116, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:16:04", "start": "2026-08-02T19:18:13", "end": "2026-08-02T19:19:38", "elapsed_s": 85, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:16:06", "start": "2026-08-02T19:18:13", "end": "2026-08-02T19:18:47", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:16:12", "start": "2026-08-02T19:18:13", "end": "2026-08-02T19:19:38", "elapsed_s": 85, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:16:42", "start": "2026-08-02T19:18:44", "end": "2026-08-02T19:19:38", "elapsed_s": 54, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.015, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:18:50", "start": "2026-08-02T19:21:16", "end": "2026-08-02T19:21:57", "elapsed_s": 41, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:20:27", "start": "2026-08-02T19:23:18", "end": "2026-08-02T19:23:42", "elapsed_s": 24, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:20:28", "start": "2026-08-02T19:23:49", "end": "2026-08-02T19:27:59", "elapsed_s": 250, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0694, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:20:32", "start": "2026-08-02T19:23:49", "end": "2026-08-02T19:28:26", "elapsed_s": 277, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:20:33", "start": "2026-08-02T19:24:20", "end": "2026-08-02T19:27:59", "elapsed_s": 219, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0608, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:22:50", "start": "2026-08-02T19:25:21", "end": "2026-08-02T19:27:59", "elapsed_s": 158, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0439, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:24:35", "start": "2026-08-02T19:27:23", "end": "2026-08-02T19:27:59", "elapsed_s": 36, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.01, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:28:02", "start": "2026-08-02T19:30:58", "end": "2026-08-02T19:32:05", "elapsed_s": 67, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:28:48", "start": "2026-08-02T19:30:58", "end": "2026-08-02T19:32:05", "elapsed_s": 67, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:28:50", "start": "2026-08-02T19:31:28", "end": "2026-08-02T19:32:05", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:28:53", "start": "2026-08-02T19:33:00", "end": "2026-08-02T19:41:24", "elapsed_s": 504, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.14, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:29:17", "start": "2026-08-02T19:33:00", "end": "2026-08-02T19:36:34", "elapsed_s": 214, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0594, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:32:54", "start": "2026-08-02T19:35:03", "end": "2026-08-02T19:36:34", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:32:54", "start": "2026-08-02T19:35:03", "end": "2026-08-02T19:41:27", "elapsed_s": 384, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:32:55", "start": "2026-08-02T19:35:03", "end": "2026-08-02T19:37:26", "elapsed_s": 143, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:36:38", "start": "2026-08-02T19:39:39", "end": "2026-08-02T19:41:24", "elapsed_s": 105, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0292, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:37:24", "start": "2026-08-02T19:39:39", "end": "2026-08-02T19:41:24", "elapsed_s": 105, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0292, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:38:16", "start": "2026-08-02T19:40:41", "end": "2026-08-02T19:41:03", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:41:53", "start": "2026-08-02T19:44:15", "end": "2026-08-02T19:45:14", "elapsed_s": 59, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:42:13", "start": "2026-08-02T19:44:15", "end": "2026-08-02T19:44:34", "elapsed_s": 19, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:42:17", "start": "2026-08-02T19:44:45", "end": "2026-08-02T19:45:46", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:42:17", "start": "2026-08-02T19:46:47", "end": "2026-08-02T19:50:07", "elapsed_s": 200, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:42:25", "start": "2026-08-02T19:46:47", "end": "2026-08-02T19:50:29", "elapsed_s": 222, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0617, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:45:28", "start": "2026-08-02T19:47:49", "end": "2026-08-02T19:50:10", "elapsed_s": 141, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0392, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:46:06", "start": "2026-08-02T19:48:19", "end": "2026-08-02T19:50:10", "elapsed_s": 111, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0308, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:46:41", "start": "2026-08-02T19:48:50", "end": "2026-08-02T19:50:07", "elapsed_s": 77, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:50:57", "start": "2026-08-02T19:54:26", "end": "2026-08-02T19:56:00", "elapsed_s": 94, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:50:58", "start": "2026-08-02T19:54:26", "end": "2026-08-02T19:54:28", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:51:06", "start": "2026-08-02T19:54:26", "end": "2026-08-02T19:56:21", "elapsed_s": 115, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:51:16", "start": "2026-08-02T19:54:26", "end": "2026-08-02T19:54:28", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:51:20", "start": "2026-08-02T19:54:57", "end": "2026-08-02T19:56:47", "elapsed_s": 110, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:55:23", "start": "2026-08-02T19:58:00", "end": "2026-08-02T20:00:50", "elapsed_s": 170, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:55:25", "start": "2026-08-02T19:58:00", "end": "2026-08-02T19:58:49", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:56:50", "start": "2026-08-02T19:59:32", "end": "2026-08-02T20:01:10", "elapsed_s": 98, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:57:12", "start": "2026-08-02T19:59:32", "end": "2026-08-02T20:01:10", "elapsed_s": 98, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:57:37", "start": "2026-08-02T20:00:02", "end": "2026-08-02T20:01:10", "elapsed_s": 68, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T19:59:42", "start": "2026-08-02T20:02:35", "end": "2026-08-02T20:03:08", "elapsed_s": 33, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:01:41", "start": "2026-08-02T20:04:07", "end": "2026-08-02T20:05:28", "elapsed_s": 81, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:02:01", "start": "2026-08-02T20:04:37", "end": "2026-08-02T20:09:47", "elapsed_s": 310, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0861, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:02:03", "start": "2026-08-02T20:04:37", "end": "2026-08-02T20:09:47", "elapsed_s": 310, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0861, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:02:08", "start": "2026-08-02T20:04:37", "end": "2026-08-02T20:05:28", "elapsed_s": 51, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:03:58", "start": "2026-08-02T20:06:40", "end": "2026-08-02T20:07:54", "elapsed_s": 74, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0206, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:05:31", "start": "2026-08-02T20:07:41", "end": "2026-08-02T20:09:49", "elapsed_s": 128, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:06:25", "start": "2026-08-02T20:08:42", "end": "2026-08-02T20:09:47", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:08:46", "start": "2026-08-02T20:11:15", "end": "2026-08-02T20:11:52", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:10:39", "start": "2026-08-02T20:13:17", "end": "2026-08-02T20:16:11", "elapsed_s": 174, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0483, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:10:39", "start": "2026-08-02T20:13:17", "end": "2026-08-02T20:13:57", "elapsed_s": 40, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:10:40", "start": "2026-08-02T20:13:17", "end": "2026-08-02T20:13:57", "elapsed_s": 40, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:10:45", "start": "2026-08-02T20:13:17", "end": "2026-08-02T20:14:13", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:12:43", "start": "2026-08-02T20:15:20", "end": "2026-08-02T20:16:11", "elapsed_s": 51, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:14:00", "start": "2026-08-02T20:17:52", "end": "2026-08-02T20:24:51", "elapsed_s": 419, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:14:52", "start": "2026-08-02T20:17:52", "end": "2026-08-02T20:20:33", "elapsed_s": 161, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0447, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:15:03", "start": "2026-08-02T20:17:52", "end": "2026-08-02T20:20:56", "elapsed_s": 184, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0511, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:17:01", "start": "2026-08-02T20:19:24", "end": "2026-08-02T20:20:27", "elapsed_s": 63, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:17:01", "start": "2026-08-02T20:20:25", "end": "2026-08-02T20:20:33", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:21:19", "start": "2026-08-02T20:23:29", "end": "2026-08-02T20:24:51", "elapsed_s": 82, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0228, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:21:28", "start": "2026-08-02T20:23:29", "end": "2026-08-02T20:24:51", "elapsed_s": 82, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0228, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:21:28", "start": "2026-08-02T20:23:29", "end": "2026-08-02T20:26:08", "elapsed_s": 159, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:21:48", "start": "2026-08-02T20:24:00", "end": "2026-08-02T20:24:51", "elapsed_s": 51, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:25:40", "start": "2026-08-02T20:28:05", "end": "2026-08-02T20:29:12", "elapsed_s": 67, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:25:41", "start": "2026-08-02T20:28:05", "end": "2026-08-02T20:33:33", "elapsed_s": 328, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0911, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:25:42", "start": "2026-08-02T20:30:07", "end": "2026-08-02T20:32:06", "elapsed_s": 119, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0331, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:25:43", "start": "2026-08-02T20:30:07", "end": "2026-08-02T20:32:03", "elapsed_s": 116, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:27:00", "start": "2026-08-02T20:30:38", "end": "2026-08-02T20:32:06", "elapsed_s": 88, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:30:05", "start": "2026-08-02T20:33:11", "end": "2026-08-02T20:37:52", "elapsed_s": 281, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0781, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:32:54", "start": "2026-08-02T20:35:13", "end": "2026-08-02T20:37:52", "elapsed_s": 159, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:32:56", "start": "2026-08-02T20:35:44", "end": "2026-08-02T20:38:47", "elapsed_s": 183, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:32:57", "start": "2026-08-02T20:35:44", "end": "2026-08-02T20:37:52", "elapsed_s": 128, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:34:26", "start": "2026-08-02T20:36:45", "end": "2026-08-02T20:37:52", "elapsed_s": 67, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:38:42", "start": "2026-08-02T20:40:51", "end": "2026-08-02T20:42:12", "elapsed_s": 81, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:38:43", "start": "2026-08-02T20:40:51", "end": "2026-08-02T20:42:15", "elapsed_s": 84, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0233, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:38:44", "start": "2026-08-02T20:40:51", "end": "2026-08-02T20:42:48", "elapsed_s": 117, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0325, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:38:49", "start": "2026-08-02T20:40:51", "end": "2026-08-02T20:42:12", "elapsed_s": 81, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:39:39", "start": "2026-08-02T20:42:53", "end": "2026-08-02T20:46:35", "elapsed_s": 222, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0617, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:42:14", "start": "2026-08-02T20:44:55", "end": "2026-08-02T20:46:35", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:42:15", "start": "2026-08-02T20:44:55", "end": "2026-08-02T20:47:07", "elapsed_s": 132, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0367, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:43:05", "start": "2026-08-02T20:45:27", "end": "2026-08-02T20:46:35", "elapsed_s": 68, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:43:39", "start": "2026-08-02T20:45:58", "end": "2026-08-02T20:46:35", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:46:37", "start": "2026-08-02T20:49:01", "end": "2026-08-02T20:55:19", "elapsed_s": 378, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.105, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:47:24", "start": "2026-08-02T20:49:32", "end": "2026-08-02T20:50:55", "elapsed_s": 83, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0231, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:47:25", "start": "2026-08-02T20:50:02", "end": "2026-08-02T20:50:55", "elapsed_s": 53, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:47:27", "start": "2026-08-02T20:50:33", "end": "2026-08-02T20:50:55", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:47:57", "start": "2026-08-02T20:51:04", "end": "2026-08-02T20:53:37", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:51:45", "start": "2026-08-02T20:54:08", "end": "2026-08-02T20:55:19", "elapsed_s": 71, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:51:50", "start": "2026-08-02T20:57:11", "end": "2026-08-02T20:59:48", "elapsed_s": 157, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0436, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:51:51", "start": "2026-08-02T20:57:11", "end": "2026-08-02T20:59:37", "elapsed_s": 146, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0406, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:54:26", "start": "2026-08-02T20:57:11", "end": "2026-08-02T20:59:37", "elapsed_s": 146, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0406, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:56:10", "start": "2026-08-02T20:58:43", "end": "2026-08-02T20:59:41", "elapsed_s": 58, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:56:13", "start": "2026-08-02T20:58:43", "end": "2026-08-02T21:04:36", "elapsed_s": 353, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0981, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:59:43", "start": "2026-08-02T21:01:46", "end": "2026-08-02T21:02:00", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T20:59:50", "start": "2026-08-02T21:02:47", "end": "2026-08-02T21:04:36", "elapsed_s": 109, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:00:28", "start": "2026-08-02T21:03:18", "end": "2026-08-02T21:03:59", "elapsed_s": 41, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:00:31", "start": "2026-08-02T21:03:18", "end": "2026-08-02T21:03:59", "elapsed_s": 41, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:02:49", "start": "2026-08-02T21:05:20", "end": "2026-08-02T21:08:20", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:04:48", "start": "2026-08-02T21:06:52", "end": "2026-08-02T21:08:20", "elapsed_s": 88, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:04:55", "start": "2026-08-02T21:08:55", "end": "2026-08-02T21:09:03", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:05:26", "start": "2026-08-02T21:09:25", "end": "2026-08-02T21:13:18", "elapsed_s": 233, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0647, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:05:27", "start": "2026-08-02T21:09:56", "end": "2026-08-02T21:12:42", "elapsed_s": 166, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:09:13", "start": "2026-08-02T21:11:28", "end": "2026-08-02T21:12:42", "elapsed_s": 74, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0206, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:09:15", "start": "2026-08-02T21:11:28", "end": "2026-08-02T21:17:03", "elapsed_s": 335, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0931, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:10:02", "start": "2026-08-02T21:12:29", "end": "2026-08-02T21:12:42", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:13:32", "start": "2026-08-02T21:16:03", "end": "2026-08-02T21:17:03", "elapsed_s": 60, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:13:33", "start": "2026-08-02T21:16:34", "end": "2026-08-02T21:17:10", "elapsed_s": 36, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.01, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:13:35", "start": "2026-08-02T21:18:05", "end": "2026-08-02T21:25:43", "elapsed_s": 458, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:14:09", "start": "2026-08-02T21:18:05", "end": "2026-08-02T21:26:06", "elapsed_s": 481, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1336, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:17:05", "start": "2026-08-02T21:20:08", "end": "2026-08-02T21:21:23", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:17:57", "start": "2026-08-02T21:20:38", "end": "2026-08-02T21:21:23", "elapsed_s": 45, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:18:04", "start": "2026-08-02T21:22:41", "end": "2026-08-02T21:25:43", "elapsed_s": 182, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0506, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:22:13", "start": "2026-08-02T21:24:44", "end": "2026-08-02T21:25:43", "elapsed_s": 59, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:22:15", "start": "2026-08-02T21:24:44", "end": "2026-08-02T21:25:43", "elapsed_s": 59, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:26:33", "start": "2026-08-02T21:28:49", "end": "2026-08-02T21:30:06", "elapsed_s": 77, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:26:34", "start": "2026-08-02T21:29:50", "end": "2026-08-02T21:30:06", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:26:36", "start": "2026-08-02T21:29:50", "end": "2026-08-02T21:30:06", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:26:45", "start": "2026-08-02T21:29:50", "end": "2026-08-02T21:30:06", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:26:58", "start": "2026-08-02T21:29:50", "end": "2026-08-02T21:30:23", "elapsed_s": 33, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:30:09", "start": "2026-08-02T21:32:24", "end": "2026-08-02T21:33:09", "elapsed_s": 45, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:30:56", "start": "2026-08-02T21:33:25", "end": "2026-08-02T21:34:26", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:30:56", "start": "2026-08-02T21:33:25", "end": "2026-08-02T21:34:26", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:31:02", "start": "2026-08-02T21:33:25", "end": "2026-08-02T21:34:56", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:31:14", "start": "2026-08-02T21:33:25", "end": "2026-08-02T21:34:26", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:33:59", "start": "2026-08-02T21:36:30", "end": "2026-08-02T21:38:52", "elapsed_s": 142, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:34:29", "start": "2026-08-02T21:37:00", "end": "2026-08-02T21:38:42", "elapsed_s": 102, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:35:18", "start": "2026-08-02T21:37:31", "end": "2026-08-02T21:38:42", "elapsed_s": 71, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:35:20", "start": "2026-08-02T21:38:02", "end": "2026-08-02T21:38:52", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:35:47", "start": "2026-08-02T21:38:33", "end": "2026-08-02T21:38:52", "elapsed_s": 19, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:39:35", "start": "2026-08-02T21:43:40", "end": "2026-08-02T21:46:56", "elapsed_s": 196, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0544, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:39:35", "start": "2026-08-02T21:44:11", "end": "2026-08-02T21:51:36", "elapsed_s": 445, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:39:41", "start": "2026-08-02T21:44:11", "end": "2026-08-02T21:51:36", "elapsed_s": 445, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:39:43", "start": "2026-08-02T21:44:11", "end": "2026-08-02T21:51:36", "elapsed_s": 445, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:39:43", "start": "2026-08-02T21:44:41", "end": "2026-08-02T21:51:36", "elapsed_s": 415, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:46:58", "start": "2026-08-02T21:49:17", "end": "2026-08-02T21:51:36", "elapsed_s": 139, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0386, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:52:26", "start": "2026-08-02T21:54:55", "end": "2026-08-02T22:17:26", "elapsed_s": 1351, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3753, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:52:30", "start": "2026-08-02T21:54:55", "end": "2026-08-02T21:55:51", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:52:30", "start": "2026-08-02T21:54:55", "end": "2026-08-02T21:55:51", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:52:30", "start": "2026-08-02T21:55:25", "end": "2026-08-02T21:55:58", "elapsed_s": 33, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:52:30", "start": "2026-08-02T21:55:25", "end": "2026-08-02T22:04:55", "elapsed_s": 570, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1583, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:55:54", "start": "2026-08-02T21:57:59", "end": "2026-08-02T22:04:32", "elapsed_s": 393, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:56:00", "start": "2026-08-02T22:00:02", "end": "2026-08-02T22:04:55", "elapsed_s": 293, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0814, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T21:56:43", "start": "2026-08-02T22:01:34", "end": "2026-08-02T22:17:31", "elapsed_s": 957, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2658, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:05:23", "start": "2026-08-02T22:07:43", "end": "2026-08-02T22:16:56", "elapsed_s": 553, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:05:50", "start": "2026-08-02T22:08:14", "end": "2026-08-02T22:17:33", "elapsed_s": 559, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1553, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:05:51", "start": "2026-08-02T22:08:14", "end": "2026-08-02T22:20:43", "elapsed_s": 749, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:16:59", "start": "2026-08-02T22:19:27", "end": "2026-08-02T22:20:43", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:17:29", "start": "2026-08-02T22:19:57", "end": "2026-08-02T22:20:43", "elapsed_s": 46, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:18:24", "start": "2026-08-02T22:20:28", "end": "2026-08-02T22:20:43", "elapsed_s": 15, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:18:29", "start": "2026-08-02T22:22:00", "end": "2026-08-02T22:28:09", "elapsed_s": 369, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:21:36", "start": "2026-08-02T22:24:03", "end": "2026-08-02T22:26:09", "elapsed_s": 126, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.035, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:21:36", "start": "2026-08-02T22:24:03", "end": "2026-08-02T22:27:38", "elapsed_s": 215, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:21:36", "start": "2026-08-02T22:24:03", "end": "2026-08-02T22:30:38", "elapsed_s": 395, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:21:37", "start": "2026-08-02T22:24:33", "end": "2026-08-02T22:27:07", "elapsed_s": 154, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0428, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:27:02", "start": "2026-08-02T22:29:10", "end": "2026-08-02T22:30:38", "elapsed_s": 88, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:27:58", "start": "2026-08-02T22:31:44", "end": "2026-08-02T22:34:59", "elapsed_s": 195, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0542, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:28:31", "start": "2026-08-02T22:31:44", "end": "2026-08-02T22:35:26", "elapsed_s": 222, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0617, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:28:59", "start": "2026-08-02T22:32:14", "end": "2026-08-02T22:35:56", "elapsed_s": 222, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0617, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:31:27", "start": "2026-08-02T22:33:47", "end": "2026-08-02T22:34:59", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:31:30", "start": "2026-08-02T22:33:47", "end": "2026-08-02T22:34:59", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:35:02", "start": "2026-08-02T22:37:22", "end": "2026-08-02T22:39:15", "elapsed_s": 113, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0314, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:35:51", "start": "2026-08-02T22:38:24", "end": "2026-08-02T22:39:18", "elapsed_s": 54, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.015, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:35:57", "start": "2026-08-02T22:38:24", "end": "2026-08-02T22:41:38", "elapsed_s": 194, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0539, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:36:17", "start": "2026-08-02T22:38:24", "end": "2026-08-02T22:43:35", "elapsed_s": 311, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0864, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:36:48", "start": "2026-08-02T22:38:54", "end": "2026-08-02T22:39:15", "elapsed_s": 21, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:40:06", "start": "2026-08-02T22:42:29", "end": "2026-08-02T22:43:56", "elapsed_s": 87, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:40:09", "start": "2026-08-02T22:43:00", "end": "2026-08-02T22:44:56", "elapsed_s": 116, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:40:16", "start": "2026-08-02T22:43:00", "end": "2026-08-02T22:45:26", "elapsed_s": 146, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0406, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:42:27", "start": "2026-08-02T22:44:31", "end": "2026-08-02T22:50:07", "elapsed_s": 336, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0933, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:44:23", "start": "2026-08-02T22:46:33", "end": "2026-08-02T22:47:12", "elapsed_s": 39, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:44:45", "start": "2026-08-02T22:47:35", "end": "2026-08-02T22:48:05", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:45:50", "start": "2026-08-02T22:48:05", "end": "2026-08-02T22:50:53", "elapsed_s": 168, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0467, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:46:15", "start": "2026-08-02T22:48:36", "end": "2026-08-02T22:50:08", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:48:03", "start": "2026-08-02T22:50:38", "end": "2026-08-02T22:52:14", "elapsed_s": 96, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:48:56", "start": "2026-08-02T22:51:08", "end": "2026-08-02T22:52:14", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:50:10", "start": "2026-08-02T22:53:11", "end": "2026-08-02T22:54:23", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:50:58", "start": "2026-08-02T22:53:11", "end": "2026-08-02T22:56:32", "elapsed_s": 201, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0558, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:51:43", "start": "2026-08-02T22:54:12", "end": "2026-08-02T22:54:45", "elapsed_s": 33, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:53:05", "start": "2026-08-02T22:55:43", "end": "2026-08-02T22:56:32", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:53:07", "start": "2026-08-02T22:55:43", "end": "2026-08-02T22:56:56", "elapsed_s": 73, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0203, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:54:25", "start": "2026-08-02T22:57:46", "end": "2026-08-02T23:00:56", "elapsed_s": 190, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0528, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:54:47", "start": "2026-08-02T22:57:46", "end": "2026-08-02T23:00:56", "elapsed_s": 190, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0528, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:56:35", "start": "2026-08-02T22:58:47", "end": "2026-08-02T23:02:26", "elapsed_s": 219, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0608, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:57:25", "start": "2026-08-02T22:59:48", "end": "2026-08-02T23:02:57", "elapsed_s": 189, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T22:57:48", "start": "2026-08-02T23:00:19", "end": "2026-08-02T23:02:09", "elapsed_s": 110, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:00:59", "start": "2026-08-02T23:03:22", "end": "2026-08-02T23:05:38", "elapsed_s": 136, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0378, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:01:46", "start": "2026-08-02T23:03:53", "end": "2026-08-02T23:05:15", "elapsed_s": 82, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0228, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:02:59", "start": "2026-08-02T23:05:24", "end": "2026-08-02T23:06:52", "elapsed_s": 88, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:03:18", "start": "2026-08-02T23:06:56", "end": "2026-08-02T23:09:33", "elapsed_s": 157, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0436, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:03:48", "start": "2026-08-02T23:07:27", "end": "2026-08-02T23:10:06", "elapsed_s": 159, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:06:06", "start": "2026-08-02T23:08:28", "end": "2026-08-02T23:09:33", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:06:35", "start": "2026-08-02T23:08:59", "end": "2026-08-02T23:09:33", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:07:46", "start": "2026-08-02T23:11:01", "end": "2026-08-02T23:27:46", "elapsed_s": 1005, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2792, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:09:36", "start": "2026-08-02T23:12:02", "end": "2026-08-02T23:15:29", "elapsed_s": 207, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:10:23", "start": "2026-08-02T23:12:33", "end": "2026-08-02T23:15:57", "elapsed_s": 204, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0567, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:10:27", "start": "2026-08-02T23:12:33", "end": "2026-08-02T23:15:29", "elapsed_s": 176, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0489, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:10:59", "start": "2026-08-02T23:13:03", "end": "2026-08-02T23:28:10", "elapsed_s": 907, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2519, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:16:18", "start": "2026-08-02T23:18:39", "end": "2026-08-02T23:27:46", "elapsed_s": 547, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1519, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:16:20", "start": "2026-08-02T23:18:39", "end": "2026-08-02T23:27:46", "elapsed_s": 547, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1519, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:16:47", "start": "2026-08-02T23:19:10", "end": "2026-08-02T23:27:46", "elapsed_s": 516, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1433, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:27:49", "start": "2026-08-02T23:29:51", "end": "2026-08-02T23:32:05", "elapsed_s": 134, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:28:36", "start": "2026-08-02T23:30:52", "end": "2026-08-02T23:32:42", "elapsed_s": 110, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:28:41", "start": "2026-08-02T23:30:52", "end": "2026-08-03T01:06:56", "elapsed_s": 5764, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.6011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:28:46", "start": "2026-08-02T23:30:52", "end": "2026-08-03T01:06:56", "elapsed_s": 5764, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.6011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:29:01", "start": "2026-08-02T23:31:22", "end": "2026-08-03T01:06:56", "elapsed_s": 5734, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.5928, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:32:45", "start": "2026-08-02T23:34:56", "end": "2026-08-03T01:07:16", "elapsed_s": 5540, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.5389, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-02T23:32:58", "start": "2026-08-02T23:35:26", "end": "2026-08-03T01:06:56", "elapsed_s": 5490, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T01:07:02", "start": "2026-08-03T01:09:06", "end": "2026-08-03T01:21:05", "elapsed_s": 719, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1997, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T01:07:53", "start": "2026-08-03T01:10:11", "end": "2026-08-03T01:25:27", "elapsed_s": 916, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2544, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T01:07:53", "start": "2026-08-03T01:10:11", "end": "2026-08-03T01:11:21", "elapsed_s": 70, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T01:07:56", "start": "2026-08-03T01:10:11", "end": "2026-08-03T02:25:00", "elapsed_s": 4489, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.2469, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T01:08:09", "start": "2026-08-03T01:10:45", "end": "2026-08-03T01:19:17", "elapsed_s": 512, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1422, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T01:12:15", "start": "2026-08-03T01:14:40", "end": "2026-08-03T02:16:27", "elapsed_s": 3707, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.0297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T01:20:11", "start": "2026-08-03T01:22:27", "end": "2026-08-03T01:23:07", "elapsed_s": 40, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T01:21:59", "start": "2026-08-03T01:24:23", "end": "2026-08-03T01:25:06", "elapsed_s": 43, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T01:23:59", "start": "2026-08-03T01:26:05", "end": "2026-08-03T06:07:34", "elapsed_s": 16889, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.6914, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T01:25:59", "start": "2026-08-03T01:28:17", "end": "2026-08-03T06:01:48", "elapsed_s": 16411, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.5586, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T01:26:22", "start": "2026-08-03T01:28:50", "end": "2026-08-03T08:39:06", "elapsed_s": 25816, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 7.1711, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T02:17:36", "start": "2026-08-03T02:19:48", "end": "2026-08-03T06:01:48", "elapsed_s": 13320, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.7, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T02:25:51", "start": "2026-08-03T02:28:03", "end": "2026-08-03T02:31:05", "elapsed_s": 182, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0506, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T02:32:03", "start": "2026-08-03T02:34:11", "end": "2026-08-03T06:01:48", "elapsed_s": 12457, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.4603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T06:01:51", "start": "2026-08-03T06:04:06", "end": "2026-08-03T06:07:06", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T06:02:36", "start": "2026-08-03T06:04:37", "end": "2026-08-03T06:07:06", "elapsed_s": 149, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0414, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T06:02:37", "start": "2026-08-03T06:05:07", "end": "2026-08-03T06:07:34", "elapsed_s": 147, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0408, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T06:07:57", "start": "2026-08-03T06:10:11", "end": "2026-08-03T08:17:39", "elapsed_s": 7648, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.1244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T06:08:01", "start": "2026-08-03T06:10:11", "end": "2026-08-03T09:40:32", "elapsed_s": 12621, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 3.5058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T06:08:24", "start": "2026-08-03T06:10:41", "end": "2026-08-03T09:43:44", "elapsed_s": 12783, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 3.5508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T06:08:24", "start": "2026-08-03T06:10:41", "end": "2026-08-03T09:33:24", "elapsed_s": 12163, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.3786, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38063462", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-08-03T06:41:42", "start": "None", "end": "2026-08-03T06:43:34", "elapsed_s": 0, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38063486", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "CANCELLED by 197096", "submit": "2026-08-03T06:46:51", "start": "None", "end": "2026-08-03T06:49:11", "elapsed_s": 0, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38063498", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "TIMEOUT", "submit": "2026-08-03T06:49:14", "start": "2026-08-03T06:49:15", "end": "2026-08-10T06:49:30", "elapsed_s": 604815, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 168.0042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T08:18:29", "start": "2026-08-03T08:20:59", "end": "2026-08-03T09:29:43", "elapsed_s": 4124, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.1456, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T08:39:57", "start": "2026-08-03T08:42:13", "end": "2026-08-03T09:28:56", "elapsed_s": 2803, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7786, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T09:29:44", "start": "2026-08-03T09:33:51", "end": "2026-08-03T10:56:47", "elapsed_s": 4976, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.3822, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T09:29:47", "start": "2026-08-03T09:33:51", "end": "2026-08-03T10:56:13", "elapsed_s": 4942, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.3728, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T09:34:22", "start": "2026-08-03T09:48:13", "end": "2026-08-03T10:19:18", "elapsed_s": 1865, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T09:41:23", "start": "2026-08-03T09:48:13", "end": "2026-08-03T10:05:03", "elapsed_s": 1010, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2806, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T09:44:37", "start": "2026-08-03T09:48:13", "end": "2026-08-03T10:05:13", "elapsed_s": 1020, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2833, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:05:05", "start": "2026-08-03T10:08:12", "end": "2026-08-03T10:13:09", "elapsed_s": 297, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0825, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:05:14", "start": "2026-08-03T10:10:46", "end": "2026-08-03T10:18:58", "elapsed_s": 492, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1367, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:13:12", "start": "2026-08-03T10:15:54", "end": "2026-08-03T10:17:43", "elapsed_s": 109, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:18:33", "start": "2026-08-03T10:21:03", "end": "2026-08-03T10:35:28", "elapsed_s": 865, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2403, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:19:56", "start": "2026-08-03T10:22:04", "end": "2026-08-03T10:30:02", "elapsed_s": 478, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1328, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:20:11", "start": "2026-08-03T10:22:34", "end": "2026-08-03T10:31:45", "elapsed_s": 551, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:30:55", "start": "2026-08-03T10:33:12", "end": "2026-08-03T10:55:55", "elapsed_s": 1363, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3786, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:32:51", "start": "2026-08-03T10:36:28", "end": "2026-08-03T10:36:54", "elapsed_s": 26, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0072, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:36:22", "start": "2026-08-03T10:42:11", "end": "2026-08-03T10:42:47", "elapsed_s": 36, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.01, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:37:44", "start": "2026-08-03T10:43:13", "end": "2026-08-03T11:46:46", "elapsed_s": 3813, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.0592, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:43:43", "start": "2026-08-03T10:47:26", "end": "2026-08-03T12:17:08", "elapsed_s": 5382, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.495, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:56:15", "start": "2026-08-03T10:58:24", "end": "2026-08-03T11:23:58", "elapsed_s": 1534, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:56:46", "start": "2026-08-03T10:58:55", "end": "2026-08-03T11:03:34", "elapsed_s": 279, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0775, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T10:57:44", "start": "2026-08-03T11:02:03", "end": "2026-08-03T11:32:06", "elapsed_s": 1803, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T11:04:28", "start": "2026-08-03T11:06:44", "end": "2026-08-03T11:09:05", "elapsed_s": 141, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0392, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T11:09:08", "start": "2026-08-03T11:11:27", "end": "2026-08-03T11:40:16", "elapsed_s": 1729, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4803, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T11:24:47", "start": "2026-08-03T11:26:48", "end": "2026-08-03T11:32:46", "elapsed_s": 358, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0994, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T11:32:57", "start": "2026-08-03T11:35:35", "end": "2026-08-03T11:49:46", "elapsed_s": 851, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2364, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T11:33:34", "start": "2026-08-03T11:36:37", "end": "2026-08-03T11:49:24", "elapsed_s": 767, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T11:40:19", "start": "2026-08-03T11:42:50", "end": "2026-08-03T11:46:14", "elapsed_s": 204, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0567, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T11:47:05", "start": "2026-08-03T11:50:34", "end": "2026-08-03T12:48:02", "elapsed_s": 3448, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.9578, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T11:47:35", "start": "2026-08-03T11:50:34", "end": "2026-08-03T12:48:50", "elapsed_s": 3496, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.9711, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T11:50:13", "start": "2026-08-03T11:53:41", "end": "2026-08-03T12:22:10", "elapsed_s": 1709, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4747, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T11:50:36", "start": "2026-08-03T11:53:41", "end": "2026-08-03T12:22:10", "elapsed_s": 1709, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4747, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:18:35", "start": "2026-08-03T12:20:55", "end": "2026-08-03T12:46:43", "elapsed_s": 1548, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.43, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:22:12", "start": "2026-08-03T12:25:02", "end": "2026-08-03T12:35:36", "elapsed_s": 634, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1761, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:23:04", "start": "2026-08-03T12:25:33", "end": "2026-08-03T12:36:07", "elapsed_s": 634, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1761, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:36:28", "start": "2026-08-03T12:38:29", "end": "2026-08-03T12:38:31", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:36:59", "start": "2026-08-03T12:39:31", "end": "2026-08-03T12:43:49", "elapsed_s": 258, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0717, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:39:21", "start": "2026-08-03T12:45:15", "end": "2026-08-03T12:46:38", "elapsed_s": 83, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0231, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:44:40", "start": "2026-08-03T12:47:49", "end": "2026-08-03T12:54:08", "elapsed_s": 379, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:46:46", "start": "2026-08-03T12:48:51", "end": "2026-08-03T12:53:35", "elapsed_s": 284, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0789, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:47:30", "start": "2026-08-03T12:49:52", "end": "2026-08-03T12:50:41", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:49:04", "start": "2026-08-03T12:51:56", "end": "2026-08-03T13:01:20", "elapsed_s": 564, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1567, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:49:41", "start": "2026-08-03T12:52:27", "end": "2026-08-03T13:04:48", "elapsed_s": 741, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:51:31", "start": "2026-08-03T12:55:33", "end": "2026-08-03T13:01:38", "elapsed_s": 365, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:54:26", "start": "2026-08-03T12:58:38", "end": "2026-08-03T13:01:06", "elapsed_s": 148, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0411, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T12:55:04", "start": "2026-08-03T12:59:08", "end": "2026-08-03T13:01:50", "elapsed_s": 162, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.045, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T13:01:57", "start": "2026-08-03T13:05:50", "end": "2026-08-03T14:33:41", "elapsed_s": 5271, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.4642, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T13:02:11", "start": "2026-08-03T13:05:50", "end": "2026-08-03T15:40:59", "elapsed_s": 9309, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.5858, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T13:02:31", "start": "2026-08-03T13:05:50", "end": "2026-08-03T13:07:20", "elapsed_s": 90, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T13:02:41", "start": "2026-08-03T13:06:20", "end": "2026-08-03T13:15:27", "elapsed_s": 547, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1519, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T13:05:41", "start": "2026-08-03T13:08:23", "end": "2026-08-03T13:20:02", "elapsed_s": 699, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1942, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T13:08:09", "start": "2026-08-03T13:14:38", "end": "2026-08-03T13:14:47", "elapsed_s": 9, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T13:15:38", "start": "2026-08-03T13:21:18", "end": "2026-08-03T13:27:10", "elapsed_s": 352, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0978, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T13:16:19", "start": "2026-08-03T13:21:49", "end": "2026-08-03T13:28:09", "elapsed_s": 380, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1056, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T13:20:51", "start": "2026-08-03T13:29:32", "end": "2026-08-03T13:34:19", "elapsed_s": 287, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0797, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T13:28:03", "start": "2026-08-03T13:30:34", "end": "2026-08-03T15:27:59", "elapsed_s": 7045, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.9569, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T13:29:07", "start": "2026-08-03T13:32:37", "end": "2026-08-03T15:27:46", "elapsed_s": 6909, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.9192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T13:35:11", "start": "2026-08-03T14:01:30", "end": "2026-08-03T14:08:12", "elapsed_s": 402, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T14:09:08", "start": "2026-08-03T14:11:15", "end": "2026-08-03T14:24:49", "elapsed_s": 814, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T14:25:42", "start": "2026-08-03T14:34:34", "end": "2026-08-03T14:38:40", "elapsed_s": 246, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0683, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T14:33:44", "start": "2026-08-03T14:37:39", "end": "2026-08-03T14:38:10", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T14:38:13", "start": "2026-08-03T14:41:14", "end": "2026-08-03T14:54:39", "elapsed_s": 805, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T14:39:32", "start": "2026-08-03T14:43:17", "end": "2026-08-03T15:27:59", "elapsed_s": 2682, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.745, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T14:54:42", "start": "2026-08-03T14:59:18", "end": "2026-08-03T15:15:23", "elapsed_s": 965, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2681, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:16:15", "start": "2026-08-03T15:19:04", "end": "2026-08-03T15:27:46", "elapsed_s": 522, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.145, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38076893", "job_name": "rescue_rampnet", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "COMPLETED", "submit": "2026-08-03T15:26:27", "start": "2026-08-03T15:26:29", "end": "2026-08-03T15:41:13", "elapsed_s": 884, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:27:49", "start": "2026-08-03T15:30:42", "end": "2026-08-03T15:40:59", "elapsed_s": 617, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1714, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:28:40", "start": "2026-08-03T15:30:42", "end": "2026-08-03T15:37:56", "elapsed_s": 434, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1206, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:28:57", "start": "2026-08-03T15:37:42", "end": "2026-08-03T15:41:02", "elapsed_s": 200, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:29:05", "start": "2026-08-03T15:37:42", "end": "2026-08-03T15:38:01", "elapsed_s": 19, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:38:54", "start": "2026-08-03T15:42:18", "end": "2026-08-03T15:51:40", "elapsed_s": 562, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1561, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:41:51", "start": "2026-08-03T15:47:24", "end": "2026-08-03T15:51:14", "elapsed_s": 230, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0639, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:41:51", "start": "2026-08-03T15:47:24", "end": "2026-08-03T15:51:17", "elapsed_s": 233, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0647, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:47:00", "start": "2026-08-03T15:52:34", "end": "2026-08-03T15:57:29", "elapsed_s": 295, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0819, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:47:11", "start": "2026-08-03T15:52:34", "end": "2026-08-03T15:56:09", "elapsed_s": 215, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:51:16", "start": "2026-08-03T15:53:35", "end": "2026-08-03T15:55:39", "elapsed_s": 124, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:52:08", "start": "2026-08-03T15:54:38", "end": "2026-08-03T15:55:40", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:52:34", "start": "2026-08-03T15:56:42", "end": "2026-08-03T15:57:29", "elapsed_s": 47, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:56:11", "start": "2026-08-03T15:58:47", "end": "2026-08-03T16:06:43", "elapsed_s": 476, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:56:28", "start": "2026-08-03T15:58:47", "end": "2026-08-03T16:06:43", "elapsed_s": 476, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:56:31", "start": "2026-08-03T15:58:47", "end": "2026-08-03T16:06:43", "elapsed_s": 476, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:58:21", "start": "2026-08-03T16:04:37", "end": "2026-08-03T16:06:43", "elapsed_s": 126, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.035, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T15:58:22", "start": "2026-08-03T16:04:37", "end": "2026-08-03T16:06:46", "elapsed_s": 129, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:06:45", "start": "2026-08-03T16:11:53", "end": "2026-08-03T16:38:12", "elapsed_s": 1579, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4386, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:07:32", "start": "2026-08-03T16:11:53", "end": "2026-08-03T16:38:16", "elapsed_s": 1583, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:07:33", "start": "2026-08-03T16:11:53", "end": "2026-08-03T16:33:13", "elapsed_s": 1280, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:07:34", "start": "2026-08-03T16:11:53", "end": "2026-08-03T16:38:12", "elapsed_s": 1579, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4386, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:07:38", "start": "2026-08-03T16:11:53", "end": "2026-08-03T16:38:16", "elapsed_s": 1583, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:33:15", "start": "2026-08-03T16:36:22", "end": "2026-08-03T16:38:09", "elapsed_s": 107, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:38:13", "start": "2026-08-03T16:40:30", "end": "2026-08-03T16:45:56", "elapsed_s": 326, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0906, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:38:14", "start": "2026-08-03T16:40:30", "end": "2026-08-03T16:45:56", "elapsed_s": 326, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0906, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:39:00", "start": "2026-08-03T16:41:01", "end": "2026-08-03T16:45:56", "elapsed_s": 295, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0819, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:39:06", "start": "2026-08-03T16:42:35", "end": "2026-08-03T16:45:35", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:39:08", "start": "2026-08-03T16:47:13", "end": "2026-08-03T16:50:50", "elapsed_s": 217, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:45:58", "start": "2026-08-03T16:48:15", "end": "2026-08-03T16:49:50", "elapsed_s": 95, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:45:58", "start": "2026-08-03T16:50:50", "end": "2026-08-03T16:52:27", "elapsed_s": 97, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:46:28", "start": "2026-08-03T16:50:50", "end": "2026-08-03T16:52:27", "elapsed_s": 97, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:46:47", "start": "2026-08-03T16:50:50", "end": "2026-08-03T16:58:20", "elapsed_s": 450, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:50:41", "start": "2026-08-03T16:52:54", "end": "2026-08-03T16:59:53", "elapsed_s": 419, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:51:42", "start": "2026-08-03T16:54:27", "end": "2026-08-03T16:59:53", "elapsed_s": 326, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0906, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:52:29", "start": "2026-08-03T16:56:30", "end": "2026-08-03T17:02:14", "elapsed_s": 344, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0956, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:52:29", "start": "2026-08-03T16:59:07", "end": "2026-08-03T17:00:57", "elapsed_s": 110, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T16:59:13", "start": "2026-08-03T17:03:13", "end": "2026-08-03T17:14:49", "elapsed_s": 696, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1933, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:00:45", "start": "2026-08-03T17:03:13", "end": "2026-08-03T17:14:49", "elapsed_s": 696, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1933, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:00:46", "start": "2026-08-03T17:03:13", "end": "2026-08-03T17:14:46", "elapsed_s": 693, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1925, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:01:46", "start": "2026-08-03T17:04:15", "end": "2026-08-03T17:14:49", "elapsed_s": 634, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1761, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:03:04", "start": "2026-08-03T17:05:17", "end": "2026-08-03T17:14:46", "elapsed_s": 569, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1581, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:15:36", "start": "2026-08-03T17:17:38", "end": "2026-08-03T17:22:58", "elapsed_s": 320, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0889, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:15:38", "start": "2026-08-03T17:18:09", "end": "2026-08-03T17:22:58", "elapsed_s": 289, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0803, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:15:40", "start": "2026-08-03T17:18:09", "end": "2026-08-03T17:33:24", "elapsed_s": 915, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2542, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:15:41", "start": "2026-08-03T17:18:09", "end": "2026-08-03T17:22:58", "elapsed_s": 289, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0803, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:15:42", "start": "2026-08-03T17:18:09", "end": "2026-08-03T17:33:24", "elapsed_s": 915, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2542, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:23:00", "start": "2026-08-03T17:25:51", "end": "2026-08-03T17:33:24", "elapsed_s": 453, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1258, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:23:49", "start": "2026-08-03T17:25:51", "end": "2026-08-03T17:33:19", "elapsed_s": 448, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:23:49", "start": "2026-08-03T17:26:22", "end": "2026-08-03T17:33:24", "elapsed_s": 422, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:34:10", "start": "2026-08-03T17:36:12", "end": "2026-08-03T17:36:55", "elapsed_s": 43, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:34:14", "start": "2026-08-03T17:36:43", "end": "2026-08-03T17:40:46", "elapsed_s": 243, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0675, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:34:15", "start": "2026-08-03T17:36:43", "end": "2026-08-03T17:40:42", "elapsed_s": 239, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0664, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:34:16", "start": "2026-08-03T17:38:48", "end": "2026-08-03T18:10:27", "elapsed_s": 1899, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:34:16", "start": "2026-08-03T18:05:14", "end": "2026-08-03T18:10:12", "elapsed_s": 298, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0828, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:37:47", "start": "2026-08-03T18:08:59", "end": "2026-08-03T18:10:00", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:40:45", "start": "2026-08-03T18:08:59", "end": "2026-08-03T18:10:19", "elapsed_s": 80, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0222, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T17:41:37", "start": "2026-08-03T18:08:59", "end": "2026-08-03T18:10:23", "elapsed_s": 84, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0233, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:10:22", "start": "2026-08-03T18:12:40", "end": "2026-08-03T18:35:26", "elapsed_s": 1366, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3794, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:10:50", "start": "2026-08-03T18:13:11", "end": "2026-08-03T18:34:33", "elapsed_s": 1282, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3561, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:11:03", "start": "2026-08-03T18:13:11", "end": "2026-08-03T18:35:00", "elapsed_s": 1309, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3636, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:11:14", "start": "2026-08-03T18:14:47", "end": "2026-08-03T18:19:59", "elapsed_s": 312, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0867, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:11:19", "start": "2026-08-03T18:15:19", "end": "2026-08-03T18:19:10", "elapsed_s": 231, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0642, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:20:03", "start": "2026-08-03T18:23:26", "end": "2026-08-03T18:28:36", "elapsed_s": 310, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0861, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:20:50", "start": "2026-08-03T18:25:33", "end": "2026-08-03T18:29:00", "elapsed_s": 207, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:29:27", "start": "2026-08-03T18:31:57", "end": "2026-08-03T19:19:19", "elapsed_s": 2842, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.7894, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:29:51", "start": "2026-08-03T18:33:01", "end": "2026-08-03T19:37:38", "elapsed_s": 3877, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.0769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:35:25", "start": "2026-08-03T18:38:19", "end": "2026-08-03T18:44:24", "elapsed_s": 365, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:35:53", "start": "2026-08-03T18:40:29", "end": "2026-08-03T18:44:24", "elapsed_s": 235, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0653, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:36:19", "start": "2026-08-03T18:45:21", "end": "2026-08-03T18:45:23", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:44:26", "start": "2026-08-03T18:47:28", "end": "2026-08-03T19:06:09", "elapsed_s": 1121, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:45:14", "start": "2026-08-03T18:47:28", "end": "2026-08-03T19:06:11", "elapsed_s": 1123, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T18:46:12", "start": "2026-08-03T18:49:05", "end": "2026-08-03T19:06:22", "elapsed_s": 1037, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2881, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:06:11", "start": "2026-08-03T19:08:29", "end": "2026-08-03T19:32:29", "elapsed_s": 1440, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:06:14", "start": "2026-08-03T19:08:29", "end": "2026-08-03T19:20:31", "elapsed_s": 722, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:07:18", "start": "2026-08-03T19:21:02", "end": "2026-08-03T19:33:03", "elapsed_s": 721, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:19:22", "start": "2026-08-03T19:21:33", "end": "2026-08-03T19:30:13", "elapsed_s": 520, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1444, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:21:38", "start": "2026-08-03T19:24:10", "end": "2026-08-03T19:31:03", "elapsed_s": 413, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:31:03", "start": "2026-08-03T19:38:42", "end": "2026-08-03T19:49:18", "elapsed_s": 636, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:31:57", "start": "2026-08-03T19:41:54", "end": "2026-08-03T19:49:41", "elapsed_s": 467, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:33:20", "start": "2026-08-03T19:44:06", "end": "2026-08-03T19:51:17", "elapsed_s": 431, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:33:52", "start": "2026-08-03T19:45:12", "end": "2026-08-03T19:52:21", "elapsed_s": 429, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:38:32", "start": "2026-08-03T19:48:29", "end": "2026-08-03T20:04:58", "elapsed_s": 989, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2747, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:49:44", "start": "2026-08-03T19:52:16", "end": "2026-08-03T19:52:21", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:50:15", "start": "2026-08-03T19:53:19", "end": "2026-08-03T20:11:58", "elapsed_s": 1119, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:52:07", "start": "2026-08-03T19:54:20", "end": "2026-08-03T20:14:59", "elapsed_s": 1239, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:53:10", "start": "2026-08-03T19:59:05", "end": "2026-08-03T20:14:59", "elapsed_s": 954, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.265, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T19:53:17", "start": "2026-08-03T20:01:10", "end": "2026-08-03T20:15:09", "elapsed_s": 839, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2331, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:05:52", "start": "2026-08-03T20:08:28", "end": "2026-08-03T20:08:44", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:09:35", "start": "2026-08-03T20:11:38", "end": "2026-08-03T20:16:59", "elapsed_s": 321, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0892, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:12:50", "start": "2026-08-03T20:15:17", "end": "2026-08-03T20:15:21", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:15:49", "start": "2026-08-03T20:17:53", "end": "2026-08-03T20:26:18", "elapsed_s": 505, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1403, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:15:49", "start": "2026-08-03T20:17:53", "end": "2026-08-03T20:27:24", "elapsed_s": 571, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1586, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:16:02", "start": "2026-08-03T20:18:55", "end": "2026-08-03T20:32:18", "elapsed_s": 803, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2231, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:16:12", "start": "2026-08-03T20:19:28", "end": "2026-08-03T20:25:49", "elapsed_s": 381, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:17:50", "start": "2026-08-03T20:20:30", "end": "2026-08-03T20:40:10", "elapsed_s": 1180, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:26:42", "start": "2026-08-03T20:30:57", "end": "2026-08-03T20:32:15", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:27:08", "start": "2026-08-03T20:31:28", "end": "2026-08-03T20:32:18", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:28:16", "start": "2026-08-03T20:34:04", "end": "2026-08-03T20:40:10", "elapsed_s": 366, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:33:07", "start": "2026-08-03T20:36:40", "end": "2026-08-03T20:40:10", "elapsed_s": 210, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0583, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:33:08", "start": "2026-08-03T20:37:41", "end": "2026-08-03T20:40:10", "elapsed_s": 149, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0414, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:33:10", "start": "2026-08-03T20:37:41", "end": "2026-08-03T20:47:18", "elapsed_s": 577, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:40:58", "start": "2026-08-03T20:44:25", "end": "2026-08-03T20:53:39", "elapsed_s": 554, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1539, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:41:00", "start": "2026-08-03T20:45:59", "end": "2026-08-03T20:47:18", "elapsed_s": 79, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:41:01", "start": "2026-08-03T20:46:31", "end": "2026-08-03T20:48:34", "elapsed_s": 123, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0342, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:41:01", "start": "2026-08-03T20:47:02", "end": "2026-08-03T20:48:04", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:48:10", "start": "2026-08-03T20:50:38", "end": "2026-08-03T20:53:39", "elapsed_s": 181, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0503, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:48:15", "start": "2026-08-03T20:50:38", "end": "2026-08-03T20:53:39", "elapsed_s": 181, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0503, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:48:37", "start": "2026-08-03T20:50:38", "end": "2026-08-03T20:53:39", "elapsed_s": 181, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0503, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:48:58", "start": "2026-08-03T20:51:10", "end": "2026-08-03T20:53:49", "elapsed_s": 159, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:54:29", "start": "2026-08-03T20:58:09", "end": "2026-08-03T21:04:47", "elapsed_s": 398, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:54:31", "start": "2026-08-03T20:58:42", "end": "2026-08-03T21:03:56", "elapsed_s": 314, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0872, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:54:32", "start": "2026-08-03T20:59:48", "end": "2026-08-03T21:03:56", "elapsed_s": 248, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0689, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:54:32", "start": "2026-08-03T21:02:00", "end": "2026-08-03T21:37:21", "elapsed_s": 2121, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5892, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T20:54:42", "start": "2026-08-03T21:02:34", "end": "2026-08-03T21:03:56", "elapsed_s": 82, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0228, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:04:48", "start": "2026-08-03T21:06:56", "end": "2026-08-03T21:13:37", "elapsed_s": 401, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:04:52", "start": "2026-08-03T21:06:56", "end": "2026-08-03T21:13:40", "elapsed_s": 404, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:04:53", "start": "2026-08-03T21:06:56", "end": "2026-08-03T21:13:37", "elapsed_s": 401, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:05:37", "start": "2026-08-03T21:08:33", "end": "2026-08-03T21:28:42", "elapsed_s": 1209, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:14:28", "start": "2026-08-03T21:16:35", "end": "2026-08-03T21:37:01", "elapsed_s": 1226, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3406, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:14:30", "start": "2026-08-03T21:16:35", "end": "2026-08-03T21:19:12", "elapsed_s": 157, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0436, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:14:35", "start": "2026-08-03T21:17:08", "end": "2026-08-03T21:23:38", "elapsed_s": 390, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:20:04", "start": "2026-08-03T21:22:56", "end": "2026-08-03T21:23:35", "elapsed_s": 39, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:24:24", "start": "2026-08-03T21:27:07", "end": "2026-08-03T21:28:09", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:24:27", "start": "2026-08-03T21:27:07", "end": "2026-08-03T21:28:09", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:29:01", "start": "2026-08-03T21:32:55", "end": "2026-08-03T21:34:22", "elapsed_s": 87, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:29:07", "start": "2026-08-03T21:32:55", "end": "2026-08-03T21:33:43", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:29:32", "start": "2026-08-03T21:33:26", "end": "2026-08-03T21:33:43", "elapsed_s": 17, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:33:49", "start": "2026-08-03T21:36:40", "end": "2026-08-03T21:36:53", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:34:36", "start": "2026-08-03T21:38:20", "end": "2026-08-03T21:42:19", "elapsed_s": 239, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0664, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:35:13", "start": "2026-08-03T21:38:20", "end": "2026-08-03T21:48:14", "elapsed_s": 594, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.165, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:36:58", "start": "2026-08-03T21:40:42", "end": "2026-08-03T21:42:17", "elapsed_s": 95, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:37:05", "start": "2026-08-03T21:43:30", "end": "2026-08-03T21:48:14", "elapsed_s": 284, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0789, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:38:15", "start": "2026-08-03T21:43:30", "end": "2026-08-03T21:48:14", "elapsed_s": 284, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0789, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:42:23", "start": "2026-08-03T21:45:47", "end": "2026-08-03T21:48:10", "elapsed_s": 143, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:43:14", "start": "2026-08-03T21:49:14", "end": "2026-08-03T21:50:29", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:49:02", "start": "2026-08-03T21:51:34", "end": "2026-08-03T22:00:48", "elapsed_s": 554, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1539, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:49:05", "start": "2026-08-03T21:54:33", "end": "2026-08-03T22:01:13", "elapsed_s": 400, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:49:05", "start": "2026-08-03T21:57:26", "end": "2026-08-03T22:04:04", "elapsed_s": 398, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:49:06", "start": "2026-08-03T22:00:13", "end": "2026-08-03T22:31:15", "elapsed_s": 1862, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T21:51:20", "start": "2026-08-03T22:01:55", "end": "2026-08-03T22:02:27", "elapsed_s": 32, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0089, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:01:41", "start": "2026-08-03T22:04:37", "end": "2026-08-03T22:08:12", "elapsed_s": 215, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:02:02", "start": "2026-08-03T22:06:22", "end": "2026-08-03T22:09:51", "elapsed_s": 209, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0581, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:02:31", "start": "2026-08-03T22:06:22", "end": "2026-08-03T22:08:12", "elapsed_s": 110, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:04:58", "start": "2026-08-03T22:07:33", "end": "2026-08-03T22:08:12", "elapsed_s": 39, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:08:17", "start": "2026-08-03T22:10:24", "end": "2026-08-03T22:17:25", "elapsed_s": 421, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:09:03", "start": "2026-08-03T22:13:57", "end": "2026-08-03T22:21:00", "elapsed_s": 423, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:09:09", "start": "2026-08-03T22:13:57", "end": "2026-08-03T22:16:09", "elapsed_s": 132, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0367, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:10:44", "start": "2026-08-03T22:18:00", "end": "2026-08-03T22:21:27", "elapsed_s": 207, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:17:02", "start": "2026-08-03T22:20:12", "end": "2026-08-03T22:21:00", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:17:31", "start": "2026-08-03T22:20:12", "end": "2026-08-03T22:20:36", "elapsed_s": 24, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:20:39", "start": "2026-08-03T22:22:55", "end": "2026-08-03T22:29:03", "elapsed_s": 368, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:21:52", "start": "2026-08-03T22:30:13", "end": "2026-08-03T22:42:40", "elapsed_s": 747, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2075, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:21:52", "start": "2026-08-03T22:30:46", "end": "2026-08-03T22:43:41", "elapsed_s": 775, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:22:19", "start": "2026-08-03T22:30:46", "end": "2026-08-03T22:43:01", "elapsed_s": 735, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:29:58", "start": "2026-08-03T22:41:54", "end": "2026-08-03T22:55:32", "elapsed_s": 818, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:32:04", "start": "2026-08-03T22:41:54", "end": "2026-08-03T23:05:12", "elapsed_s": 1398, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3883, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:43:32", "start": "2026-08-03T22:47:27", "end": "2026-08-03T23:03:49", "elapsed_s": 982, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2728, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:43:55", "start": "2026-08-03T22:50:42", "end": "2026-08-03T23:03:43", "elapsed_s": 781, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:44:34", "start": "2026-08-03T22:50:42", "end": "2026-08-03T23:04:59", "elapsed_s": 857, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2381, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T22:55:35", "start": "2026-08-03T23:04:28", "end": "2026-08-03T23:04:32", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T23:03:46", "start": "2026-08-03T23:06:01", "end": "2026-08-03T23:11:44", "elapsed_s": 343, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0953, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T23:04:41", "start": "2026-08-03T23:09:10", "end": "2026-08-03T23:45:26", "elapsed_s": 2176, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T23:05:22", "start": "2026-08-03T23:09:10", "end": "2026-08-03T23:45:20", "elapsed_s": 2170, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T23:05:50", "start": "2026-08-03T23:09:10", "end": "2026-08-03T23:46:01", "elapsed_s": 2211, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T23:06:03", "start": "2026-08-03T23:10:44", "end": "2026-08-03T23:48:37", "elapsed_s": 2273, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6314, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T23:12:37", "start": "2026-08-03T23:15:56", "end": "2026-08-04T00:00:46", "elapsed_s": 2690, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T23:45:22", "start": "2026-08-03T23:49:52", "end": "2026-08-03T23:58:06", "elapsed_s": 494, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T23:46:21", "start": "2026-08-03T23:50:22", "end": "2026-08-03T23:58:06", "elapsed_s": 464, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T23:46:54", "start": "2026-08-03T23:50:54", "end": "2026-08-04T00:01:15", "elapsed_s": 621, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1725, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T23:49:29", "start": "2026-08-03T23:54:32", "end": "2026-08-04T00:54:44", "elapsed_s": 3612, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T23:59:08", "start": "2026-08-04T00:02:22", "end": "2026-08-04T00:16:54", "elapsed_s": 872, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2422, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-03T23:59:37", "start": "2026-08-04T00:02:52", "end": "2026-08-04T00:34:05", "elapsed_s": 1873, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5203, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:01:35", "start": "2026-08-04T00:08:06", "end": "2026-08-04T00:26:50", "elapsed_s": 1124, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:02:08", "start": "2026-08-04T00:10:11", "end": "2026-08-04T00:54:18", "elapsed_s": 2647, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:17:45", "start": "2026-08-04T00:27:20", "end": "2026-08-04T00:36:28", "elapsed_s": 548, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1522, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:27:45", "start": "2026-08-04T00:29:56", "end": "2026-08-04T00:36:32", "elapsed_s": 396, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.11, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:34:58", "start": "2026-08-04T00:37:46", "end": "2026-08-04T00:38:52", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:36:35", "start": "2026-08-04T00:39:55", "end": "2026-08-04T00:54:18", "elapsed_s": 863, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:37:21", "start": "2026-08-04T00:46:24", "end": "2026-08-04T00:53:39", "elapsed_s": 435, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:39:44", "start": "2026-08-04T00:46:24", "end": "2026-08-04T00:47:10", "elapsed_s": 46, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:48:00", "start": "2026-08-04T00:50:31", "end": "2026-08-04T00:51:35", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:52:26", "start": "2026-08-04T00:55:41", "end": "2026-08-04T00:58:06", "elapsed_s": 145, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0403, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:54:32", "start": "2026-08-04T00:57:47", "end": "2026-08-04T00:58:06", "elapsed_s": 19, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:55:11", "start": "2026-08-04T00:58:18", "end": "2026-08-04T00:59:23", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:55:14", "start": "2026-08-04T00:59:20", "end": "2026-08-04T01:03:47", "elapsed_s": 267, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0742, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:55:34", "start": "2026-08-04T00:59:20", "end": "2026-08-04T01:03:49", "elapsed_s": 269, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0747, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:58:56", "start": "2026-08-04T01:01:25", "end": "2026-08-04T01:03:47", "elapsed_s": 142, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T00:58:56", "start": "2026-08-04T01:01:25", "end": "2026-08-04T01:03:47", "elapsed_s": 142, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T01:00:14", "start": "2026-08-04T01:03:30", "end": "2026-08-04T01:03:49", "elapsed_s": 19, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T01:04:36", "start": "2026-08-04T01:08:09", "end": "2026-08-04T02:11:24", "elapsed_s": 3795, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0542, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T01:04:38", "start": "2026-08-04T01:08:09", "end": "2026-08-04T01:35:08", "elapsed_s": 1619, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4497, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T01:04:40", "start": "2026-08-04T01:08:09", "end": "2026-08-04T02:29:31", "elapsed_s": 4882, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.3561, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T01:04:45", "start": "2026-08-04T01:09:10", "end": "2026-08-04T01:25:16", "elapsed_s": 966, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2683, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T01:04:45", "start": "2026-08-04T01:10:44", "end": "2026-08-04T01:52:51", "elapsed_s": 2527, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T01:26:09", "start": "2026-08-04T01:33:35", "end": "2026-08-04T01:43:47", "elapsed_s": 612, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.17, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T01:35:11", "start": "2026-08-04T01:37:44", "end": "2026-08-04T01:44:27", "elapsed_s": 403, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T01:44:37", "start": "2026-08-04T01:49:07", "end": "2026-08-04T01:52:45", "elapsed_s": 218, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0606, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T01:45:17", "start": "2026-08-04T01:53:47", "end": "2026-08-04T02:00:03", "elapsed_s": 376, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T01:53:40", "start": "2026-08-04T01:58:27", "end": "2026-08-04T02:00:35", "elapsed_s": 128, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T01:53:43", "start": "2026-08-04T01:58:59", "end": "2026-08-04T02:00:01", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:00:55", "start": "2026-08-04T02:04:40", "end": "2026-08-04T02:05:29", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:00:59", "start": "2026-08-04T02:05:11", "end": "2026-08-04T02:05:51", "elapsed_s": 40, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:01:27", "start": "2026-08-04T02:06:44", "end": "2026-08-04T02:16:21", "elapsed_s": 577, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:05:32", "start": "2026-08-04T02:08:16", "end": "2026-08-04T02:10:55", "elapsed_s": 159, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:06:47", "start": "2026-08-04T02:09:17", "end": "2026-08-04T02:11:52", "elapsed_s": 155, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0431, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:11:47", "start": "2026-08-04T02:15:28", "end": "2026-08-04T02:17:51", "elapsed_s": 143, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:12:18", "start": "2026-08-04T02:15:59", "end": "2026-08-04T02:16:51", "elapsed_s": 52, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:12:45", "start": "2026-08-04T02:17:01", "end": "2026-08-04T02:27:16", "elapsed_s": 615, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1708, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:17:13", "start": "2026-08-04T02:21:08", "end": "2026-08-04T02:27:12", "elapsed_s": 364, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:17:49", "start": "2026-08-04T02:21:40", "end": "2026-08-04T02:27:53", "elapsed_s": 373, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:17:54", "start": "2026-08-04T02:22:11", "end": "2026-08-04T02:22:12", "elapsed_s": 1, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:23:08", "start": "2026-08-04T02:26:20", "end": "2026-08-04T02:32:02", "elapsed_s": 342, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.095, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:28:08", "start": "2026-08-04T02:30:28", "end": "2026-08-04T02:33:16", "elapsed_s": 168, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0467, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:28:09", "start": "2026-08-04T02:32:33", "end": "2026-08-04T02:32:38", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:28:43", "start": "2026-08-04T02:34:37", "end": "2026-08-04T02:50:58", "elapsed_s": 981, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2725, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:30:25", "start": "2026-08-04T02:34:37", "end": "2026-08-04T02:38:04", "elapsed_s": 207, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:32:55", "start": "2026-08-04T02:35:08", "end": "2026-08-04T02:38:04", "elapsed_s": 176, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0489, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:33:36", "start": "2026-08-04T02:36:42", "end": "2026-08-04T02:43:31", "elapsed_s": 409, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:34:08", "start": "2026-08-04T02:37:45", "end": "2026-08-04T02:43:53", "elapsed_s": 368, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:38:58", "start": "2026-08-04T02:41:53", "end": "2026-08-04T02:42:12", "elapsed_s": 19, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:38:58", "start": "2026-08-04T02:43:27", "end": "2026-08-04T02:51:26", "elapsed_s": 479, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1331, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:43:07", "start": "2026-08-04T02:50:13", "end": "2026-08-04T02:53:54", "elapsed_s": 221, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0614, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:43:55", "start": "2026-08-04T02:50:13", "end": "2026-08-04T02:54:17", "elapsed_s": 244, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0678, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:44:22", "start": "2026-08-04T02:52:17", "end": "2026-08-04T02:54:17", "elapsed_s": 120, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:51:51", "start": "2026-08-04T02:55:22", "end": "2026-08-04T03:05:46", "elapsed_s": 624, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1733, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:52:20", "start": "2026-08-04T02:55:22", "end": "2026-08-04T03:04:59", "elapsed_s": 577, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:54:46", "start": "2026-08-04T02:58:58", "end": "2026-08-04T02:59:39", "elapsed_s": 41, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:55:08", "start": "2026-08-04T02:58:58", "end": "2026-08-04T02:59:39", "elapsed_s": 41, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T02:55:10", "start": "2026-08-04T02:59:30", "end": "2026-08-04T03:04:59", "elapsed_s": 329, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0914, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:00:30", "start": "2026-08-04T03:02:36", "end": "2026-08-04T03:04:59", "elapsed_s": 143, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:00:30", "start": "2026-08-04T03:04:09", "end": "2026-08-04T03:04:59", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:05:51", "start": "2026-08-04T03:08:16", "end": "2026-08-04T03:10:19", "elapsed_s": 123, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0342, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:05:52", "start": "2026-08-04T03:09:49", "end": "2026-08-04T03:20:56", "elapsed_s": 667, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1853, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:05:54", "start": "2026-08-04T03:09:49", "end": "2026-08-04T03:12:55", "elapsed_s": 186, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:05:55", "start": "2026-08-04T03:09:49", "end": "2026-08-04T03:10:19", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:06:39", "start": "2026-08-04T03:11:21", "end": "2026-08-04T03:15:40", "elapsed_s": 259, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0719, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:11:08", "start": "2026-08-04T03:13:25", "end": "2026-08-04T03:19:37", "elapsed_s": 372, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:11:12", "start": "2026-08-04T03:13:25", "end": "2026-08-04T03:15:40", "elapsed_s": 135, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0375, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:12:58", "start": "2026-08-04T03:15:29", "end": "2026-08-04T03:15:40", "elapsed_s": 11, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:15:43", "start": "2026-08-04T03:18:05", "end": "2026-08-04T03:20:56", "elapsed_s": 171, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0475, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:16:30", "start": "2026-08-04T03:19:37", "end": "2026-08-04T03:20:56", "elapsed_s": 79, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:16:33", "start": "2026-08-04T03:20:08", "end": "2026-08-04T03:21:18", "elapsed_s": 70, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:20:28", "start": "2026-08-04T03:22:41", "end": "2026-08-04T03:26:11", "elapsed_s": 210, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0583, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:20:59", "start": "2026-08-04T03:23:12", "end": "2026-08-04T03:26:11", "elapsed_s": 179, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0497, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:21:46", "start": "2026-08-04T03:24:14", "end": "2026-08-04T03:26:56", "elapsed_s": 162, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.045, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:21:47", "start": "2026-08-04T03:25:15", "end": "2026-08-04T03:26:11", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:22:11", "start": "2026-08-04T03:27:19", "end": "2026-08-04T03:41:55", "elapsed_s": 876, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2433, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:26:14", "start": "2026-08-04T03:28:20", "end": "2026-08-04T03:31:25", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:26:59", "start": "2026-08-04T03:30:55", "end": "2026-08-04T03:41:55", "elapsed_s": 660, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1833, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:27:05", "start": "2026-08-04T03:30:55", "end": "2026-08-04T03:41:57", "elapsed_s": 662, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1839, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:27:06", "start": "2026-08-04T03:31:25", "end": "2026-08-04T03:36:40", "elapsed_s": 315, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0875, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:32:17", "start": "2026-08-04T03:35:32", "end": "2026-08-04T03:36:40", "elapsed_s": 68, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:36:42", "start": "2026-08-04T03:39:37", "end": "2026-08-04T03:41:55", "elapsed_s": 138, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:37:31", "start": "2026-08-04T03:39:37", "end": "2026-08-04T03:41:55", "elapsed_s": 138, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:42:44", "start": "2026-08-04T03:45:15", "end": "2026-08-04T03:47:11", "elapsed_s": 116, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:42:45", "start": "2026-08-04T03:45:15", "end": "2026-08-04T03:47:11", "elapsed_s": 116, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:42:48", "start": "2026-08-04T03:45:45", "end": "2026-08-04T03:47:11", "elapsed_s": 86, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:42:49", "start": "2026-08-04T03:47:49", "end": "2026-08-04T03:51:58", "elapsed_s": 249, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0692, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:42:51", "start": "2026-08-04T03:47:49", "end": "2026-08-04T03:57:30", "elapsed_s": 581, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1614, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:48:02", "start": "2026-08-04T03:50:53", "end": "2026-08-04T03:51:58", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:48:02", "start": "2026-08-04T03:51:24", "end": "2026-08-04T03:51:58", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:48:03", "start": "2026-08-04T03:51:55", "end": "2026-08-04T03:51:58", "elapsed_s": 3, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:52:01", "start": "2026-08-04T03:54:29", "end": "2026-08-04T03:55:30", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:52:49", "start": "2026-08-04T03:54:59", "end": "2026-08-04T03:57:30", "elapsed_s": 151, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:52:51", "start": "2026-08-04T03:54:59", "end": "2026-08-04T03:57:40", "elapsed_s": 161, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0447, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:52:57", "start": "2026-08-04T03:54:59", "end": "2026-08-04T03:58:00", "elapsed_s": 181, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0503, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:56:25", "start": "2026-08-04T03:58:35", "end": "2026-08-04T04:01:55", "elapsed_s": 200, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:57:33", "start": "2026-08-04T04:00:07", "end": "2026-08-04T04:01:55", "elapsed_s": 108, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.03, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:57:42", "start": "2026-08-04T04:00:07", "end": "2026-08-04T04:01:55", "elapsed_s": 108, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.03, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:58:20", "start": "2026-08-04T04:03:42", "end": "2026-08-04T04:08:11", "elapsed_s": 269, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0747, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T03:58:54", "start": "2026-08-04T04:05:46", "end": "2026-08-04T04:11:57", "elapsed_s": 371, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:01:58", "start": "2026-08-04T04:07:19", "end": "2026-08-04T04:11:57", "elapsed_s": 278, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0772, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:02:50", "start": "2026-08-04T04:07:19", "end": "2026-08-04T04:08:11", "elapsed_s": 52, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:02:52", "start": "2026-08-04T04:08:51", "end": "2026-08-04T04:11:59", "elapsed_s": 188, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0522, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:09:03", "start": "2026-08-04T04:13:28", "end": "2026-08-04T04:18:40", "elapsed_s": 312, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0867, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:09:08", "start": "2026-08-04T04:13:59", "end": "2026-08-04T04:18:40", "elapsed_s": 281, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0781, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:12:47", "start": "2026-08-04T04:15:31", "end": "2026-08-04T04:18:40", "elapsed_s": 189, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:12:48", "start": "2026-08-04T04:16:01", "end": "2026-08-04T04:18:40", "elapsed_s": 159, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:12:50", "start": "2026-08-04T04:16:01", "end": "2026-08-04T04:18:42", "elapsed_s": 161, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0447, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:19:31", "start": "2026-08-04T04:22:42", "end": "2026-08-04T04:24:01", "elapsed_s": 79, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:19:32", "start": "2026-08-04T04:23:13", "end": "2026-08-04T04:24:01", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:19:34", "start": "2026-08-04T04:23:43", "end": "2026-08-04T04:31:00", "elapsed_s": 437, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:19:35", "start": "2026-08-04T04:23:43", "end": "2026-08-04T04:24:01", "elapsed_s": 18, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.005, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:19:36", "start": "2026-08-04T04:23:43", "end": "2026-08-04T04:29:15", "elapsed_s": 332, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0922, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:24:04", "start": "2026-08-04T04:30:24", "end": "2026-08-04T04:37:04", "elapsed_s": 400, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:24:04", "start": "2026-08-04T04:31:56", "end": "2026-08-04T06:56:37", "elapsed_s": 8681, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.4114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:24:50", "start": "2026-08-04T04:31:56", "end": "2026-08-04T06:56:37", "elapsed_s": 8681, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.4114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:30:08", "start": "2026-08-04T04:32:27", "end": "2026-08-04T06:56:37", "elapsed_s": 8650, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.4028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:31:50", "start": "2026-08-04T04:33:59", "end": "2026-08-04T06:56:37", "elapsed_s": 8558, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.3772, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:37:56", "start": "2026-08-04T04:41:10", "end": "2026-08-04T04:44:08", "elapsed_s": 178, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0494, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:44:11", "start": "2026-08-04T04:47:50", "end": "2026-08-04T04:49:52", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T04:50:42", "start": "2026-08-04T04:53:27", "end": "2026-08-04T06:06:12", "elapsed_s": 4365, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.2125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T06:07:03", "start": "2026-08-04T06:10:52", "end": "2026-08-04T06:56:37", "elapsed_s": 2745, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7625, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T06:57:26", "start": "2026-08-04T07:00:05", "end": "2026-08-04T07:44:40", "elapsed_s": 2675, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7431, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T06:57:28", "start": "2026-08-04T07:00:36", "end": "2026-08-04T08:56:07", "elapsed_s": 6931, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.9253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T06:57:28", "start": "2026-08-04T07:01:37", "end": "2026-08-04T09:15:15", "elapsed_s": 8018, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.2272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T06:57:29", "start": "2026-08-04T07:01:37", "end": "2026-08-04T07:44:57", "elapsed_s": 2600, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7222, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T06:57:29", "start": "2026-08-04T07:01:37", "end": "2026-08-04T08:43:34", "elapsed_s": 6117, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.6992, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T07:45:34", "start": "2026-08-04T07:49:47", "end": "2026-08-04T07:53:22", "elapsed_s": 215, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T07:45:47", "start": "2026-08-04T07:49:47", "end": "2026-08-04T08:00:26", "elapsed_s": 639, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1775, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T07:53:25", "start": "2026-08-04T08:02:36", "end": "2026-08-04T08:43:30", "elapsed_s": 2454, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6817, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T08:00:29", "start": "2026-08-04T08:06:41", "end": "2026-08-04T08:53:14", "elapsed_s": 2793, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.7758, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T08:44:24", "start": "2026-08-04T08:50:41", "end": "2026-08-04T08:55:31", "elapsed_s": 290, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0806, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T08:44:28", "start": "2026-08-04T08:54:16", "end": "2026-08-04T09:33:26", "elapsed_s": 2350, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.6528, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T08:54:05", "start": "2026-08-04T08:56:50", "end": "2026-08-04T09:29:56", "elapsed_s": 1986, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T08:56:24", "start": "2026-08-04T09:00:27", "end": "2026-08-04T09:14:36", "elapsed_s": 849, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T08:56:58", "start": "2026-08-04T09:00:27", "end": "2026-08-04T09:14:53", "elapsed_s": 866, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2406, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T09:15:29", "start": "2026-08-04T09:26:17", "end": "2026-08-04T09:46:10", "elapsed_s": 1193, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3314, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T09:15:46", "start": "2026-08-04T09:27:51", "end": "2026-08-04T09:30:02", "elapsed_s": 131, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0364, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T09:16:09", "start": "2026-08-04T09:30:59", "end": "2026-08-04T11:02:45", "elapsed_s": 5506, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.5294, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T09:30:48", "start": "2026-08-04T09:35:43", "end": "2026-08-04T09:41:29", "elapsed_s": 346, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0961, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T09:30:53", "start": "2026-08-04T09:37:50", "end": "2026-08-04T11:06:52", "elapsed_s": 5342, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.4839, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T09:34:18", "start": "2026-08-04T09:43:03", "end": "2026-08-04T09:44:25", "elapsed_s": 82, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0228, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T09:42:22", "start": "2026-08-04T09:47:13", "end": "2026-08-04T10:50:29", "elapsed_s": 3796, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0544, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T09:45:16", "start": "2026-08-04T09:51:52", "end": "2026-08-04T10:50:39", "elapsed_s": 3527, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9797, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T09:46:12", "start": "2026-08-04T09:52:55", "end": "2026-08-04T10:35:49", "elapsed_s": 2574, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.715, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T10:36:40", "start": "2026-08-04T10:43:13", "end": "2026-08-04T10:49:58", "elapsed_s": 405, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T10:50:52", "start": "2026-08-04T10:54:41", "end": "2026-08-04T11:02:45", "elapsed_s": 484, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T10:51:22", "start": "2026-08-04T10:57:19", "end": "2026-08-04T11:00:24", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T10:51:31", "start": "2026-08-04T10:59:57", "end": "2026-08-04T11:02:45", "elapsed_s": 168, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0467, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T11:00:30", "start": "2026-08-04T11:02:32", "end": "2026-08-04T11:56:47", "elapsed_s": 3255, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.9042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T11:02:48", "start": "2026-08-04T11:05:40", "end": "2026-08-04T11:09:07", "elapsed_s": 207, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T11:03:35", "start": "2026-08-04T11:07:14", "end": "2026-08-04T11:09:27", "elapsed_s": 133, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0369, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T11:03:40", "start": "2026-08-04T11:07:14", "end": "2026-08-04T11:10:29", "elapsed_s": 195, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0542, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T11:07:43", "start": "2026-08-04T11:10:23", "end": "2026-08-04T12:10:50", "elapsed_s": 3627, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0075, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T11:09:59", "start": "2026-08-04T11:17:40", "end": "2026-08-04T11:38:41", "elapsed_s": 1261, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3503, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T11:10:19", "start": "2026-08-04T11:18:11", "end": "2026-08-04T11:56:47", "elapsed_s": 2316, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6433, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T11:11:25", "start": "2026-08-04T11:19:43", "end": "2026-08-04T11:20:44", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T11:21:43", "start": "2026-08-04T11:29:05", "end": "2026-08-04T12:11:12", "elapsed_s": 2527, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T11:38:44", "start": "2026-08-04T11:53:29", "end": "2026-08-04T12:01:12", "elapsed_s": 463, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1286, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T11:57:38", "start": "2026-08-04T12:02:20", "end": "2026-08-04T12:17:33", "elapsed_s": 913, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T11:57:41", "start": "2026-08-04T12:03:26", "end": "2026-08-04T12:17:33", "elapsed_s": 847, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T12:01:16", "start": "2026-08-04T12:12:16", "end": "2026-08-04T12:30:00", "elapsed_s": 1064, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2956, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T12:11:45", "start": "2026-08-04T12:59:37", "end": "2026-08-04T13:29:52", "elapsed_s": 1815, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T12:12:05", "start": "2026-08-04T13:00:43", "end": "2026-08-04T13:26:46", "elapsed_s": 1563, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4342, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T12:18:24", "start": "2026-08-04T13:01:14", "end": "2026-08-04T13:20:38", "elapsed_s": 1164, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3233, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T12:18:27", "start": "2026-08-04T13:01:14", "end": "2026-08-04T13:26:46", "elapsed_s": 1532, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T12:30:54", "start": "2026-08-04T13:01:46", "end": "2026-08-04T13:08:57", "elapsed_s": 431, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:09:00", "start": "2026-08-04T13:11:16", "end": "2026-08-04T13:20:19", "elapsed_s": 543, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:21:13", "start": "2026-08-04T13:23:28", "end": "2026-08-04T13:26:46", "elapsed_s": 198, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.055, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:21:31", "start": "2026-08-04T13:23:59", "end": "2026-08-04T13:26:46", "elapsed_s": 167, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0464, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:26:51", "start": "2026-08-04T13:30:48", "end": "2026-08-04T13:34:27", "elapsed_s": 219, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0608, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:27:38", "start": "2026-08-04T13:30:48", "end": "2026-08-04T13:35:08", "elapsed_s": 260, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0722, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:27:40", "start": "2026-08-04T13:31:51", "end": "2026-08-04T13:36:44", "elapsed_s": 293, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0814, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:27:41", "start": "2026-08-04T13:35:32", "end": "2026-08-04T13:36:44", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:30:44", "start": "2026-08-04T13:35:32", "end": "2026-08-04T13:36:44", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:35:20", "start": "2026-08-04T13:37:45", "end": "2026-08-04T13:42:32", "elapsed_s": 287, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0797, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:36:01", "start": "2026-08-04T13:38:18", "end": "2026-08-04T13:46:50", "elapsed_s": 512, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1422, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:37:37", "start": "2026-08-04T13:41:02", "end": "2026-08-04T14:38:10", "elapsed_s": 3428, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9522, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:37:38", "start": "2026-08-04T13:41:35", "end": "2026-08-04T13:56:51", "elapsed_s": 916, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2544, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:37:39", "start": "2026-08-04T13:42:05", "end": "2026-08-04T13:56:51", "elapsed_s": 886, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:42:35", "start": "2026-08-04T13:44:43", "end": "2026-08-04T13:56:51", "elapsed_s": 728, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:47:44", "start": "2026-08-04T13:50:36", "end": "2026-08-04T13:56:54", "elapsed_s": 378, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.105, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:56:55", "start": "2026-08-04T13:59:05", "end": "2026-08-04T14:37:46", "elapsed_s": 2321, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6447, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:57:42", "start": "2026-08-04T14:00:09", "end": "2026-08-04T14:27:31", "elapsed_s": 1642, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4561, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:57:42", "start": "2026-08-04T14:00:09", "end": "2026-08-04T14:46:42", "elapsed_s": 2793, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7758, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T13:57:49", "start": "2026-08-04T14:00:09", "end": "2026-08-04T14:37:34", "elapsed_s": 2245, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38137571", "job_name": "tar_round1_crops", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "COMPLETED", "submit": "2026-08-04T14:10:50", "start": "2026-08-04T14:11:06", "end": "2026-08-04T15:15:34", "elapsed_s": 3868, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:28:23", "start": "2026-08-04T14:31:14", "end": "2026-08-04T14:34:00", "elapsed_s": 166, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:34:50", "start": "2026-08-04T14:38:59", "end": "2026-08-04T14:40:46", "elapsed_s": 107, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:38:30", "start": "2026-08-04T14:40:43", "end": "2026-08-04T14:40:46", "elapsed_s": 3, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:38:41", "start": "2026-08-04T14:41:51", "end": "2026-08-04T14:46:17", "elapsed_s": 266, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0739, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:39:06", "start": "2026-08-04T14:41:51", "end": "2026-08-04T14:46:38", "elapsed_s": 287, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0797, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:41:39", "start": "2026-08-04T14:47:04", "end": "2026-08-04T14:48:53", "elapsed_s": 109, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:41:40", "start": "2026-08-04T14:47:36", "end": "2026-08-04T14:48:42", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:47:07", "start": "2026-08-04T14:49:53", "end": "2026-08-04T14:50:55", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:47:30", "start": "2026-08-04T14:49:53", "end": "2026-08-04T14:51:18", "elapsed_s": 85, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:47:32", "start": "2026-08-04T14:50:28", "end": "2026-08-04T14:52:20", "elapsed_s": 112, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:49:34", "start": "2026-08-04T14:52:11", "end": "2026-08-04T14:52:20", "elapsed_s": 9, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:49:43", "start": "2026-08-04T14:53:19", "end": "2026-08-04T14:54:26", "elapsed_s": 67, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:51:45", "start": "2026-08-04T14:53:52", "end": "2026-08-04T15:26:52", "elapsed_s": 1980, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.55, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:52:10", "start": "2026-08-04T14:55:32", "end": "2026-08-04T14:56:44", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:53:12", "start": "2026-08-04T14:56:38", "end": "2026-08-04T14:56:44", "elapsed_s": 6, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:53:14", "start": "2026-08-04T14:56:38", "end": "2026-08-04T15:26:52", "elapsed_s": 1814, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:55:18", "start": "2026-08-04T14:57:44", "end": "2026-08-04T14:58:47", "elapsed_s": 63, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:57:33", "start": "2026-08-04T15:00:01", "end": "2026-08-04T15:01:07", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:57:34", "start": "2026-08-04T15:00:01", "end": "2026-08-04T15:01:22", "elapsed_s": 81, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T14:59:41", "start": "2026-08-04T15:02:17", "end": "2026-08-04T15:03:35", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:01:58", "start": "2026-08-04T15:04:40", "end": "2026-08-04T15:06:49", "elapsed_s": 129, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:02:12", "start": "2026-08-04T15:04:40", "end": "2026-08-04T15:06:49", "elapsed_s": 129, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:04:27", "start": "2026-08-04T15:08:09", "end": "2026-08-04T15:16:54", "elapsed_s": 525, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1458, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:07:40", "start": "2026-08-04T15:10:32", "end": "2026-08-04T15:14:58", "elapsed_s": 266, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0739, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:07:41", "start": "2026-08-04T15:11:07", "end": "2026-08-04T15:26:52", "elapsed_s": 945, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2625, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:15:49", "start": "2026-08-04T15:18:15", "end": "2026-08-04T15:26:49", "elapsed_s": 514, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1428, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:17:46", "start": "2026-08-04T15:25:09", "end": "2026-08-04T15:26:52", "elapsed_s": 103, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0286, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:27:40", "start": "2026-08-04T15:30:07", "end": "2026-08-04T15:36:47", "elapsed_s": 400, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:27:45", "start": "2026-08-04T15:30:39", "end": "2026-08-04T15:36:47", "elapsed_s": 368, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:27:45", "start": "2026-08-04T15:32:12", "end": "2026-08-04T15:36:47", "elapsed_s": 275, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0764, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:27:45", "start": "2026-08-04T15:32:12", "end": "2026-08-04T15:35:25", "elapsed_s": 193, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:27:49", "start": "2026-08-04T15:33:48", "end": "2026-08-04T15:36:47", "elapsed_s": 179, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0497, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:36:22", "start": "2026-08-04T15:38:38", "end": "2026-08-04T16:17:42", "elapsed_s": 2344, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6511, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:37:39", "start": "2026-08-04T15:39:49", "end": "2026-08-04T16:18:33", "elapsed_s": 2324, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6456, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:37:39", "start": "2026-08-04T15:39:49", "end": "2026-08-04T16:56:58", "elapsed_s": 4629, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.2858, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:37:40", "start": "2026-08-04T15:40:56", "end": "2026-08-04T16:19:05", "elapsed_s": 2289, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T15:37:44", "start": "2026-08-04T15:41:28", "end": "2026-08-04T16:17:42", "elapsed_s": 2174, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:18:35", "start": "2026-08-04T16:20:57", "end": "2026-08-04T16:22:19", "elapsed_s": 82, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0228, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:18:36", "start": "2026-08-04T16:20:57", "end": "2026-08-04T16:54:02", "elapsed_s": 1985, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:19:26", "start": "2026-08-04T16:23:31", "end": "2026-08-04T16:33:20", "elapsed_s": 589, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1636, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:19:57", "start": "2026-08-04T16:23:31", "end": "2026-08-04T16:40:29", "elapsed_s": 1018, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2828, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:23:10", "start": "2026-08-04T16:27:38", "end": "2026-08-04T16:27:42", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:28:31", "start": "2026-08-04T16:31:14", "end": "2026-08-04T16:38:58", "elapsed_s": 464, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:33:22", "start": "2026-08-04T16:37:53", "end": "2026-08-04T16:38:28", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:39:20", "start": "2026-08-04T16:41:28", "end": "2026-08-04T16:48:19", "elapsed_s": 411, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:39:50", "start": "2026-08-04T16:44:02", "end": "2026-08-04T16:48:42", "elapsed_s": 280, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0778, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:41:24", "start": "2026-08-04T16:44:33", "end": "2026-08-04T16:53:41", "elapsed_s": 548, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1522, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:49:08", "start": "2026-08-04T16:51:12", "end": "2026-08-04T16:56:48", "elapsed_s": 336, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0933, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:49:41", "start": "2026-08-04T16:52:14", "end": "2026-08-04T16:56:48", "elapsed_s": 274, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0761, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:54:37", "start": "2026-08-04T16:58:54", "end": "2026-08-04T17:55:28", "elapsed_s": 3394, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.9428, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:54:54", "start": "2026-08-04T16:58:54", "end": "2026-08-04T17:59:59", "elapsed_s": 3665, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:56:51", "start": "2026-08-04T17:36:30", "end": "2026-08-04T18:05:53", "elapsed_s": 1763, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4897, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:57:40", "start": "2026-08-04T17:36:30", "end": "2026-08-04T17:47:49", "elapsed_s": 679, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1886, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T16:57:53", "start": "2026-08-04T17:36:30", "end": "2026-08-04T17:47:49", "elapsed_s": 679, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1886, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T17:47:52", "start": "2026-08-04T17:51:02", "end": "2026-08-04T17:53:47", "elapsed_s": 165, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0458, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T17:48:40", "start": "2026-08-04T17:51:02", "end": "2026-08-04T18:02:45", "elapsed_s": 703, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1953, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T17:54:40", "start": "2026-08-04T17:56:45", "end": "2026-08-04T17:57:32", "elapsed_s": 47, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T17:56:21", "start": "2026-08-04T17:59:50", "end": "2026-08-04T17:59:59", "elapsed_s": 9, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T17:58:23", "start": "2026-08-04T18:00:52", "end": "2026-08-04T18:00:53", "elapsed_s": 1, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:00:50", "start": "2026-08-04T18:03:27", "end": "2026-08-04T18:04:57", "elapsed_s": 90, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:00:52", "start": "2026-08-04T18:03:27", "end": "2026-08-04T18:04:57", "elapsed_s": 90, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:01:42", "start": "2026-08-04T18:03:58", "end": "2026-08-04T18:08:19", "elapsed_s": 261, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0725, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:03:40", "start": "2026-08-04T18:07:06", "end": "2026-08-04T19:48:15", "elapsed_s": 6069, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.6858, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:04:59", "start": "2026-08-04T18:07:37", "end": "2026-08-04T18:45:58", "elapsed_s": 2301, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6392, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:05:49", "start": "2026-08-04T18:10:13", "end": "2026-08-04T18:23:09", "elapsed_s": 776, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:06:48", "start": "2026-08-04T18:10:44", "end": "2026-08-04T18:10:46", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:09:14", "start": "2026-08-04T18:11:15", "end": "2026-08-04T18:23:04", "elapsed_s": 709, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1969, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:10:48", "start": "2026-08-04T18:13:50", "end": "2026-08-04T18:21:40", "elapsed_s": 470, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:22:30", "start": "2026-08-04T18:24:37", "end": "2026-08-04T18:39:58", "elapsed_s": 921, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2558, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:23:12", "start": "2026-08-04T18:25:39", "end": "2026-08-04T18:48:05", "elapsed_s": 1346, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3739, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:23:55", "start": "2026-08-04T18:26:10", "end": "2026-08-04T18:28:52", "elapsed_s": 162, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.045, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:29:41", "start": "2026-08-04T18:33:55", "end": "2026-08-04T18:39:32", "elapsed_s": 337, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0936, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:40:22", "start": "2026-08-04T18:46:53", "end": "2026-08-04T18:56:46", "elapsed_s": 593, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1647, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:40:48", "start": "2026-08-04T18:49:28", "end": "2026-08-04T19:48:38", "elapsed_s": 3550, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.9861, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:46:50", "start": "2026-08-04T18:58:19", "end": "2026-08-04T19:48:15", "elapsed_s": 2996, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:49:02", "start": "2026-08-04T18:58:19", "end": "2026-08-04T19:02:09", "elapsed_s": 230, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0639, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T18:57:40", "start": "2026-08-04T19:00:23", "end": "2026-08-04T19:15:31", "elapsed_s": 908, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2522, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T19:03:01", "start": "2026-08-04T19:07:13", "end": "2026-08-04T19:07:41", "elapsed_s": 28, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T19:08:32", "start": "2026-08-04T19:14:30", "end": "2026-08-04T19:20:42", "elapsed_s": 372, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T19:16:30", "start": "2026-08-04T19:21:45", "end": "2026-08-04T19:22:57", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T19:21:37", "start": "2026-08-04T19:24:52", "end": "2026-08-04T19:29:00", "elapsed_s": 248, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0689, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T19:23:48", "start": "2026-08-04T19:25:53", "end": "2026-08-04T19:28:50", "elapsed_s": 177, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0492, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T19:29:41", "start": "2026-08-04T19:34:42", "end": "2026-08-04T20:27:50", "elapsed_s": 3188, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8856, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T19:29:51", "start": "2026-08-04T19:34:42", "end": "2026-08-04T21:07:03", "elapsed_s": 5541, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.5392, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T19:49:06", "start": "2026-08-04T19:56:19", "end": "2026-08-04T20:00:26", "elapsed_s": 247, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0686, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T19:49:09", "start": "2026-08-04T19:57:52", "end": "2026-08-04T21:07:13", "elapsed_s": 4161, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.1558, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T19:49:35", "start": "2026-08-04T19:57:52", "end": "2026-08-04T21:06:49", "elapsed_s": 4137, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.1492, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T20:01:19", "start": "2026-08-04T20:04:03", "end": "2026-08-04T21:07:13", "elapsed_s": 3790, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0528, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T20:27:52", "start": "2026-08-04T20:38:38", "end": "2026-08-04T21:06:49", "elapsed_s": 1691, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4697, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:07:43", "start": "2026-08-04T21:18:51", "end": "2026-08-04T21:19:06", "elapsed_s": 15, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:07:43", "start": "2026-08-04T21:18:51", "end": "2026-08-04T21:20:06", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:07:55", "start": "2026-08-04T21:18:51", "end": "2026-08-04T21:20:21", "elapsed_s": 90, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:08:04", "start": "2026-08-04T21:18:51", "end": "2026-08-04T21:19:17", "elapsed_s": 26, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0072, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:08:07", "start": "2026-08-04T21:23:27", "end": "2026-08-04T21:25:40", "elapsed_s": 133, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0369, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:19:08", "start": "2026-08-04T21:23:27", "end": "2026-08-04T21:24:44", "elapsed_s": 77, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:20:07", "start": "2026-08-04T21:23:27", "end": "2026-08-04T21:26:06", "elapsed_s": 159, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:20:08", "start": "2026-08-04T21:23:27", "end": "2026-08-04T21:23:37", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:21:11", "start": "2026-08-04T21:25:30", "end": "2026-08-04T21:25:37", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:24:27", "start": "2026-08-04T21:27:33", "end": "2026-08-04T21:28:48", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:24:47", "start": "2026-08-04T21:27:33", "end": "2026-08-04T21:28:24", "elapsed_s": 51, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:25:43", "start": "2026-08-04T21:28:04", "end": "2026-08-04T21:28:09", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:26:26", "start": "2026-08-04T21:28:35", "end": "2026-08-04T21:30:06", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:26:56", "start": "2026-08-04T21:29:05", "end": "2026-08-04T21:33:26", "elapsed_s": 261, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0725, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:28:26", "start": "2026-08-04T21:30:37", "end": "2026-08-04T21:32:35", "elapsed_s": 118, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0328, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:28:59", "start": "2026-08-04T21:31:38", "end": "2026-08-04T21:32:43", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:29:37", "start": "2026-08-04T21:32:09", "end": "2026-08-04T21:32:39", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:30:58", "start": "2026-08-04T21:34:12", "end": "2026-08-04T21:35:37", "elapsed_s": 85, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:32:38", "start": "2026-08-04T21:34:42", "end": "2026-08-04T21:34:56", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:33:31", "start": "2026-08-04T21:37:16", "end": "2026-08-04T21:39:18", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:33:33", "start": "2026-08-04T21:37:16", "end": "2026-08-04T21:38:07", "elapsed_s": 51, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:34:17", "start": "2026-08-04T21:37:16", "end": "2026-08-04T21:38:35", "elapsed_s": 79, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:35:47", "start": "2026-08-04T21:38:18", "end": "2026-08-04T21:41:52", "elapsed_s": 214, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0594, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:36:27", "start": "2026-08-04T21:38:49", "end": "2026-08-04T21:40:27", "elapsed_s": 98, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:38:09", "start": "2026-08-04T21:40:21", "end": "2026-08-04T21:40:48", "elapsed_s": 27, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0075, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:39:25", "start": "2026-08-04T21:41:53", "end": "2026-08-04T21:44:07", "elapsed_s": 134, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:40:10", "start": "2026-08-04T21:43:25", "end": "2026-08-04T21:44:00", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:41:17", "start": "2026-08-04T21:44:26", "end": "2026-08-04T21:45:07", "elapsed_s": 41, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:41:40", "start": "2026-08-04T21:44:26", "end": "2026-08-04T21:45:13", "elapsed_s": 47, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:42:43", "start": "2026-08-04T21:44:57", "end": "2026-08-04T22:06:19", "elapsed_s": 1282, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3561, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:44:51", "start": "2026-08-04T21:46:59", "end": "2026-08-04T22:06:26", "elapsed_s": 1167, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:45:01", "start": "2026-08-04T21:47:30", "end": "2026-08-04T22:07:06", "elapsed_s": 1176, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:45:59", "start": "2026-08-04T21:48:01", "end": "2026-08-04T21:48:31", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:46:03", "start": "2026-08-04T21:49:32", "end": "2026-08-04T22:06:36", "elapsed_s": 1024, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2844, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T21:49:21", "start": "2026-08-04T21:51:35", "end": "2026-08-05T00:13:36", "elapsed_s": 8521, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.3669, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:06:22", "start": "2026-08-04T22:13:33", "end": "2026-08-04T22:14:39", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:06:28", "start": "2026-08-04T22:13:33", "end": "2026-08-04T22:13:46", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:07:32", "start": "2026-08-04T22:13:33", "end": "2026-08-04T22:14:51", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:07:58", "start": "2026-08-04T22:13:33", "end": "2026-08-04T22:13:56", "elapsed_s": 23, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0064, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:14:37", "start": "2026-08-04T22:19:09", "end": "2026-08-04T23:13:51", "elapsed_s": 3282, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.9117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:14:47", "start": "2026-08-04T22:19:09", "end": "2026-08-05T00:14:17", "elapsed_s": 6908, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.9189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:15:30", "start": "2026-08-04T22:19:09", "end": "2026-08-04T22:27:18", "elapsed_s": 489, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:15:41", "start": "2026-08-04T22:21:41", "end": "2026-08-04T22:21:45", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:22:35", "start": "2026-08-04T22:24:45", "end": "2026-08-04T22:40:05", "elapsed_s": 920, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:27:21", "start": "2026-08-04T22:30:22", "end": "2026-08-04T22:42:38", "elapsed_s": 736, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:41:00", "start": "2026-08-04T22:46:45", "end": "2026-08-04T22:58:17", "elapsed_s": 692, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1922, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:42:41", "start": "2026-08-04T22:48:47", "end": "2026-08-04T22:54:54", "elapsed_s": 367, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:54:57", "start": "2026-08-04T23:01:03", "end": "2026-08-04T23:09:15", "elapsed_s": 492, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1367, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T22:59:11", "start": "2026-08-04T23:01:34", "end": "2026-08-04T23:09:46", "elapsed_s": 492, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1367, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T23:10:07", "start": "2026-08-04T23:14:52", "end": "2026-08-04T23:15:06", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T23:10:40", "start": "2026-08-04T23:17:26", "end": "2026-08-04T23:38:13", "elapsed_s": 1247, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3464, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T23:13:53", "start": "2026-08-04T23:17:26", "end": "2026-08-04T23:23:05", "elapsed_s": 339, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0942, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T23:15:56", "start": "2026-08-04T23:19:29", "end": "2026-08-04T23:20:31", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T23:20:35", "start": "2026-08-04T23:23:37", "end": "2026-08-04T23:45:55", "elapsed_s": 1338, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3717, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T23:23:09", "start": "2026-08-04T23:26:14", "end": "2026-08-04T23:37:42", "elapsed_s": 688, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1911, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T23:37:45", "start": "2026-08-04T23:40:47", "end": "2026-08-05T00:08:47", "elapsed_s": 1680, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4667, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T23:39:05", "start": "2026-08-04T23:42:19", "end": "2026-08-05T00:09:16", "elapsed_s": 1617, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4492, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-04T23:46:48", "start": "2026-08-04T23:50:03", "end": "2026-08-05T00:06:04", "elapsed_s": 961, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2669, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:07:02", "start": "2026-08-05T00:10:13", "end": "2026-08-05T00:15:58", "elapsed_s": 345, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0958, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:09:41", "start": "2026-08-05T00:11:46", "end": "2026-08-05T00:14:19", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:10:11", "start": "2026-08-05T00:14:50", "end": "2026-08-05T00:28:44", "elapsed_s": 834, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2317, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:14:29", "start": "2026-08-05T00:16:54", "end": "2026-08-05T01:31:16", "elapsed_s": 4462, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.2394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:15:11", "start": "2026-08-05T00:17:56", "end": "2026-08-05T00:27:43", "elapsed_s": 587, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1631, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:15:12", "start": "2026-08-05T00:19:28", "end": "2026-08-05T00:29:58", "elapsed_s": 630, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:16:51", "start": "2026-08-05T00:19:28", "end": "2026-08-05T00:29:58", "elapsed_s": 630, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:28:35", "start": "2026-08-05T00:33:21", "end": "2026-08-05T01:26:52", "elapsed_s": 3211, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.8919, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:29:36", "start": "2026-08-05T00:38:30", "end": "2026-08-05T00:40:34", "elapsed_s": 124, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:29:59", "start": "2026-08-05T00:38:30", "end": "2026-08-05T00:40:54", "elapsed_s": 144, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.04, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:30:50", "start": "2026-08-05T00:40:02", "end": "2026-08-05T00:42:22", "elapsed_s": 140, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0389, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:40:36", "start": "2026-08-05T00:44:08", "end": "2026-08-05T00:47:19", "elapsed_s": 191, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:41:44", "start": "2026-08-05T00:54:25", "end": "2026-08-05T00:58:16", "elapsed_s": 231, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0642, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:43:14", "start": "2026-08-05T00:54:25", "end": "2026-08-05T00:57:37", "elapsed_s": 192, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0533, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:48:10", "start": "2026-08-05T00:59:34", "end": "2026-08-05T01:14:11", "elapsed_s": 877, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2436, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:58:27", "start": "2026-08-05T01:04:12", "end": "2026-08-05T01:14:02", "elapsed_s": 590, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1639, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T00:59:07", "start": "2026-08-05T01:04:12", "end": "2026-08-05T02:53:05", "elapsed_s": 6533, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.8147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T01:14:05", "start": "2026-08-05T01:17:07", "end": "2026-08-05T01:23:13", "elapsed_s": 366, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T01:15:03", "start": "2026-08-05T01:18:39", "end": "2026-08-05T01:54:16", "elapsed_s": 2137, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5936, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T01:24:04", "start": "2026-08-05T01:27:23", "end": "2026-08-05T01:30:43", "elapsed_s": 200, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T01:27:46", "start": "2026-08-05T01:32:32", "end": "2026-08-05T01:53:29", "elapsed_s": 1257, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3492, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T01:31:33", "start": "2026-08-05T01:34:36", "end": "2026-08-05T02:14:17", "elapsed_s": 2381, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.6614, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T01:32:09", "start": "2026-08-05T01:35:07", "end": "2026-08-05T01:56:14", "elapsed_s": 1267, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3519, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T01:54:23", "start": "2026-08-05T01:57:11", "end": "2026-08-05T02:01:09", "elapsed_s": 238, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0661, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T01:55:07", "start": "2026-08-05T01:57:11", "end": "2026-08-05T02:14:22", "elapsed_s": 1031, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2864, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T01:57:06", "start": "2026-08-05T02:00:17", "end": "2026-08-05T02:01:35", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:02:01", "start": "2026-08-05T02:08:35", "end": "2026-08-05T02:12:48", "elapsed_s": 253, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0703, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:02:27", "start": "2026-08-05T02:15:19", "end": "2026-08-05T03:20:53", "elapsed_s": 3934, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.0928, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:13:40", "start": "2026-08-05T02:16:21", "end": "2026-08-05T02:42:15", "elapsed_s": 1554, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4317, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:14:19", "start": "2026-08-05T02:18:56", "end": "2026-08-05T02:22:47", "elapsed_s": 231, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0642, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:15:14", "start": "2026-08-05T02:28:47", "end": "2026-08-05T02:31:01", "elapsed_s": 134, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:23:39", "start": "2026-08-05T02:35:31", "end": "2026-08-05T02:39:12", "elapsed_s": 221, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0614, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:31:53", "start": "2026-08-05T02:41:44", "end": "2026-08-05T04:18:37", "elapsed_s": 5813, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.6147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:40:05", "start": "2026-08-05T02:44:18", "end": "2026-08-05T02:49:28", "elapsed_s": 310, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0861, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:43:07", "start": "2026-08-05T02:46:22", "end": "2026-08-05T02:50:05", "elapsed_s": 223, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0619, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:50:20", "start": "2026-08-05T02:53:05", "end": "2026-08-05T02:54:23", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:50:55", "start": "2026-08-05T02:55:39", "end": "2026-08-05T03:13:10", "elapsed_s": 1051, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2919, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:53:58", "start": "2026-08-05T02:56:41", "end": "2026-08-05T03:20:53", "elapsed_s": 1452, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.4033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T02:55:13", "start": "2026-08-05T03:02:55", "end": "2026-08-05T03:08:37", "elapsed_s": 342, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.095, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T03:09:30", "start": "2026-08-05T03:14:17", "end": "2026-08-05T03:43:23", "elapsed_s": 1746, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.485, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T03:14:03", "start": "2026-08-05T03:18:24", "end": "2026-08-05T03:48:16", "elapsed_s": 1792, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4978, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T03:21:44", "start": "2026-08-05T03:27:10", "end": "2026-08-05T03:30:16", "elapsed_s": 186, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T03:21:45", "start": "2026-08-05T03:28:12", "end": "2026-08-05T03:31:17", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T03:31:07", "start": "2026-08-05T03:33:20", "end": "2026-08-05T04:01:14", "elapsed_s": 1674, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.465, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T03:32:09", "start": "2026-08-05T03:36:56", "end": "2026-08-05T04:02:15", "elapsed_s": 1519, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T03:44:17", "start": "2026-08-05T04:05:22", "end": "2026-08-05T04:18:47", "elapsed_s": 805, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T03:48:19", "start": "2026-08-05T04:05:22", "end": "2026-08-05T04:06:39", "elapsed_s": 77, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:02:11", "start": "2026-08-05T04:07:59", "end": "2026-08-05T04:14:21", "elapsed_s": 382, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:03:13", "start": "2026-08-05T04:10:03", "end": "2026-08-05T04:19:48", "elapsed_s": 585, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1625, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:07:29", "start": "2026-08-05T04:10:33", "end": "2026-08-05T04:13:52", "elapsed_s": 199, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0553, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:14:43", "start": "2026-08-05T04:17:45", "end": "2026-08-05T04:18:35", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:15:12", "start": "2026-08-05T04:19:48", "end": "2026-08-05T04:42:29", "elapsed_s": 1361, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3781, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:19:26", "start": "2026-08-05T04:23:53", "end": "2026-08-05T04:24:50", "elapsed_s": 57, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0158, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:19:31", "start": "2026-08-05T04:25:56", "end": "2026-08-05T04:28:12", "elapsed_s": 136, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0378, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:19:44", "start": "2026-08-05T04:29:02", "end": "2026-08-05T04:36:13", "elapsed_s": 431, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:20:42", "start": "2026-08-05T04:30:03", "end": "2026-08-05T04:55:21", "elapsed_s": 1518, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:25:40", "start": "2026-08-05T04:30:03", "end": "2026-08-05T04:38:57", "elapsed_s": 534, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1483, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:29:04", "start": "2026-08-05T04:34:42", "end": "2026-08-05T04:39:25", "elapsed_s": 283, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0786, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:36:15", "start": "2026-08-05T04:39:21", "end": "2026-08-05T04:42:29", "elapsed_s": 188, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0522, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:39:49", "start": "2026-08-05T04:41:55", "end": "2026-08-05T04:49:40", "elapsed_s": 465, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1292, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:40:17", "start": "2026-08-05T04:42:26", "end": "2026-08-05T04:48:19", "elapsed_s": 353, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0981, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:43:19", "start": "2026-08-05T04:45:31", "end": "2026-08-05T04:48:39", "elapsed_s": 188, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0522, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:43:22", "start": "2026-08-05T04:46:02", "end": "2026-08-05T04:54:20", "elapsed_s": 498, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:49:11", "start": "2026-08-05T04:51:13", "end": "2026-08-05T04:54:27", "elapsed_s": 194, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0539, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:49:32", "start": "2026-08-05T04:51:43", "end": "2026-08-05T04:54:19", "elapsed_s": 156, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0433, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:50:31", "start": "2026-08-05T04:52:45", "end": "2026-08-05T04:54:21", "elapsed_s": 96, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:55:11", "start": "2026-08-05T04:58:28", "end": "2026-08-05T05:06:41", "elapsed_s": 493, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1369, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:55:13", "start": "2026-08-05T04:58:59", "end": "2026-08-05T05:24:35", "elapsed_s": 1536, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.4267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:55:14", "start": "2026-08-05T04:58:59", "end": "2026-08-05T05:30:40", "elapsed_s": 1901, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5281, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:55:20", "start": "2026-08-05T05:01:02", "end": "2026-08-05T05:25:40", "elapsed_s": 1478, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T04:56:17", "start": "2026-08-05T05:03:05", "end": "2026-08-05T06:18:37", "elapsed_s": 4532, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.2589, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:07:33", "start": "2026-08-05T05:11:50", "end": "2026-08-05T05:12:52", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:13:42", "start": "2026-08-05T05:19:01", "end": "2026-08-05T05:24:39", "elapsed_s": 338, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0939, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:24:37", "start": "2026-08-05T05:26:42", "end": "2026-08-05T05:30:27", "elapsed_s": 225, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0625, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:25:31", "start": "2026-08-05T05:28:14", "end": "2026-08-05T05:30:49", "elapsed_s": 155, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0431, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:26:32", "start": "2026-08-05T05:29:47", "end": "2026-08-05T05:31:50", "elapsed_s": 123, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0342, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:31:19", "start": "2026-08-05T05:34:23", "end": "2026-08-05T05:36:25", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:31:39", "start": "2026-08-05T05:34:23", "end": "2026-08-05T06:06:42", "elapsed_s": 1939, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5386, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:31:39", "start": "2026-08-05T05:35:56", "end": "2026-08-05T05:42:36", "elapsed_s": 400, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:32:42", "start": "2026-08-05T05:36:27", "end": "2026-08-05T05:54:57", "elapsed_s": 1110, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:37:15", "start": "2026-08-05T05:41:03", "end": "2026-08-05T05:42:35", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:43:27", "start": "2026-08-05T05:49:47", "end": "2026-08-05T05:54:34", "elapsed_s": 287, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0797, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:43:28", "start": "2026-08-05T05:49:47", "end": "2026-08-05T05:54:37", "elapsed_s": 290, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0806, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:55:25", "start": "2026-08-05T05:59:04", "end": "2026-08-05T06:06:36", "elapsed_s": 452, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:55:30", "start": "2026-08-05T05:59:35", "end": "2026-08-05T06:56:00", "elapsed_s": 3385, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.9403, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T05:55:50", "start": "2026-08-05T05:59:35", "end": "2026-08-05T06:21:00", "elapsed_s": 1285, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3569, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:06:43", "start": "2026-08-05T06:08:50", "end": "2026-08-05T06:12:57", "elapsed_s": 247, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0686, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:07:29", "start": "2026-08-05T06:09:52", "end": "2026-08-05T06:12:41", "elapsed_s": 169, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0469, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:12:44", "start": "2026-08-05T06:16:34", "end": "2026-08-05T06:48:50", "elapsed_s": 1936, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5378, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:13:48", "start": "2026-08-05T06:18:07", "end": "2026-08-05T06:18:36", "elapsed_s": 29, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:18:40", "start": "2026-08-05T06:24:15", "end": "2026-08-05T06:24:37", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:19:30", "start": "2026-08-05T06:25:16", "end": "2026-08-05T06:30:54", "elapsed_s": 338, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0939, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:21:58", "start": "2026-08-05T06:25:16", "end": "2026-08-05T07:12:54", "elapsed_s": 2858, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.7939, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:25:26", "start": "2026-08-05T06:29:22", "end": "2026-08-05T06:30:36", "elapsed_s": 74, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0206, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:30:57", "start": "2026-08-05T06:35:31", "end": "2026-08-05T06:36:38", "elapsed_s": 67, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:31:25", "start": "2026-08-05T06:37:34", "end": "2026-08-05T07:19:02", "elapsed_s": 2488, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.6911, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:37:28", "start": "2026-08-05T06:39:36", "end": "2026-08-05T06:42:41", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:43:31", "start": "2026-08-05T06:45:46", "end": "2026-08-05T06:48:41", "elapsed_s": 175, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0486, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:49:32", "start": "2026-08-05T06:51:54", "end": "2026-08-05T06:54:59", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:49:41", "start": "2026-08-05T06:51:54", "end": "2026-08-05T06:54:44", "elapsed_s": 170, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:55:35", "start": "2026-08-05T06:58:03", "end": "2026-08-05T07:00:37", "elapsed_s": 154, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0428, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:55:48", "start": "2026-08-05T07:00:06", "end": "2026-08-05T07:00:17", "elapsed_s": 11, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T06:56:03", "start": "2026-08-05T07:04:11", "end": "2026-08-05T07:05:44", "elapsed_s": 93, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0258, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:00:40", "start": "2026-08-05T07:04:11", "end": "2026-08-05T07:06:18", "elapsed_s": 127, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:01:19", "start": "2026-08-05T07:05:44", "end": "2026-08-05T07:06:45", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:05:47", "start": "2026-08-05T07:08:47", "end": "2026-08-05T07:22:37", "elapsed_s": 830, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:07:14", "start": "2026-08-05T07:10:20", "end": "2026-08-05T07:12:33", "elapsed_s": 133, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0369, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:07:37", "start": "2026-08-05T07:10:51", "end": "2026-08-05T07:22:34", "elapsed_s": 703, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1953, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:13:24", "start": "2026-08-05T07:15:28", "end": "2026-08-05T07:18:23", "elapsed_s": 175, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0486, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:13:49", "start": "2026-08-05T07:15:59", "end": "2026-08-05T07:18:25", "elapsed_s": 146, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0406, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:19:13", "start": "2026-08-05T07:22:07", "end": "2026-08-05T07:24:25", "elapsed_s": 138, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:19:15", "start": "2026-08-05T07:22:37", "end": "2026-08-05T07:24:31", "elapsed_s": 114, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0317, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:19:56", "start": "2026-08-05T07:22:37", "end": "2026-08-05T07:36:44", "elapsed_s": 847, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:22:36", "start": "2026-08-05T07:25:41", "end": "2026-08-05T07:30:27", "elapsed_s": 286, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0794, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:23:32", "start": "2026-08-05T07:25:41", "end": "2026-08-05T07:36:28", "elapsed_s": 647, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1797, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:24:27", "start": "2026-08-05T07:26:42", "end": "2026-08-05T07:30:24", "elapsed_s": 222, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0617, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:25:22", "start": "2026-08-05T07:27:44", "end": "2026-08-05T07:36:30", "elapsed_s": 526, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:30:29", "start": "2026-08-05T07:33:21", "end": "2026-08-05T07:36:24", "elapsed_s": 183, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:31:15", "start": "2026-08-05T07:35:24", "end": "2026-08-05T07:36:25", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:37:15", "start": "2026-08-05T07:39:59", "end": "2026-08-05T07:42:27", "elapsed_s": 148, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0411, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:37:17", "start": "2026-08-05T07:41:31", "end": "2026-08-05T07:43:32", "elapsed_s": 121, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0336, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:37:20", "start": "2026-08-05T07:43:03", "end": "2026-08-05T07:43:37", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:37:26", "start": "2026-08-05T07:43:03", "end": "2026-08-05T07:44:19", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:37:35", "start": "2026-08-05T07:47:08", "end": "2026-08-05T07:49:10", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:43:17", "start": "2026-08-05T07:49:41", "end": "2026-08-05T07:54:49", "elapsed_s": 308, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0856, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:43:40", "start": "2026-08-05T07:50:12", "end": "2026-08-05T07:55:31", "elapsed_s": 319, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0886, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:44:26", "start": "2026-08-05T07:50:12", "end": "2026-08-05T07:54:43", "elapsed_s": 271, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0753, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:45:10", "start": "2026-08-05T07:52:47", "end": "2026-08-05T08:00:13", "elapsed_s": 446, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:50:04", "start": "2026-08-05T07:52:47", "end": "2026-08-05T08:00:42", "elapsed_s": 475, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:54:46", "start": "2026-08-05T07:56:52", "end": "2026-08-05T08:00:13", "elapsed_s": 201, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0558, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:55:32", "start": "2026-08-05T07:57:54", "end": "2026-08-05T07:59:52", "elapsed_s": 118, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0328, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:55:42", "start": "2026-08-05T07:57:54", "end": "2026-08-05T07:59:52", "elapsed_s": 118, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0328, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T07:59:55", "start": "2026-08-05T08:01:58", "end": "2026-08-05T08:03:53", "elapsed_s": 115, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:00:14", "start": "2026-08-05T08:03:00", "end": "2026-08-05T08:03:53", "elapsed_s": 53, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:00:46", "start": "2026-08-05T08:05:03", "end": "2026-08-05T08:06:43", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:01:04", "start": "2026-08-05T08:05:03", "end": "2026-08-05T08:06:47", "elapsed_s": 104, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:01:34", "start": "2026-08-05T08:06:04", "end": "2026-08-05T08:06:43", "elapsed_s": 39, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:04:42", "start": "2026-08-05T08:07:35", "end": "2026-08-05T08:12:50", "elapsed_s": 315, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0875, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:04:51", "start": "2026-08-05T08:08:05", "end": "2026-08-05T08:12:54", "elapsed_s": 289, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0803, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:07:32", "start": "2026-08-05T08:09:37", "end": "2026-08-05T08:12:54", "elapsed_s": 197, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0547, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:07:36", "start": "2026-08-05T08:10:39", "end": "2026-08-05T08:24:11", "elapsed_s": 812, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:08:01", "start": "2026-08-05T08:11:09", "end": "2026-08-05T08:19:08", "elapsed_s": 479, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1331, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:13:39", "start": "2026-08-05T08:15:44", "end": "2026-08-05T08:18:32", "elapsed_s": 168, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0467, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:13:44", "start": "2026-08-05T08:16:14", "end": "2026-08-05T08:19:08", "elapsed_s": 174, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0483, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:13:44", "start": "2026-08-05T08:16:45", "end": "2026-08-05T08:19:08", "elapsed_s": 143, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:19:11", "start": "2026-08-05T08:21:51", "end": "2026-08-05T08:25:01", "elapsed_s": 190, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0528, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:19:22", "start": "2026-08-05T08:23:24", "end": "2026-08-05T08:25:01", "elapsed_s": 97, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:19:57", "start": "2026-08-05T08:23:24", "end": "2026-08-05T08:31:04", "elapsed_s": 460, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:19:58", "start": "2026-08-05T08:24:24", "end": "2026-08-05T08:31:03", "elapsed_s": 399, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:25:04", "start": "2026-08-05T08:27:59", "end": "2026-08-05T08:31:04", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:25:04", "start": "2026-08-05T08:29:31", "end": "2026-08-05T08:31:26", "elapsed_s": 115, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:25:51", "start": "2026-08-05T08:30:01", "end": "2026-08-05T08:31:01", "elapsed_s": 60, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:31:04", "start": "2026-08-05T08:34:06", "end": "2026-08-05T08:37:05", "elapsed_s": 179, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0497, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:31:55", "start": "2026-08-05T08:34:06", "end": "2026-08-05T08:37:08", "elapsed_s": 182, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0506, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:31:56", "start": "2026-08-05T08:38:12", "end": "2026-08-05T08:43:32", "elapsed_s": 320, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0889, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:32:00", "start": "2026-08-05T08:39:13", "end": "2026-08-05T08:42:02", "elapsed_s": 169, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0469, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:32:21", "start": "2026-08-05T08:39:13", "end": "2026-08-05T08:41:35", "elapsed_s": 142, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:37:56", "start": "2026-08-05T08:41:47", "end": "2026-08-05T08:43:10", "elapsed_s": 83, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0231, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:37:59", "start": "2026-08-05T08:42:17", "end": "2026-08-05T08:43:10", "elapsed_s": 53, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:42:27", "start": "2026-08-05T08:44:50", "end": "2026-08-05T08:49:09", "elapsed_s": 259, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0719, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:42:52", "start": "2026-08-05T08:46:53", "end": "2026-08-05T08:55:03", "elapsed_s": 490, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1361, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:43:59", "start": "2026-08-05T08:48:26", "end": "2026-08-05T08:49:09", "elapsed_s": 43, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:44:08", "start": "2026-08-05T08:48:56", "end": "2026-08-05T08:55:13", "elapsed_s": 377, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:44:23", "start": "2026-08-05T08:49:27", "end": "2026-08-05T09:07:22", "elapsed_s": 1075, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2986, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:50:01", "start": "2026-08-05T08:54:33", "end": "2026-08-05T08:56:01", "elapsed_s": 88, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:50:02", "start": "2026-08-05T08:54:33", "end": "2026-08-05T08:55:13", "elapsed_s": 40, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:55:16", "start": "2026-08-05T08:57:38", "end": "2026-08-05T09:01:15", "elapsed_s": 217, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:55:58", "start": "2026-08-05T08:58:08", "end": "2026-08-05T09:01:15", "elapsed_s": 187, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0519, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:56:03", "start": "2026-08-05T08:59:09", "end": "2026-08-05T09:07:19", "elapsed_s": 490, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1361, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T08:56:05", "start": "2026-08-05T08:59:39", "end": "2026-08-05T09:01:15", "elapsed_s": 96, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:01:17", "start": "2026-08-05T09:08:22", "end": "2026-08-05T09:10:35", "elapsed_s": 133, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0369, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:02:05", "start": "2026-08-05T09:08:22", "end": "2026-08-05T09:11:14", "elapsed_s": 172, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0478, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:02:06", "start": "2026-08-05T09:09:24", "end": "2026-08-05T09:13:22", "elapsed_s": 238, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0661, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:08:11", "start": "2026-08-05T09:10:55", "end": "2026-08-05T09:13:22", "elapsed_s": 147, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0408, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:08:15", "start": "2026-08-05T09:11:26", "end": "2026-08-05T09:12:10", "elapsed_s": 44, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:11:16", "start": "2026-08-05T09:14:30", "end": "2026-08-05T09:19:16", "elapsed_s": 286, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0794, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:11:24", "start": "2026-08-05T09:14:30", "end": "2026-08-05T09:23:20", "elapsed_s": 530, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:12:59", "start": "2026-08-05T09:15:01", "end": "2026-08-05T09:23:32", "elapsed_s": 511, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:14:10", "start": "2026-08-05T09:19:38", "end": "2026-08-05T09:23:20", "elapsed_s": 222, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0617, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:14:12", "start": "2026-08-05T09:20:09", "end": "2026-08-05T09:23:20", "elapsed_s": 191, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:20:06", "start": "2026-08-05T09:22:12", "end": "2026-08-05T09:23:24", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:24:10", "start": "2026-08-05T09:26:49", "end": "2026-08-05T09:30:30", "elapsed_s": 221, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0614, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:24:10", "start": "2026-08-05T09:26:49", "end": "2026-08-05T09:30:53", "elapsed_s": 244, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0678, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:24:11", "start": "2026-08-05T09:26:49", "end": "2026-08-05T09:30:30", "elapsed_s": 221, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0614, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:24:16", "start": "2026-08-05T09:27:20", "end": "2026-08-05T09:30:30", "elapsed_s": 190, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0528, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:24:24", "start": "2026-08-05T09:27:51", "end": "2026-08-05T09:30:30", "elapsed_s": 159, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:31:19", "start": "2026-08-05T09:34:00", "end": "2026-08-05T09:36:26", "elapsed_s": 146, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0406, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:31:20", "start": "2026-08-05T09:35:02", "end": "2026-08-05T09:36:26", "elapsed_s": 84, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0233, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:31:20", "start": "2026-08-05T09:37:36", "end": "2026-08-05T09:42:22", "elapsed_s": 286, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0794, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:31:21", "start": "2026-08-05T09:37:36", "end": "2026-08-05T09:42:22", "elapsed_s": 286, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0794, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:31:47", "start": "2026-08-05T09:38:38", "end": "2026-08-05T09:38:56", "elapsed_s": 18, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.005, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:37:16", "start": "2026-08-05T09:40:11", "end": "2026-08-05T10:00:30", "elapsed_s": 1219, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3386, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:37:16", "start": "2026-08-05T09:43:17", "end": "2026-08-05T09:48:25", "elapsed_s": 308, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0856, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:39:48", "start": "2026-08-05T09:43:17", "end": "2026-08-05T10:01:07", "elapsed_s": 1070, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2972, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:43:12", "start": "2026-08-05T09:45:19", "end": "2026-08-05T09:48:25", "elapsed_s": 186, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:43:13", "start": "2026-08-05T09:45:50", "end": "2026-08-05T09:52:40", "elapsed_s": 410, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:48:28", "start": "2026-08-05T09:51:59", "end": "2026-08-05T09:54:27", "elapsed_s": 148, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0411, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:49:16", "start": "2026-08-05T09:53:31", "end": "2026-08-05T09:54:30", "elapsed_s": 59, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:53:31", "start": "2026-08-05T09:55:33", "end": "2026-08-05T10:00:27", "elapsed_s": 294, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0817, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:55:18", "start": "2026-08-05T09:58:07", "end": "2026-08-05T10:12:24", "elapsed_s": 857, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2381, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T09:55:20", "start": "2026-08-05T09:59:08", "end": "2026-08-05T10:12:58", "elapsed_s": 830, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:01:17", "start": "2026-08-05T10:03:44", "end": "2026-08-05T10:06:30", "elapsed_s": 166, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:01:26", "start": "2026-08-05T10:03:44", "end": "2026-08-05T10:05:19", "elapsed_s": 95, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:01:59", "start": "2026-08-05T10:04:14", "end": "2026-08-05T10:06:30", "elapsed_s": 136, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0378, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:06:10", "start": "2026-08-05T10:10:55", "end": "2026-08-05T10:12:27", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:07:22", "start": "2026-08-05T10:11:26", "end": "2026-08-05T10:16:24", "elapsed_s": 298, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0828, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:07:24", "start": "2026-08-05T10:11:57", "end": "2026-08-05T10:15:43", "elapsed_s": 226, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0628, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:12:26", "start": "2026-08-05T10:15:32", "end": "2026-08-05T10:24:26", "elapsed_s": 534, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1483, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:13:19", "start": "2026-08-05T10:15:32", "end": "2026-08-05T10:18:28", "elapsed_s": 176, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0489, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:13:54", "start": "2026-08-05T10:17:04", "end": "2026-08-05T10:25:03", "elapsed_s": 479, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1331, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:16:25", "start": "2026-08-05T10:19:07", "end": "2026-08-05T10:24:26", "elapsed_s": 319, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0886, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:16:34", "start": "2026-08-05T10:19:38", "end": "2026-08-05T10:24:26", "elapsed_s": 288, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.08, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:19:19", "start": "2026-08-05T10:25:17", "end": "2026-08-05T10:30:30", "elapsed_s": 313, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0869, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:24:28", "start": "2026-08-05T10:28:22", "end": "2026-08-05T10:30:30", "elapsed_s": 128, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:25:16", "start": "2026-08-05T10:28:53", "end": "2026-08-05T10:30:48", "elapsed_s": 115, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:25:18", "start": "2026-08-05T10:28:53", "end": "2026-08-05T10:30:30", "elapsed_s": 97, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:25:57", "start": "2026-08-05T10:29:24", "end": "2026-08-05T10:30:30", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:30:33", "start": "2026-08-05T10:32:57", "end": "2026-08-05T10:36:32", "elapsed_s": 215, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:31:20", "start": "2026-08-05T10:35:00", "end": "2026-08-05T10:42:27", "elapsed_s": 447, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:31:20", "start": "2026-08-05T10:35:00", "end": "2026-08-05T10:53:58", "elapsed_s": 1138, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:31:26", "start": "2026-08-05T10:37:03", "end": "2026-08-05T10:42:27", "elapsed_s": 324, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.09, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:31:39", "start": "2026-08-05T10:38:04", "end": "2026-08-05T10:42:41", "elapsed_s": 277, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:37:24", "start": "2026-08-05T10:40:07", "end": "2026-08-05T10:42:25", "elapsed_s": 138, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:42:30", "start": "2026-08-05T10:47:56", "end": "2026-08-05T10:55:06", "elapsed_s": 430, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:43:16", "start": "2026-08-05T10:47:56", "end": "2026-08-05T10:48:29", "elapsed_s": 33, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:43:19", "start": "2026-08-05T10:48:27", "end": "2026-08-05T10:56:37", "elapsed_s": 490, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1361, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:43:33", "start": "2026-08-05T10:49:28", "end": "2026-08-05T10:53:51", "elapsed_s": 263, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0731, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:49:22", "start": "2026-08-05T10:51:31", "end": "2026-08-05T10:56:07", "elapsed_s": 276, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:54:43", "start": "2026-08-05T11:11:05", "end": "2026-08-05T11:18:53", "elapsed_s": 468, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.13, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:54:58", "start": "2026-08-05T11:14:08", "end": "2026-08-05T11:17:13", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:55:59", "start": "2026-08-05T11:14:08", "end": "2026-08-05T11:17:13", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:56:10", "start": "2026-08-05T11:14:39", "end": "2026-08-05T11:19:16", "elapsed_s": 277, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T10:57:30", "start": "2026-08-05T11:15:10", "end": "2026-08-05T11:18:57", "elapsed_s": 227, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0631, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:17:15", "start": "2026-08-05T11:20:17", "end": "2026-08-05T11:28:18", "elapsed_s": 481, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1336, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:18:06", "start": "2026-08-05T11:21:18", "end": "2026-08-05T11:23:22", "elapsed_s": 124, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:19:46", "start": "2026-08-05T11:22:20", "end": "2026-08-05T11:27:33", "elapsed_s": 313, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0869, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:19:47", "start": "2026-08-05T11:24:23", "end": "2026-08-05T11:27:31", "elapsed_s": 188, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0522, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:20:07", "start": "2026-08-05T11:25:24", "end": "2026-08-05T11:27:27", "elapsed_s": 123, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0342, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:24:11", "start": "2026-08-05T11:26:26", "end": "2026-08-05T11:27:31", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:28:17", "start": "2026-08-05T11:31:33", "end": "2026-08-05T11:38:24", "elapsed_s": 411, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:28:27", "start": "2026-08-05T11:32:34", "end": "2026-08-05T11:38:24", "elapsed_s": 350, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0972, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:28:29", "start": "2026-08-05T11:33:35", "end": "2026-08-05T11:38:24", "elapsed_s": 289, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0803, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:28:29", "start": "2026-08-05T11:33:35", "end": "2026-08-05T11:38:43", "elapsed_s": 308, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0856, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:29:08", "start": "2026-08-05T11:33:35", "end": "2026-08-05T11:38:26", "elapsed_s": 291, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0808, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:39:13", "start": "2026-08-05T11:42:18", "end": "2026-08-05T11:42:49", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:39:16", "start": "2026-08-05T11:42:18", "end": "2026-08-05T11:42:49", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:39:18", "start": "2026-08-05T11:44:22", "end": "2026-08-05T11:48:31", "elapsed_s": 249, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0692, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:39:18", "start": "2026-08-05T11:44:53", "end": "2026-08-05T11:49:23", "elapsed_s": 270, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.075, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:39:38", "start": "2026-08-05T11:45:56", "end": "2026-08-05T11:49:09", "elapsed_s": 193, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:42:52", "start": "2026-08-05T11:45:56", "end": "2026-08-05T11:49:25", "elapsed_s": 209, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0581, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:42:52", "start": "2026-08-05T11:45:56", "end": "2026-08-05T11:54:19", "elapsed_s": 503, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:49:21", "start": "2026-08-05T11:51:35", "end": "2026-08-05T11:55:11", "elapsed_s": 216, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.06, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:49:28", "start": "2026-08-05T11:52:06", "end": "2026-08-05T11:54:41", "elapsed_s": 155, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0431, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:50:00", "start": "2026-08-05T11:52:37", "end": "2026-08-05T11:54:19", "elapsed_s": 102, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:50:15", "start": "2026-08-05T11:52:37", "end": "2026-08-05T11:54:50", "elapsed_s": 133, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0369, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:54:22", "start": "2026-08-05T11:56:43", "end": "2026-08-05T12:04:35", "elapsed_s": 472, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:54:44", "start": "2026-08-05T11:57:14", "end": "2026-08-05T11:59:29", "elapsed_s": 135, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0375, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:55:12", "start": "2026-08-05T11:58:15", "end": "2026-08-05T12:01:20", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:55:43", "start": "2026-08-05T11:59:17", "end": "2026-08-05T11:59:29", "elapsed_s": 12, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T11:56:02", "start": "2026-08-05T12:00:49", "end": "2026-08-05T12:01:50", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:00:21", "start": "2026-08-05T12:02:51", "end": "2026-08-05T12:07:50", "elapsed_s": 299, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0831, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:00:22", "start": "2026-08-05T12:02:51", "end": "2026-08-05T12:04:33", "elapsed_s": 102, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:02:15", "start": "2026-08-05T12:04:23", "end": "2026-08-05T12:04:53", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:02:43", "start": "2026-08-05T12:05:24", "end": "2026-08-05T12:07:50", "elapsed_s": 146, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0406, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:05:23", "start": "2026-08-05T12:09:00", "end": "2026-08-05T12:16:06", "elapsed_s": 426, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:05:25", "start": "2026-08-05T12:09:00", "end": "2026-08-05T12:16:33", "elapsed_s": 453, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1258, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:05:52", "start": "2026-08-05T12:09:31", "end": "2026-08-05T12:16:06", "elapsed_s": 395, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:08:41", "start": "2026-08-05T12:13:08", "end": "2026-08-05T12:16:06", "elapsed_s": 178, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0494, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:08:42", "start": "2026-08-05T12:14:09", "end": "2026-08-05T12:16:33", "elapsed_s": 144, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.04, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:16:57", "start": "2026-08-05T12:19:14", "end": "2026-08-05T12:27:29", "elapsed_s": 495, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1375, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:17:00", "start": "2026-08-05T12:19:14", "end": "2026-08-05T12:27:59", "elapsed_s": 525, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1458, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:17:02", "start": "2026-08-05T12:19:45", "end": "2026-08-05T12:20:01", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:17:22", "start": "2026-08-05T12:19:45", "end": "2026-08-05T12:29:00", "elapsed_s": 555, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1542, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:17:24", "start": "2026-08-05T12:20:16", "end": "2026-08-05T12:28:30", "elapsed_s": 494, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:20:53", "start": "2026-08-05T12:23:21", "end": "2026-08-05T12:27:04", "elapsed_s": 223, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0619, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:27:32", "start": "2026-08-05T12:31:05", "end": "2026-08-05T12:35:48", "elapsed_s": 283, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0786, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:27:54", "start": "2026-08-05T12:32:37", "end": "2026-08-05T12:35:48", "elapsed_s": 191, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:28:51", "start": "2026-08-05T12:32:37", "end": "2026-08-05T12:38:07", "elapsed_s": 330, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0917, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:29:27", "start": "2026-08-05T12:34:40", "end": "2026-08-05T12:38:05", "elapsed_s": 205, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0569, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:29:55", "start": "2026-08-05T12:35:11", "end": "2026-08-05T12:38:05", "elapsed_s": 174, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0483, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:36:40", "start": "2026-08-05T12:39:17", "end": "2026-08-05T12:49:15", "elapsed_s": 598, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1661, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:36:45", "start": "2026-08-05T12:39:17", "end": "2026-08-05T12:49:18", "elapsed_s": 601, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1669, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:38:57", "start": "2026-08-05T12:41:19", "end": "2026-08-05T12:49:18", "elapsed_s": 479, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1331, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:38:58", "start": "2026-08-05T12:41:50", "end": "2026-08-05T12:45:27", "elapsed_s": 217, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:38:59", "start": "2026-08-05T12:42:21", "end": "2026-08-05T12:49:18", "elapsed_s": 417, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1158, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:46:17", "start": "2026-08-05T12:48:33", "end": "2026-08-05T12:49:04", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:49:55", "start": "2026-08-05T12:53:10", "end": "2026-08-05T12:54:11", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:50:07", "start": "2026-08-05T12:53:41", "end": "2026-08-05T12:58:40", "elapsed_s": 299, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0831, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:50:08", "start": "2026-08-05T12:53:41", "end": "2026-08-05T12:53:55", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:50:10", "start": "2026-08-05T12:56:45", "end": "2026-08-05T12:58:49", "elapsed_s": 124, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:50:12", "start": "2026-08-05T12:57:16", "end": "2026-08-05T12:59:29", "elapsed_s": 133, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0369, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:53:58", "start": "2026-08-05T12:57:47", "end": "2026-08-05T12:58:40", "elapsed_s": 53, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:55:08", "start": "2026-08-05T12:57:47", "end": "2026-08-05T12:58:40", "elapsed_s": 53, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:59:30", "start": "2026-08-05T13:02:24", "end": "2026-08-05T13:05:14", "elapsed_s": 170, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:59:32", "start": "2026-08-05T13:02:24", "end": "2026-08-05T13:05:37", "elapsed_s": 193, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:59:36", "start": "2026-08-05T13:02:24", "end": "2026-08-05T13:05:14", "elapsed_s": 170, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T12:59:40", "start": "2026-08-05T13:02:55", "end": "2026-08-05T13:06:00", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:00:22", "start": "2026-08-05T13:03:57", "end": "2026-08-05T13:05:14", "elapsed_s": 77, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:05:17", "start": "2026-08-05T13:07:32", "end": "2026-08-05T13:16:14", "elapsed_s": 522, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.145, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:06:06", "start": "2026-08-05T13:08:33", "end": "2026-08-05T13:16:17", "elapsed_s": 464, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:06:11", "start": "2026-08-05T13:09:34", "end": "2026-08-05T13:17:19", "elapsed_s": 465, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1292, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:06:28", "start": "2026-08-05T13:09:34", "end": "2026-08-05T13:16:14", "elapsed_s": 400, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:06:50", "start": "2026-08-05T13:10:05", "end": "2026-08-05T13:16:14", "elapsed_s": 369, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:17:05", "start": "2026-08-05T13:19:53", "end": "2026-08-05T13:20:17", "elapsed_s": 24, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:17:06", "start": "2026-08-05T13:19:53", "end": "2026-08-05T13:20:21", "elapsed_s": 28, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:17:07", "start": "2026-08-05T13:26:33", "end": "2026-08-05T13:41:58", "elapsed_s": 925, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2569, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:17:09", "start": "2026-08-05T13:28:37", "end": "2026-08-05T13:41:23", "elapsed_s": 766, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:18:15", "start": "2026-08-05T13:28:37", "end": "2026-08-05T13:41:58", "elapsed_s": 801, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:20:20", "start": "2026-08-05T13:31:42", "end": "2026-08-05T13:34:48", "elapsed_s": 186, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:21:12", "start": "2026-08-05T13:32:13", "end": "2026-08-05T13:37:58", "elapsed_s": 345, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0958, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:35:38", "start": "2026-08-05T13:38:24", "end": "2026-08-05T13:41:23", "elapsed_s": 179, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0497, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:38:48", "start": "2026-08-05T13:46:35", "end": "2026-08-05T14:22:58", "elapsed_s": 2183, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6064, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:41:25", "start": "2026-08-05T13:46:35", "end": "2026-08-05T13:48:45", "elapsed_s": 130, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0361, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:42:00", "start": "2026-08-05T13:46:35", "end": "2026-08-05T13:49:30", "elapsed_s": 175, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0486, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:42:16", "start": "2026-08-05T13:46:35", "end": "2026-08-05T13:49:08", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:42:52", "start": "2026-08-05T13:49:11", "end": "2026-08-05T13:52:57", "elapsed_s": 226, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0628, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:49:34", "start": "2026-08-05T13:53:48", "end": "2026-08-05T13:56:12", "elapsed_s": 144, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.04, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:49:59", "start": "2026-08-05T13:54:49", "end": "2026-08-05T14:31:54", "elapsed_s": 2225, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:50:26", "start": "2026-08-05T13:55:19", "end": "2026-08-05T14:32:37", "elapsed_s": 2238, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:53:00", "start": "2026-08-05T13:55:19", "end": "2026-08-05T13:56:47", "elapsed_s": 88, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:56:50", "start": "2026-08-05T13:58:55", "end": "2026-08-05T14:21:35", "elapsed_s": 1360, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3778, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T13:57:05", "start": "2026-08-05T13:59:26", "end": "2026-08-05T14:22:38", "elapsed_s": 1392, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3867, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T14:22:26", "start": "2026-08-05T14:27:18", "end": "2026-08-05T14:45:27", "elapsed_s": 1089, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T14:23:00", "start": "2026-08-05T14:27:49", "end": "2026-08-05T14:40:06", "elapsed_s": 737, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T14:23:29", "start": "2026-08-05T14:28:51", "end": "2026-08-05T14:39:43", "elapsed_s": 652, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1811, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T14:32:46", "start": "2026-08-05T14:39:15", "end": "2026-08-05T15:06:00", "elapsed_s": 1605, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4458, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T14:33:30", "start": "2026-08-05T14:40:48", "end": "2026-08-05T14:42:52", "elapsed_s": 124, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T14:40:37", "start": "2026-08-05T14:43:54", "end": "2026-08-05T15:32:41", "elapsed_s": 2927, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T14:41:01", "start": "2026-08-05T14:44:25", "end": "2026-08-05T15:32:44", "elapsed_s": 2899, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T14:43:44", "start": "2026-08-05T14:46:29", "end": "2026-08-05T14:51:50", "elapsed_s": 321, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0892, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T14:46:17", "start": "2026-08-05T14:51:36", "end": "2026-08-05T14:51:48", "elapsed_s": 12, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T14:52:37", "start": "2026-08-05T14:55:43", "end": "2026-08-05T15:06:00", "elapsed_s": 617, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1714, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T14:52:42", "start": "2026-08-05T15:24:47", "end": "2026-08-05T15:27:56", "elapsed_s": 189, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T15:06:52", "start": "2026-08-05T15:26:20", "end": "2026-08-05T15:27:36", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T15:06:53", "start": "2026-08-05T15:26:20", "end": "2026-08-05T15:32:41", "elapsed_s": 381, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T15:27:58", "start": "2026-08-05T15:30:57", "end": "2026-08-05T15:32:41", "elapsed_s": 104, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T15:28:25", "start": "2026-08-05T15:31:27", "end": "2026-08-05T15:32:06", "elapsed_s": 39, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T15:32:43", "start": "2026-08-05T16:13:40", "end": "2026-08-05T16:52:08", "elapsed_s": 2308, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6411, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T15:32:57", "start": "2026-08-05T16:13:40", "end": "2026-08-05T16:25:03", "elapsed_s": 683, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1897, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T15:33:33", "start": "2026-08-05T16:13:40", "end": "2026-08-05T16:15:20", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T15:33:40", "start": "2026-08-05T16:14:10", "end": "2026-08-05T16:15:15", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T15:33:40", "start": "2026-08-05T16:14:10", "end": "2026-08-05T16:52:01", "elapsed_s": 2271, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6308, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:15:16", "start": "2026-08-05T16:21:26", "end": "2026-08-05T16:24:26", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:16:18", "start": "2026-08-05T16:25:33", "end": "2026-08-05T16:30:26", "elapsed_s": 293, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0814, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:25:06", "start": "2026-08-05T16:31:42", "end": "2026-08-05T16:34:17", "elapsed_s": 155, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0431, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:25:15", "start": "2026-08-05T16:33:46", "end": "2026-08-05T16:51:55", "elapsed_s": 1089, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:31:16", "start": "2026-08-05T16:35:19", "end": "2026-08-05T16:44:09", "elapsed_s": 530, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:35:07", "start": "2026-08-05T16:41:29", "end": "2026-08-05T16:42:02", "elapsed_s": 33, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:42:51", "start": "2026-08-05T16:46:05", "end": "2026-08-05T16:51:52", "elapsed_s": 347, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0964, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:45:00", "start": "2026-08-05T16:48:39", "end": "2026-08-05T16:52:01", "elapsed_s": 202, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0561, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:51:54", "start": "2026-08-05T19:45:33", "end": "2026-08-05T19:46:59", "elapsed_s": 86, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:52:48", "start": "2026-08-05T19:45:33", "end": "2026-08-05T19:56:29", "elapsed_s": 656, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1822, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:52:51", "start": "2026-08-05T19:46:05", "end": "2026-08-05T20:20:21", "elapsed_s": 2056, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5711, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:52:51", "start": "2026-08-05T19:46:05", "end": "2026-08-05T20:25:48", "elapsed_s": 2383, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6619, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T16:52:59", "start": "2026-08-05T19:46:05", "end": "2026-08-05T20:25:52", "elapsed_s": 2387, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6631, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T19:47:49", "start": "2026-08-05T19:51:15", "end": "2026-08-05T20:19:57", "elapsed_s": 1722, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4783, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T19:57:20", "start": "2026-08-05T19:59:29", "end": "2026-08-05T20:16:11", "elapsed_s": 1002, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2783, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T20:17:00", "start": "2026-08-05T20:19:31", "end": "2026-08-05T20:19:41", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T20:20:32", "start": "2026-08-05T20:22:41", "end": "2026-08-05T20:24:53", "elapsed_s": 132, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0367, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T20:20:49", "start": "2026-08-05T20:23:49", "end": "2026-08-05T20:24:53", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T20:21:19", "start": "2026-08-05T20:24:21", "end": "2026-08-05T20:25:25", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T20:25:46", "start": "2026-08-05T21:01:26", "end": "2026-08-05T21:02:39", "elapsed_s": 73, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0203, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T20:25:51", "start": "2026-08-05T21:01:26", "end": "2026-08-05T21:02:41", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T20:25:51", "start": "2026-08-05T21:01:26", "end": "2026-08-05T21:02:44", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T20:26:21", "start": "2026-08-05T21:01:26", "end": "2026-08-05T21:02:44", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T20:26:46", "start": "2026-08-05T21:01:26", "end": "2026-08-05T21:02:48", "elapsed_s": 82, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0228, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T21:03:28", "start": "2026-08-05T22:42:18", "end": "2026-08-05T22:43:00", "elapsed_s": 42, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T21:03:34", "start": "2026-08-05T22:42:18", "end": "2026-08-05T23:09:18", "elapsed_s": 1620, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.45, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T21:03:36", "start": "2026-08-05T22:42:49", "end": "2026-08-06T00:03:07", "elapsed_s": 4818, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.3383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T21:03:39", "start": "2026-08-05T22:42:49", "end": "2026-08-05T23:32:33", "elapsed_s": 2984, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T21:03:39", "start": "2026-08-05T22:44:55", "end": "2026-08-06T00:03:10", "elapsed_s": 4695, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.3042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T22:43:56", "start": "2026-08-05T22:45:58", "end": "2026-08-05T22:48:36", "elapsed_s": 158, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0439, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T22:49:28", "start": "2026-08-05T22:51:40", "end": "2026-08-05T22:55:57", "elapsed_s": 257, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0714, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T22:56:47", "start": "2026-08-05T22:58:52", "end": "2026-08-05T23:08:56", "elapsed_s": 604, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1678, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T23:09:47", "start": "2026-08-05T23:12:13", "end": "2026-08-05T23:19:08", "elapsed_s": 415, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T23:10:09", "start": "2026-08-05T23:12:44", "end": "2026-08-05T23:33:37", "elapsed_s": 1253, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3481, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T23:19:10", "start": "2026-08-05T23:25:15", "end": "2026-08-05T23:30:20", "elapsed_s": 305, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0847, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T23:30:23", "start": "2026-08-05T23:33:36", "end": "2026-08-06T02:16:12", "elapsed_s": 9756, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 2.71, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T23:33:26", "start": "2026-08-05T23:35:39", "end": "2026-08-05T23:38:39", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T23:34:32", "start": "2026-08-05T23:36:41", "end": "2026-08-05T23:38:39", "elapsed_s": 118, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0328, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T23:39:29", "start": "2026-08-05T23:48:39", "end": "2026-08-06T00:03:10", "elapsed_s": 871, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T23:39:30", "start": "2026-08-05T23:48:39", "end": "2026-08-05T23:54:20", "elapsed_s": 341, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0947, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-05T23:55:11", "start": "2026-08-06T06:54:33", "end": "2026-08-06T07:16:08", "elapsed_s": 1295, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T00:04:01", "start": "2026-08-06T06:56:07", "end": "2026-08-06T07:16:38", "elapsed_s": 1231, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T00:04:03", "start": "2026-08-06T06:56:07", "end": "2026-08-06T06:58:57", "elapsed_s": 170, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T00:04:03", "start": "2026-08-06T06:58:43", "end": "2026-08-06T06:58:59", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T02:17:06", "start": "2026-08-06T07:01:17", "end": "2026-08-06T10:11:18", "elapsed_s": 11401, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.1669, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T06:59:50", "start": "2026-08-06T07:02:50", "end": "2026-08-06T12:15:40", "elapsed_s": 18770, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.2139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T06:59:57", "start": "2026-08-06T07:02:50", "end": "2026-08-06T11:14:31", "elapsed_s": 15101, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.1947, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T07:16:59", "start": "2026-08-06T07:20:13", "end": "2026-08-06T07:29:31", "elapsed_s": 558, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.155, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T07:17:36", "start": "2026-08-06T07:20:43", "end": "2026-08-06T11:04:59", "elapsed_s": 13456, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.7378, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T07:30:25", "start": "2026-08-06T07:33:32", "end": "2026-08-06T07:38:15", "elapsed_s": 283, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0786, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T07:39:08", "start": "2026-08-06T07:41:46", "end": "2026-08-06T11:14:08", "elapsed_s": 12742, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.5394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T10:11:20", "start": "2026-08-06T10:18:08", "end": "2026-08-06T10:36:52", "elapsed_s": 1124, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T10:37:47", "start": "2026-08-06T10:40:47", "end": "2026-08-06T11:23:54", "elapsed_s": 2587, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.7186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T11:05:53", "start": "2026-08-06T11:09:34", "end": "2026-08-06T11:14:53", "elapsed_s": 319, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0886, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T11:15:03", "start": "2026-08-06T11:17:15", "end": "2026-08-06T12:15:01", "elapsed_s": 3466, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9628, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T11:15:26", "start": "2026-08-06T11:25:53", "end": "2026-08-06T11:26:54", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T11:15:46", "start": "2026-08-06T11:28:02", "end": "2026-08-06T11:52:23", "elapsed_s": 1461, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T11:24:46", "start": "2026-08-06T11:28:33", "end": "2026-08-06T11:41:06", "elapsed_s": 753, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T11:27:47", "start": "2026-08-06T11:31:50", "end": "2026-08-06T11:52:23", "elapsed_s": 1233, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T11:42:01", "start": "2026-08-06T11:50:48", "end": "2026-08-06T11:53:37", "elapsed_s": 169, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0469, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T11:53:14", "start": "2026-08-06T11:56:08", "end": "2026-08-06T12:01:34", "elapsed_s": 326, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0906, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T11:53:16", "start": "2026-08-06T11:56:39", "end": "2026-08-06T12:00:57", "elapsed_s": 258, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0717, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T11:54:28", "start": "2026-08-06T11:56:39", "end": "2026-08-06T12:31:28", "elapsed_s": 2089, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.5803, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:01:52", "start": "2026-08-06T12:06:30", "end": "2026-08-06T12:06:35", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:02:29", "start": "2026-08-06T12:06:30", "end": "2026-08-06T12:08:53", "elapsed_s": 143, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:06:37", "start": "2026-08-06T12:09:14", "end": "2026-08-06T12:10:46", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:09:44", "start": "2026-08-06T12:11:52", "end": "2026-08-06T12:16:05", "elapsed_s": 253, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0703, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:11:40", "start": "2026-08-06T12:16:46", "end": "2026-08-06T13:05:54", "elapsed_s": 2948, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:15:54", "start": "2026-08-06T12:20:01", "end": "2026-08-06T12:32:40", "elapsed_s": 759, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:16:29", "start": "2026-08-06T12:20:01", "end": "2026-08-06T13:35:56", "elapsed_s": 4555, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.2653, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:16:58", "start": "2026-08-06T12:26:07", "end": "2026-08-06T13:14:45", "elapsed_s": 2918, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.8106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:32:21", "start": "2026-08-06T12:34:56", "end": "2026-08-06T12:34:59", "elapsed_s": 3, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:32:42", "start": "2026-08-06T12:36:34", "end": "2026-08-06T12:39:34", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:35:52", "start": "2026-08-06T12:38:12", "end": "2026-08-06T12:39:07", "elapsed_s": 55, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:39:59", "start": "2026-08-06T12:49:05", "end": "2026-08-06T13:13:45", "elapsed_s": 1480, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.4111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T12:40:25", "start": "2026-08-06T12:55:03", "end": "2026-08-06T13:12:26", "elapsed_s": 1043, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2897, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T13:06:46", "start": "2026-08-06T13:13:28", "end": "2026-08-06T13:14:15", "elapsed_s": 47, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T13:12:29", "start": "2026-08-06T13:15:32", "end": "2026-08-06T13:35:56", "elapsed_s": 1224, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.34, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T13:14:36", "start": "2026-08-06T13:18:38", "end": "2026-08-06T14:12:22", "elapsed_s": 3224, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8956, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T13:15:05", "start": "2026-08-06T13:19:41", "end": "2026-08-06T17:13:10", "elapsed_s": 14009, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.8914, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T13:15:36", "start": "2026-08-06T13:22:47", "end": "2026-08-06T17:13:10", "elapsed_s": 13823, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.8397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T13:36:48", "start": "2026-08-06T13:39:08", "end": "2026-08-06T14:11:32", "elapsed_s": 1944, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.54, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T13:36:49", "start": "2026-08-06T13:40:09", "end": "2026-08-06T14:11:53", "elapsed_s": 1904, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T14:12:22", "start": "2026-08-06T14:15:35", "end": "2026-08-06T14:29:04", "elapsed_s": 809, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2247, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T14:12:49", "start": "2026-08-06T14:15:35", "end": "2026-08-06T14:29:24", "elapsed_s": 829, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T14:13:14", "start": "2026-08-06T14:15:35", "end": "2026-08-06T14:19:24", "elapsed_s": 229, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0636, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T14:19:27", "start": "2026-08-06T14:23:10", "end": "2026-08-06T14:29:02", "elapsed_s": 352, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0978, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T14:29:08", "start": "2026-08-06T14:31:16", "end": "2026-08-06T14:43:41", "elapsed_s": 745, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2069, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T14:29:52", "start": "2026-08-06T14:35:49", "end": "2026-08-06T14:43:41", "elapsed_s": 472, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T14:30:16", "start": "2026-08-06T14:41:31", "end": "2026-08-06T14:43:41", "elapsed_s": 130, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0361, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T14:43:42", "start": "2026-08-06T14:47:38", "end": "2026-08-06T14:48:13", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T14:44:30", "start": "2026-08-06T14:56:19", "end": "2026-08-06T15:27:57", "elapsed_s": 1898, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T14:44:31", "start": "2026-08-06T14:58:30", "end": "2026-08-06T15:27:30", "elapsed_s": 1740, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.4833, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T14:49:12", "start": "2026-08-06T15:00:38", "end": "2026-08-06T15:00:57", "elapsed_s": 19, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T15:01:47", "start": "2026-08-06T15:07:17", "end": "2026-08-06T15:28:35", "elapsed_s": 1278, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.355, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T15:28:20", "start": "2026-08-06T15:31:00", "end": "2026-08-06T16:55:48", "elapsed_s": 5088, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.4133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T15:28:54", "start": "2026-08-06T15:31:31", "end": "2026-08-06T16:02:29", "elapsed_s": 1858, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T15:29:26", "start": "2026-08-06T15:31:31", "end": "2026-08-06T15:39:13", "elapsed_s": 462, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T15:40:07", "start": "2026-08-06T15:44:45", "end": "2026-08-06T16:55:15", "elapsed_s": 4230, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T16:02:31", "start": "2026-08-06T16:04:48", "end": "2026-08-06T16:13:55", "elapsed_s": 547, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1519, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T16:14:46", "start": "2026-08-06T16:18:21", "end": "2026-08-06T17:10:30", "elapsed_s": 3129, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8692, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T16:56:06", "start": "2026-08-06T16:58:29", "end": "2026-08-06T17:00:43", "elapsed_s": 134, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T16:56:38", "start": "2026-08-06T17:00:11", "end": "2026-08-06T17:12:24", "elapsed_s": 733, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T17:01:37", "start": "2026-08-06T17:04:37", "end": "2026-08-06T17:10:52", "elapsed_s": 375, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T17:10:53", "start": "2026-08-06T17:14:23", "end": "2026-08-06T19:51:52", "elapsed_s": 9449, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.6247, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T17:11:23", "start": "2026-08-06T17:15:54", "end": "2026-08-06T17:22:15", "elapsed_s": 381, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T17:13:16", "start": "2026-08-06T17:20:48", "end": "2026-08-06T19:51:49", "elapsed_s": 9061, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.5169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T17:14:05", "start": "2026-08-06T17:21:38", "end": "2026-08-06T17:25:01", "elapsed_s": 203, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0564, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T17:14:07", "start": "2026-08-06T17:24:24", "end": "2026-08-06T19:51:49", "elapsed_s": 8845, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.4569, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T17:23:08", "start": "2026-08-06T17:30:24", "end": "2026-08-06T18:25:10", "elapsed_s": 3286, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.9128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T17:25:56", "start": "2026-08-06T17:30:24", "end": "2026-08-06T17:50:54", "elapsed_s": 1230, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3417, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T17:51:46", "start": "2026-08-06T17:59:53", "end": "2026-08-06T19:02:27", "elapsed_s": 3754, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.0428, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T18:26:09", "start": "2026-08-06T18:28:19", "end": "2026-08-06T18:31:03", "elapsed_s": 164, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0456, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T18:31:57", "start": "2026-08-06T18:36:35", "end": "2026-08-06T18:55:27", "elapsed_s": 1132, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T18:56:21", "start": "2026-08-06T19:11:47", "end": "2026-08-06T19:51:48", "elapsed_s": 2401, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6669, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T19:03:23", "start": "2026-08-06T19:12:50", "end": "2026-08-06T19:51:48", "elapsed_s": 2338, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6494, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T19:51:52", "start": "2026-08-06T20:00:08", "end": "2026-08-06T20:08:00", "elapsed_s": 472, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T19:52:41", "start": "2026-08-06T20:00:08", "end": "2026-08-06T20:08:00", "elapsed_s": 472, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T19:52:41", "start": "2026-08-06T20:00:08", "end": "2026-08-06T20:08:03", "elapsed_s": 475, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T19:52:42", "start": "2026-08-06T20:00:42", "end": "2026-08-06T20:10:52", "elapsed_s": 610, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1694, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T19:52:46", "start": "2026-08-06T20:01:45", "end": "2026-08-06T20:31:21", "elapsed_s": 1776, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4933, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:08:03", "start": "2026-08-06T20:10:38", "end": "2026-08-06T20:20:52", "elapsed_s": 614, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1706, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:08:52", "start": "2026-08-06T20:11:09", "end": "2026-08-06T20:22:06", "elapsed_s": 657, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1825, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:08:59", "start": "2026-08-06T20:11:43", "end": "2026-08-06T20:20:55", "elapsed_s": 552, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1533, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:11:48", "start": "2026-08-06T20:15:02", "end": "2026-08-06T20:20:52", "elapsed_s": 350, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0972, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:20:54", "start": "2026-08-06T20:23:46", "end": "2026-08-06T20:32:25", "elapsed_s": 519, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:21:41", "start": "2026-08-06T20:24:50", "end": "2026-08-06T20:32:57", "elapsed_s": 487, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:21:50", "start": "2026-08-06T20:25:22", "end": "2026-08-06T20:33:29", "elapsed_s": 487, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:23:00", "start": "2026-08-06T20:25:22", "end": "2026-08-06T20:32:57", "elapsed_s": 455, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:32:15", "start": "2026-08-06T20:34:35", "end": "2026-08-06T20:43:03", "elapsed_s": 508, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1411, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:32:28", "start": "2026-08-06T20:34:35", "end": "2026-08-06T20:43:03", "elapsed_s": 508, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1411, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:33:50", "start": "2026-08-06T20:36:17", "end": "2026-08-06T20:42:59", "elapsed_s": 402, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:33:55", "start": "2026-08-06T20:36:17", "end": "2026-08-06T20:43:03", "elapsed_s": 406, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:34:26", "start": "2026-08-06T20:37:21", "end": "2026-08-06T20:43:29", "elapsed_s": 368, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:43:02", "start": "2026-08-06T20:45:35", "end": "2026-08-06T20:52:56", "elapsed_s": 441, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:43:54", "start": "2026-08-06T20:46:07", "end": "2026-08-06T20:52:59", "elapsed_s": 412, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:43:55", "start": "2026-08-06T20:46:38", "end": "2026-08-06T20:52:56", "elapsed_s": 378, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.105, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:43:56", "start": "2026-08-06T20:46:38", "end": "2026-08-06T20:52:59", "elapsed_s": 381, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:44:20", "start": "2026-08-06T20:46:38", "end": "2026-08-06T20:52:59", "elapsed_s": 381, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:53:48", "start": "2026-08-06T20:58:46", "end": "2026-08-06T21:03:00", "elapsed_s": 254, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0706, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:53:49", "start": "2026-08-06T20:59:17", "end": "2026-08-06T21:03:00", "elapsed_s": 223, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0619, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:53:50", "start": "2026-08-06T20:59:48", "end": "2026-08-06T21:03:01", "elapsed_s": 193, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:53:50", "start": "2026-08-06T21:00:20", "end": "2026-08-06T21:03:00", "elapsed_s": 160, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0444, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T20:53:53", "start": "2026-08-06T21:04:05", "end": "2026-08-06T21:12:56", "elapsed_s": 531, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1475, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:03:51", "start": "2026-08-06T21:06:11", "end": "2026-08-06T21:12:54", "elapsed_s": 403, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:03:51", "start": "2026-08-06T21:06:11", "end": "2026-08-06T21:14:08", "elapsed_s": 477, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1325, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:03:52", "start": "2026-08-06T21:07:17", "end": "2026-08-06T21:12:56", "elapsed_s": 339, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0942, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:03:53", "start": "2026-08-06T21:07:17", "end": "2026-08-06T21:12:56", "elapsed_s": 339, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0942, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:13:47", "start": "2026-08-06T21:17:47", "end": "2026-08-06T21:23:58", "elapsed_s": 371, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:13:47", "start": "2026-08-06T21:17:47", "end": "2026-08-06T21:24:27", "elapsed_s": 400, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:13:48", "start": "2026-08-06T21:17:47", "end": "2026-08-06T21:35:23", "elapsed_s": 1056, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2933, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:13:50", "start": "2026-08-06T21:17:47", "end": "2026-08-06T21:23:58", "elapsed_s": 371, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:15:01", "start": "2026-08-06T21:17:47", "end": "2026-08-06T21:23:58", "elapsed_s": 371, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:24:01", "start": "2026-08-06T21:26:43", "end": "2026-08-06T21:27:45", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:24:28", "start": "2026-08-06T21:27:14", "end": "2026-08-06T21:35:23", "elapsed_s": 489, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:24:49", "start": "2026-08-06T21:27:46", "end": "2026-08-06T21:35:26", "elapsed_s": 460, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:24:53", "start": "2026-08-06T21:27:46", "end": "2026-08-06T21:35:23", "elapsed_s": 457, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:27:48", "start": "2026-08-06T21:29:50", "end": "2026-08-06T21:35:23", "elapsed_s": 333, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0925, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:35:25", "start": "2026-08-06T21:37:43", "end": "2026-08-06T21:39:17", "elapsed_s": 94, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:36:14", "start": "2026-08-06T21:40:21", "end": "2026-08-06T21:43:34", "elapsed_s": 193, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:36:15", "start": "2026-08-06T21:41:25", "end": "2026-08-06T21:44:07", "elapsed_s": 162, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.045, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:36:17", "start": "2026-08-06T21:41:57", "end": "2026-08-06T21:43:36", "elapsed_s": 99, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:36:20", "start": "2026-08-06T21:41:57", "end": "2026-08-06T21:45:44", "elapsed_s": 227, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0631, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:40:14", "start": "2026-08-06T21:43:02", "end": "2026-08-06T21:44:39", "elapsed_s": 97, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:44:25", "start": "2026-08-06T21:49:32", "end": "2026-08-06T21:50:49", "elapsed_s": 77, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:44:28", "start": "2026-08-06T21:50:04", "end": "2026-08-06T21:50:49", "elapsed_s": 45, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:45:04", "start": "2026-08-06T21:51:09", "end": "2026-08-06T21:54:25", "elapsed_s": 196, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0544, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:45:30", "start": "2026-08-06T21:51:09", "end": "2026-08-06T21:55:28", "elapsed_s": 259, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0719, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:46:35", "start": "2026-08-06T21:51:09", "end": "2026-08-06T22:10:32", "elapsed_s": 1163, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3231, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:51:44", "start": "2026-08-06T21:53:53", "end": "2026-08-06T21:54:56", "elapsed_s": 63, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:51:44", "start": "2026-08-06T21:54:25", "end": "2026-08-06T21:54:26", "elapsed_s": 1, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:54:29", "start": "2026-08-06T21:58:15", "end": "2026-08-06T21:59:53", "elapsed_s": 98, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:55:00", "start": "2026-08-06T21:59:24", "end": "2026-08-06T22:08:55", "elapsed_s": 571, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1586, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:55:17", "start": "2026-08-06T21:59:24", "end": "2026-08-06T21:59:58", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T21:55:30", "start": "2026-08-06T21:59:57", "end": "2026-08-06T22:09:27", "elapsed_s": 570, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1583, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:00:46", "start": "2026-08-06T22:03:18", "end": "2026-08-06T22:08:20", "elapsed_s": 302, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0839, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:00:54", "start": "2026-08-06T22:03:51", "end": "2026-08-06T22:11:05", "elapsed_s": 434, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1206, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:08:25", "start": "2026-08-06T22:10:33", "end": "2026-08-06T22:17:26", "elapsed_s": 413, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:09:00", "start": "2026-08-06T22:12:12", "end": "2026-08-06T22:17:26", "elapsed_s": 314, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0872, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:10:19", "start": "2026-08-06T22:13:17", "end": "2026-08-06T22:17:45", "elapsed_s": 268, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0744, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:11:35", "start": "2026-08-06T22:13:49", "end": "2026-08-06T22:17:26", "elapsed_s": 217, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:11:59", "start": "2026-08-06T22:16:04", "end": "2026-08-06T22:17:47", "elapsed_s": 103, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0286, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:17:32", "start": "2026-08-06T22:22:43", "end": "2026-08-06T22:25:48", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:18:22", "start": "2026-08-06T22:22:43", "end": "2026-08-06T22:26:04", "elapsed_s": 201, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0558, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:18:22", "start": "2026-08-06T22:22:43", "end": "2026-08-06T22:28:45", "elapsed_s": 362, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:18:38", "start": "2026-08-06T22:23:17", "end": "2026-08-06T22:25:48", "elapsed_s": 151, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:18:40", "start": "2026-08-06T22:24:24", "end": "2026-08-06T22:34:02", "elapsed_s": 578, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1606, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:26:08", "start": "2026-08-06T22:28:13", "end": "2026-08-06T22:34:02", "elapsed_s": 349, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0969, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:26:39", "start": "2026-08-06T22:29:54", "end": "2026-08-06T22:34:16", "elapsed_s": 262, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0728, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:26:42", "start": "2026-08-06T22:29:54", "end": "2026-08-06T22:32:08", "elapsed_s": 134, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:29:42", "start": "2026-08-06T22:32:09", "end": "2026-08-06T22:34:02", "elapsed_s": 113, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0314, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:33:00", "start": "2026-08-06T22:35:23", "end": "2026-08-06T22:35:30", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:34:52", "start": "2026-08-06T22:37:02", "end": "2026-08-06T22:43:30", "elapsed_s": 388, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:34:54", "start": "2026-08-06T22:37:02", "end": "2026-08-06T22:42:10", "elapsed_s": 308, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0856, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:34:59", "start": "2026-08-06T22:37:34", "end": "2026-08-06T22:42:10", "elapsed_s": 276, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:35:16", "start": "2026-08-06T22:38:07", "end": "2026-08-06T22:42:10", "elapsed_s": 243, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0675, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:36:19", "start": "2026-08-06T22:40:52", "end": "2026-08-06T22:42:27", "elapsed_s": 95, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:42:31", "start": "2026-08-06T22:45:37", "end": "2026-08-06T22:51:29", "elapsed_s": 352, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0978, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:43:02", "start": "2026-08-06T22:45:37", "end": "2026-08-06T22:56:12", "elapsed_s": 635, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1764, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:43:03", "start": "2026-08-06T22:45:37", "end": "2026-08-06T22:55:40", "elapsed_s": 603, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1675, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:43:07", "start": "2026-08-06T22:45:37", "end": "2026-08-06T22:56:43", "elapsed_s": 666, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.185, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:44:21", "start": "2026-08-06T22:47:14", "end": "2026-08-06T22:50:27", "elapsed_s": 193, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:51:22", "start": "2026-08-06T22:53:35", "end": "2026-08-06T22:55:09", "elapsed_s": 94, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:51:32", "start": "2026-08-06T22:53:35", "end": "2026-08-06T22:53:53", "elapsed_s": 18, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.005, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:54:45", "start": "2026-08-06T22:57:49", "end": "2026-08-06T23:03:14", "elapsed_s": 325, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0903, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:55:12", "start": "2026-08-06T22:57:49", "end": "2026-08-06T23:07:02", "elapsed_s": 553, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:55:43", "start": "2026-08-06T22:57:49", "end": "2026-08-06T22:58:09", "elapsed_s": 20, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0056, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:57:03", "start": "2026-08-06T22:59:25", "end": "2026-08-06T23:03:57", "elapsed_s": 272, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0756, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:57:34", "start": "2026-08-06T23:00:34", "end": "2026-08-06T23:03:57", "elapsed_s": 203, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0564, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T22:59:00", "start": "2026-08-06T23:01:06", "end": "2026-08-06T23:03:57", "elapsed_s": 171, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0475, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:04:07", "start": "2026-08-06T23:07:04", "end": "2026-08-06T23:13:55", "elapsed_s": 411, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:04:48", "start": "2026-08-06T23:07:36", "end": "2026-08-06T23:13:55", "elapsed_s": 379, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:04:49", "start": "2026-08-06T23:09:11", "end": "2026-08-06T23:13:55", "elapsed_s": 284, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0789, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:04:49", "start": "2026-08-06T23:09:11", "end": "2026-08-06T23:13:55", "elapsed_s": 284, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0789, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:07:54", "start": "2026-08-06T23:10:45", "end": "2026-08-06T23:15:02", "elapsed_s": 257, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0714, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:14:45", "start": "2026-08-06T23:17:42", "end": "2026-08-06T23:18:43", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:14:46", "start": "2026-08-06T23:17:42", "end": "2026-08-06T23:19:14", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:14:47", "start": "2026-08-06T23:17:42", "end": "2026-08-06T23:22:08", "elapsed_s": 266, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0739, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:14:47", "start": "2026-08-06T23:17:42", "end": "2026-08-06T23:22:30", "elapsed_s": 288, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.08, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:15:54", "start": "2026-08-06T23:18:44", "end": "2026-08-06T23:22:08", "elapsed_s": 204, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0567, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:19:36", "start": "2026-08-06T23:21:55", "end": "2026-08-06T23:22:05", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:20:08", "start": "2026-08-06T23:23:00", "end": "2026-08-06T23:30:48", "elapsed_s": 468, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.13, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:22:10", "start": "2026-08-06T23:24:35", "end": "2026-08-06T23:30:26", "elapsed_s": 351, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0975, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:22:55", "start": "2026-08-06T23:26:45", "end": "2026-08-06T23:30:26", "elapsed_s": 221, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0614, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:23:01", "start": "2026-08-06T23:26:45", "end": "2026-08-06T23:30:33", "elapsed_s": 228, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0633, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:23:20", "start": "2026-08-06T23:26:45", "end": "2026-08-06T23:32:01", "elapsed_s": 316, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0878, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:30:31", "start": "2026-08-06T23:33:36", "end": "2026-08-06T23:34:07", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:30:37", "start": "2026-08-06T23:35:41", "end": "2026-08-06T23:40:11", "elapsed_s": 270, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.075, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:30:49", "start": "2026-08-06T23:35:41", "end": "2026-08-06T23:43:56", "elapsed_s": 495, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1375, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:31:19", "start": "2026-08-06T23:35:41", "end": "2026-08-06T23:44:39", "elapsed_s": 538, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1494, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:32:53", "start": "2026-08-06T23:36:13", "end": "2026-08-06T23:40:11", "elapsed_s": 238, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0661, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:34:59", "start": "2026-08-06T23:37:51", "end": "2026-08-06T23:40:26", "elapsed_s": 155, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0431, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:40:12", "start": "2026-08-06T23:42:31", "end": "2026-08-06T23:43:56", "elapsed_s": 85, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:41:00", "start": "2026-08-06T23:43:03", "end": "2026-08-06T23:43:56", "elapsed_s": 53, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:41:19", "start": "2026-08-06T23:45:10", "end": "2026-08-06T23:50:01", "elapsed_s": 291, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0808, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:43:58", "start": "2026-08-06T23:47:21", "end": "2026-08-06T23:49:30", "elapsed_s": 129, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:44:45", "start": "2026-08-06T23:47:53", "end": "2026-08-07T00:00:05", "elapsed_s": 732, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:44:46", "start": "2026-08-06T23:48:24", "end": "2026-08-06T23:51:36", "elapsed_s": 192, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0533, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:45:34", "start": "2026-08-06T23:49:29", "end": "2026-08-06T23:49:34", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:50:28", "start": "2026-08-06T23:52:39", "end": "2026-08-06T23:54:01", "elapsed_s": 82, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0228, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:50:29", "start": "2026-08-06T23:53:43", "end": "2026-08-06T23:54:14", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:50:52", "start": "2026-08-06T23:53:59", "end": "2026-08-06T23:54:01", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:51:38", "start": "2026-08-06T23:53:59", "end": "2026-08-06T23:54:21", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:54:05", "start": "2026-08-06T23:56:19", "end": "2026-08-06T23:56:51", "elapsed_s": 32, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0089, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:54:51", "start": "2026-08-06T23:58:26", "end": "2026-08-06T23:59:01", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:55:04", "start": "2026-08-06T23:58:26", "end": "2026-08-06T23:58:56", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:55:11", "start": "2026-08-07T00:00:05", "end": "2026-08-07T00:00:13", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:57:45", "start": "2026-08-07T00:01:08", "end": "2026-08-07T00:08:24", "elapsed_s": 436, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:59:46", "start": "2026-08-07T00:02:11", "end": "2026-08-07T00:09:00", "elapsed_s": 409, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-06T23:59:55", "start": "2026-08-07T00:02:11", "end": "2026-08-07T00:08:28", "elapsed_s": 377, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:01:02", "start": "2026-08-07T00:03:47", "end": "2026-08-07T00:06:31", "elapsed_s": 164, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0456, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:01:06", "start": "2026-08-07T00:03:47", "end": "2026-08-07T00:08:28", "elapsed_s": 281, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0781, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:07:25", "start": "2026-08-07T00:09:44", "end": "2026-08-07T00:13:56", "elapsed_s": 252, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.07, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:08:31", "start": "2026-08-07T00:10:39", "end": "2026-08-07T00:13:56", "elapsed_s": 197, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0547, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:09:15", "start": "2026-08-07T00:11:24", "end": "2026-08-07T00:11:59", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:09:21", "start": "2026-08-07T00:12:31", "end": "2026-08-07T00:15:11", "elapsed_s": 160, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0444, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:09:54", "start": "2026-08-07T00:12:43", "end": "2026-08-07T00:14:31", "elapsed_s": 108, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.03, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:12:49", "start": "2026-08-07T00:15:12", "end": "2026-08-07T00:18:22", "elapsed_s": 190, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0528, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:13:59", "start": "2026-08-07T00:16:46", "end": "2026-08-07T00:18:26", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:14:46", "start": "2026-08-07T00:17:18", "end": "2026-08-07T00:18:26", "elapsed_s": 68, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:15:22", "start": "2026-08-07T00:18:21", "end": "2026-08-07T00:18:52", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:16:06", "start": "2026-08-07T00:19:24", "end": "2026-08-07T00:19:42", "elapsed_s": 18, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.005, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:18:54", "start": "2026-08-07T00:20:58", "end": "2026-08-07T00:23:57", "elapsed_s": 179, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0497, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:19:13", "start": "2026-08-07T00:21:29", "end": "2026-08-07T00:29:09", "elapsed_s": 460, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:19:16", "start": "2026-08-07T00:21:29", "end": "2026-08-07T00:29:09", "elapsed_s": 460, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:19:19", "start": "2026-08-07T00:21:29", "end": "2026-08-07T00:29:09", "elapsed_s": 460, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:20:31", "start": "2026-08-07T00:23:47", "end": "2026-08-07T00:23:57", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:24:47", "start": "2026-08-07T00:29:09", "end": "2026-08-07T00:33:57", "elapsed_s": 288, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.08, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:24:52", "start": "2026-08-07T00:29:40", "end": "2026-08-07T00:33:57", "elapsed_s": 257, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0714, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:29:12", "start": "2026-08-07T00:31:16", "end": "2026-08-07T00:34:22", "elapsed_s": 186, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:29:13", "start": "2026-08-07T00:31:16", "end": "2026-08-07T00:33:55", "elapsed_s": 159, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:29:13", "start": "2026-08-07T00:33:31", "end": "2026-08-07T00:34:22", "elapsed_s": 51, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:34:00", "start": "2026-08-07T00:36:11", "end": "2026-08-07T00:37:29", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:34:48", "start": "2026-08-07T00:37:17", "end": "2026-08-07T00:37:29", "elapsed_s": 12, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:34:53", "start": "2026-08-07T00:37:17", "end": "2026-08-07T00:38:03", "elapsed_s": 46, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:35:11", "start": "2026-08-07T00:37:17", "end": "2026-08-07T00:44:26", "elapsed_s": 429, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:35:13", "start": "2026-08-07T00:38:57", "end": "2026-08-07T00:44:23", "elapsed_s": 326, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0906, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:38:06", "start": "2026-08-07T00:40:33", "end": "2026-08-07T00:44:26", "elapsed_s": 233, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0647, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:38:27", "start": "2026-08-07T00:41:36", "end": "2026-08-07T00:42:41", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:38:27", "start": "2026-08-07T00:41:36", "end": "2026-08-07T00:44:54", "elapsed_s": 198, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.055, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:43:33", "start": "2026-08-07T00:45:58", "end": "2026-08-07T00:46:50", "elapsed_s": 52, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:45:17", "start": "2026-08-07T00:48:07", "end": "2026-08-07T00:56:29", "elapsed_s": 502, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:45:18", "start": "2026-08-07T00:48:39", "end": "2026-08-07T00:54:02", "elapsed_s": 323, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0897, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:45:24", "start": "2026-08-07T00:49:10", "end": "2026-08-07T00:57:06", "elapsed_s": 476, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:45:46", "start": "2026-08-07T00:49:42", "end": "2026-08-07T00:55:26", "elapsed_s": 344, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0956, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:47:41", "start": "2026-08-07T00:50:45", "end": "2026-08-07T00:54:24", "elapsed_s": 219, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0608, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:54:52", "start": "2026-08-07T00:57:07", "end": "2026-08-07T00:57:13", "elapsed_s": 6, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:55:15", "start": "2026-08-07T00:58:09", "end": "2026-08-07T01:03:59", "elapsed_s": 350, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0972, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:56:24", "start": "2026-08-07T00:59:11", "end": "2026-08-07T01:04:02", "elapsed_s": 291, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0808, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:57:27", "start": "2026-08-07T00:59:43", "end": "2026-08-07T01:04:02", "elapsed_s": 259, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0719, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:58:00", "start": "2026-08-07T01:00:46", "end": "2026-08-07T01:26:12", "elapsed_s": 1526, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T00:58:04", "start": "2026-08-07T01:00:46", "end": "2026-08-07T01:04:30", "elapsed_s": 224, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0622, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:04:51", "start": "2026-08-07T01:07:09", "end": "2026-08-07T01:13:03", "elapsed_s": 354, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0983, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:04:54", "start": "2026-08-07T01:07:41", "end": "2026-08-07T01:14:37", "elapsed_s": 416, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:04:58", "start": "2026-08-07T01:09:19", "end": "2026-08-07T01:15:00", "elapsed_s": 341, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0947, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:05:26", "start": "2026-08-07T01:09:19", "end": "2026-08-07T01:14:22", "elapsed_s": 303, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0842, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:13:53", "start": "2026-08-07T01:16:11", "end": "2026-08-07T01:24:19", "elapsed_s": 488, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:14:25", "start": "2026-08-07T01:16:43", "end": "2026-08-07T01:24:19", "elapsed_s": 456, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:15:31", "start": "2026-08-07T01:17:46", "end": "2026-08-07T01:24:38", "elapsed_s": 412, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:15:50", "start": "2026-08-07T01:18:17", "end": "2026-08-07T01:25:41", "elapsed_s": 444, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1233, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:24:41", "start": "2026-08-07T01:30:54", "end": "2026-08-07T01:43:39", "elapsed_s": 765, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:25:08", "start": "2026-08-07T01:31:26", "end": "2026-08-07T01:43:35", "elapsed_s": 729, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:25:12", "start": "2026-08-07T01:31:26", "end": "2026-08-07T01:43:42", "elapsed_s": 736, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:26:31", "start": "2026-08-07T01:34:06", "end": "2026-08-07T01:43:05", "elapsed_s": 539, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1497, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:27:04", "start": "2026-08-07T01:34:37", "end": "2026-08-07T01:43:42", "elapsed_s": 545, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:43:38", "start": "2026-08-07T01:45:41", "end": "2026-08-07T01:47:13", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:43:55", "start": "2026-08-07T01:46:42", "end": "2026-08-07T02:19:36", "elapsed_s": 1974, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5483, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:44:29", "start": "2026-08-07T01:47:14", "end": "2026-08-07T02:02:31", "elapsed_s": 917, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2547, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:44:34", "start": "2026-08-07T01:48:48", "end": "2026-08-07T01:53:01", "elapsed_s": 253, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0703, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:44:35", "start": "2026-08-07T01:49:21", "end": "2026-08-07T01:53:04", "elapsed_s": 223, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0619, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:48:04", "start": "2026-08-07T01:50:23", "end": "2026-08-07T02:08:13", "elapsed_s": 1070, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2972, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:53:04", "start": "2026-08-07T01:55:07", "end": "2026-08-07T02:02:34", "elapsed_s": 447, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T01:53:55", "start": "2026-08-07T01:56:41", "end": "2026-08-07T02:02:31", "elapsed_s": 350, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0972, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:02:33", "start": "2026-08-07T02:08:44", "end": "2026-08-07T02:09:46", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:03:24", "start": "2026-08-07T02:08:44", "end": "2026-08-07T02:10:08", "elapsed_s": 84, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0233, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:03:31", "start": "2026-08-07T02:10:49", "end": "2026-08-07T02:14:05", "elapsed_s": 196, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0544, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:09:05", "start": "2026-08-07T02:11:20", "end": "2026-08-07T02:14:26", "elapsed_s": 186, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:10:37", "start": "2026-08-07T02:13:24", "end": "2026-08-07T02:15:28", "elapsed_s": 124, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:11:02", "start": "2026-08-07T02:13:24", "end": "2026-08-07T02:20:07", "elapsed_s": 403, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:14:56", "start": "2026-08-07T02:17:33", "end": "2026-08-07T02:17:39", "elapsed_s": 6, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:15:19", "start": "2026-08-07T02:17:33", "end": "2026-08-07T02:17:37", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:16:17", "start": "2026-08-07T02:18:35", "end": "2026-08-07T02:19:09", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:18:30", "start": "2026-08-07T02:20:38", "end": "2026-08-07T02:22:24", "elapsed_s": 106, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0294, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:18:30", "start": "2026-08-07T02:20:38", "end": "2026-08-07T02:26:30", "elapsed_s": 352, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0978, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:19:59", "start": "2026-08-07T02:22:12", "end": "2026-08-07T02:22:42", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:20:28", "start": "2026-08-07T02:23:14", "end": "2026-08-07T02:26:30", "elapsed_s": 196, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0544, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:21:03", "start": "2026-08-07T02:23:45", "end": "2026-08-07T02:26:30", "elapsed_s": 165, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0458, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:22:27", "start": "2026-08-07T02:25:21", "end": "2026-08-07T02:29:30", "elapsed_s": 249, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0692, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:23:40", "start": "2026-08-07T02:25:54", "end": "2026-08-07T02:26:30", "elapsed_s": 36, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.01, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:27:20", "start": "2026-08-07T02:29:31", "end": "2026-08-07T02:33:53", "elapsed_s": 262, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0728, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:27:23", "start": "2026-08-07T02:31:36", "end": "2026-08-07T02:33:53", "elapsed_s": 137, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0381, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:27:23", "start": "2026-08-07T02:32:38", "end": "2026-08-07T02:54:02", "elapsed_s": 1284, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3567, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:27:25", "start": "2026-08-07T02:33:41", "end": "2026-08-07T02:33:53", "elapsed_s": 12, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:30:21", "start": "2026-08-07T02:35:15", "end": "2026-08-07T02:35:49", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:34:44", "start": "2026-08-07T02:36:49", "end": "2026-08-07T02:52:59", "elapsed_s": 970, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2694, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:34:45", "start": "2026-08-07T02:36:49", "end": "2026-08-07T02:52:57", "elapsed_s": 968, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2689, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:34:46", "start": "2026-08-07T02:36:49", "end": "2026-08-07T02:44:06", "elapsed_s": 437, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:36:40", "start": "2026-08-07T02:39:25", "end": "2026-08-07T02:44:06", "elapsed_s": 281, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0781, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:44:08", "start": "2026-08-07T02:48:18", "end": "2026-08-07T02:52:57", "elapsed_s": 279, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0775, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:44:57", "start": "2026-08-07T02:48:49", "end": "2026-08-07T02:52:57", "elapsed_s": 248, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0689, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:53:48", "start": "2026-08-07T02:56:07", "end": "2026-08-07T02:57:22", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:53:51", "start": "2026-08-07T02:58:44", "end": "2026-08-07T03:00:58", "elapsed_s": 134, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:53:53", "start": "2026-08-07T02:59:15", "end": "2026-08-07T03:00:58", "elapsed_s": 103, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0286, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:53:53", "start": "2026-08-07T02:59:15", "end": "2026-08-07T03:01:22", "elapsed_s": 127, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:54:56", "start": "2026-08-07T02:59:48", "end": "2026-08-07T03:00:58", "elapsed_s": 70, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T02:58:20", "start": "2026-08-07T03:00:50", "end": "2026-08-07T03:12:53", "elapsed_s": 723, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:01:00", "start": "2026-08-07T03:03:28", "end": "2026-08-07T03:04:33", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:01:49", "start": "2026-08-07T03:03:59", "end": "2026-08-07T03:19:37", "elapsed_s": 938, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2606, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:01:53", "start": "2026-08-07T03:05:34", "end": "2026-08-07T03:13:24", "elapsed_s": 470, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:02:15", "start": "2026-08-07T03:05:34", "end": "2026-08-07T03:20:40", "elapsed_s": 906, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:05:26", "start": "2026-08-07T03:09:13", "end": "2026-08-07T03:12:31", "elapsed_s": 198, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.055, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:12:56", "start": "2026-08-07T03:14:58", "end": "2026-08-07T03:16:31", "elapsed_s": 93, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0258, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:13:25", "start": "2026-08-07T03:15:29", "end": "2026-08-07T03:16:55", "elapsed_s": 86, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:13:27", "start": "2026-08-07T03:16:00", "end": "2026-08-07T03:18:04", "elapsed_s": 124, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:17:20", "start": "2026-08-07T03:21:11", "end": "2026-08-07T03:22:02", "elapsed_s": 51, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:17:48", "start": "2026-08-07T03:22:14", "end": "2026-08-07T03:31:06", "elapsed_s": 532, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1478, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:18:59", "start": "2026-08-07T03:23:48", "end": "2026-08-07T03:23:52", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:20:31", "start": "2026-08-07T03:23:48", "end": "2026-08-07T03:23:52", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:21:44", "start": "2026-08-07T03:24:51", "end": "2026-08-07T03:37:17", "elapsed_s": 746, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2072, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:22:54", "start": "2026-08-07T03:25:23", "end": "2026-08-07T03:27:33", "elapsed_s": 130, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0361, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:24:45", "start": "2026-08-07T03:27:28", "end": "2026-08-07T03:35:25", "elapsed_s": 477, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1325, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:24:46", "start": "2026-08-07T03:27:28", "end": "2026-08-07T03:31:04", "elapsed_s": 216, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.06, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:28:29", "start": "2026-08-07T03:30:35", "end": "2026-08-07T03:31:04", "elapsed_s": 29, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:31:07", "start": "2026-08-07T03:33:10", "end": "2026-08-07T03:36:46", "elapsed_s": 216, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.06, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:31:53", "start": "2026-08-07T03:34:12", "end": "2026-08-07T03:35:25", "elapsed_s": 73, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0203, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:31:58", "start": "2026-08-07T03:34:43", "end": "2026-08-07T03:35:25", "elapsed_s": 42, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:36:18", "start": "2026-08-07T03:38:51", "end": "2026-08-07T03:39:55", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:36:18", "start": "2026-08-07T03:39:22", "end": "2026-08-07T03:39:55", "elapsed_s": 33, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:36:20", "start": "2026-08-07T03:39:22", "end": "2026-08-07T03:40:20", "elapsed_s": 58, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:37:39", "start": "2026-08-07T03:39:53", "end": "2026-08-07T03:43:32", "elapsed_s": 219, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0608, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:38:12", "start": "2026-08-07T03:40:55", "end": "2026-08-07T03:43:45", "elapsed_s": 170, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:39:57", "start": "2026-08-07T03:42:21", "end": "2026-08-07T03:43:45", "elapsed_s": 84, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0233, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:40:52", "start": "2026-08-07T03:45:05", "end": "2026-08-07T03:47:09", "elapsed_s": 124, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:41:15", "start": "2026-08-07T03:45:05", "end": "2026-08-07T03:47:55", "elapsed_s": 170, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:44:21", "start": "2026-08-07T03:46:39", "end": "2026-08-07T03:47:09", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:44:36", "start": "2026-08-07T03:46:39", "end": "2026-08-07T04:06:23", "elapsed_s": 1184, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:44:41", "start": "2026-08-07T03:48:13", "end": "2026-08-07T03:50:38", "elapsed_s": 145, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0403, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:47:12", "start": "2026-08-07T03:49:15", "end": "2026-08-07T03:54:27", "elapsed_s": 312, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0867, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:47:59", "start": "2026-08-07T03:51:20", "end": "2026-08-07T03:52:32", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:48:49", "start": "2026-08-07T03:51:20", "end": "2026-08-07T04:04:25", "elapsed_s": 785, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:51:29", "start": "2026-08-07T03:53:56", "end": "2026-08-07T03:58:38", "elapsed_s": 282, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0783, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:53:24", "start": "2026-08-07T03:59:10", "end": "2026-08-07T04:02:55", "elapsed_s": 225, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0625, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:55:26", "start": "2026-08-07T03:59:41", "end": "2026-08-07T04:02:55", "elapsed_s": 194, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0539, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T03:59:32", "start": "2026-08-07T04:01:46", "end": "2026-08-07T04:02:55", "elapsed_s": 69, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:03:41", "start": "2026-08-07T04:06:32", "end": "2026-08-07T04:07:22", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:03:48", "start": "2026-08-07T04:07:03", "end": "2026-08-07T04:07:22", "elapsed_s": 19, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:03:49", "start": "2026-08-07T04:07:34", "end": "2026-08-07T04:15:09", "elapsed_s": 455, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:04:27", "start": "2026-08-07T04:08:37", "end": "2026-08-07T04:20:27", "elapsed_s": 710, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1972, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:07:25", "start": "2026-08-07T04:12:50", "end": "2026-08-07T04:22:41", "elapsed_s": 591, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1642, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:08:17", "start": "2026-08-07T04:13:53", "end": "2026-08-07T04:20:27", "elapsed_s": 394, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:08:18", "start": "2026-08-07T04:13:53", "end": "2026-08-07T04:20:27", "elapsed_s": 394, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:16:05", "start": "2026-08-07T04:19:38", "end": "2026-08-07T04:20:27", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:21:17", "start": "2026-08-07T04:23:49", "end": "2026-08-07T04:29:22", "elapsed_s": 333, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0925, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:21:17", "start": "2026-08-07T04:24:20", "end": "2026-08-07T04:29:22", "elapsed_s": 302, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0839, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:21:24", "start": "2026-08-07T04:24:20", "end": "2026-08-07T04:29:22", "elapsed_s": 302, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0839, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:21:25", "start": "2026-08-07T04:24:51", "end": "2026-08-07T04:37:41", "elapsed_s": 770, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:23:36", "start": "2026-08-07T04:25:53", "end": "2026-08-07T04:29:22", "elapsed_s": 209, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0581, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:29:25", "start": "2026-08-07T04:31:42", "end": "2026-08-07T04:37:39", "elapsed_s": 357, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0992, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:30:12", "start": "2026-08-07T04:32:44", "end": "2026-08-07T04:37:39", "elapsed_s": 295, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0819, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:30:12", "start": "2026-08-07T04:33:16", "end": "2026-08-07T04:37:41", "elapsed_s": 265, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0736, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:30:17", "start": "2026-08-07T04:33:46", "end": "2026-08-07T04:37:41", "elapsed_s": 235, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0653, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:38:32", "start": "2026-08-07T04:41:07", "end": "2026-08-07T04:53:20", "elapsed_s": 733, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:38:33", "start": "2026-08-07T04:41:38", "end": "2026-08-07T04:44:59", "elapsed_s": 201, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0558, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:38:34", "start": "2026-08-07T04:42:09", "end": "2026-08-07T04:44:59", "elapsed_s": 170, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:38:35", "start": "2026-08-07T04:43:43", "end": "2026-08-07T04:44:59", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:38:36", "start": "2026-08-07T04:43:43", "end": "2026-08-07T04:45:28", "elapsed_s": 105, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0292, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:45:01", "start": "2026-08-07T04:47:21", "end": "2026-08-07T04:53:20", "elapsed_s": 359, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0997, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:45:30", "start": "2026-08-07T04:50:00", "end": "2026-08-07T04:53:20", "elapsed_s": 200, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:45:47", "start": "2026-08-07T04:50:00", "end": "2026-08-07T04:53:20", "elapsed_s": 200, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:45:51", "start": "2026-08-07T04:54:18", "end": "2026-08-07T05:00:37", "elapsed_s": 379, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:54:11", "start": "2026-08-07T04:56:53", "end": "2026-08-07T05:00:35", "elapsed_s": 222, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0617, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:54:12", "start": "2026-08-07T04:56:53", "end": "2026-08-07T05:00:37", "elapsed_s": 224, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0622, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:54:14", "start": "2026-08-07T04:57:26", "end": "2026-08-07T05:00:37", "elapsed_s": 191, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T04:54:15", "start": "2026-08-07T04:57:26", "end": "2026-08-07T05:00:37", "elapsed_s": 191, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:01:28", "start": "2026-08-07T05:03:44", "end": "2026-08-07T05:13:48", "elapsed_s": 604, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1678, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:01:28", "start": "2026-08-07T05:04:16", "end": "2026-08-07T05:13:48", "elapsed_s": 572, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1589, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:01:29", "start": "2026-08-07T05:05:18", "end": "2026-08-07T05:14:28", "elapsed_s": 550, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1528, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:01:32", "start": "2026-08-07T05:05:18", "end": "2026-08-07T05:13:50", "elapsed_s": 512, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1422, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:01:33", "start": "2026-08-07T05:06:22", "end": "2026-08-07T05:13:50", "elapsed_s": 448, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:14:38", "start": "2026-08-07T05:16:55", "end": "2026-08-07T05:26:40", "elapsed_s": 585, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1625, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:14:38", "start": "2026-08-07T05:16:55", "end": "2026-08-07T05:26:40", "elapsed_s": 585, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1625, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:14:45", "start": "2026-08-07T05:19:02", "end": "2026-08-07T05:26:40", "elapsed_s": 458, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:14:49", "start": "2026-08-07T05:21:42", "end": "2026-08-07T05:26:40", "elapsed_s": 298, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0828, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:15:16", "start": "2026-08-07T05:22:13", "end": "2026-08-07T05:26:40", "elapsed_s": 267, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0742, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:27:30", "start": "2026-08-07T05:30:34", "end": "2026-08-07T08:57:33", "elapsed_s": 12419, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.4497, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:27:32", "start": "2026-08-07T05:31:06", "end": "2026-08-07T05:43:02", "elapsed_s": 716, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1989, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:27:33", "start": "2026-08-07T05:32:08", "end": "2026-08-07T08:01:52", "elapsed_s": 8984, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.4956, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:27:36", "start": "2026-08-07T05:33:09", "end": "2026-08-07T05:58:03", "elapsed_s": 1494, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.415, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:27:36", "start": "2026-08-07T05:33:40", "end": "2026-08-07T05:58:30", "elapsed_s": 1490, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:43:51", "start": "2026-08-07T05:48:15", "end": "2026-08-07T05:55:49", "elapsed_s": 454, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:56:45", "start": "2026-08-07T05:59:08", "end": "2026-08-07T08:45:21", "elapsed_s": 9973, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.7703, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:58:31", "start": "2026-08-07T06:06:58", "end": "2026-08-07T06:17:04", "elapsed_s": 606, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1683, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T05:58:53", "start": "2026-08-07T06:06:58", "end": "2026-08-07T06:17:04", "elapsed_s": 606, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1683, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T06:17:05", "start": "2026-08-07T06:22:34", "end": "2026-08-07T06:37:27", "elapsed_s": 893, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2481, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T06:17:56", "start": "2026-08-07T06:22:34", "end": "2026-08-07T06:37:27", "elapsed_s": 893, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2481, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T06:37:29", "start": "2026-08-07T06:45:59", "end": "2026-08-07T08:57:09", "elapsed_s": 7870, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.1861, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T06:37:29", "start": "2026-08-07T06:56:22", "end": "2026-08-07T07:40:31", "elapsed_s": 2649, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.7358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T07:41:21", "start": "2026-08-07T07:45:18", "end": "2026-08-07T13:26:55", "elapsed_s": 20497, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 5.6936, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T08:02:41", "start": "2026-08-07T08:05:32", "end": "2026-08-07T08:18:00", "elapsed_s": 748, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745363", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-07T08:18:55", "start": "2026-08-07T08:38:30", "end": "2026-08-07T13:01:27", "elapsed_s": 15777, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.3825, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T08:46:13", "start": "2026-08-07T08:50:04", "end": "2026-08-07T09:17:48", "elapsed_s": 1664, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4622, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T08:58:10", "start": "2026-08-07T09:08:51", "end": "2026-08-07T09:16:33", "elapsed_s": 462, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T08:58:37", "start": "2026-08-07T09:08:51", "end": "2026-08-07T10:03:15", "elapsed_s": 3264, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.9067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T09:16:35", "start": "2026-08-07T09:18:45", "end": "2026-08-07T09:40:12", "elapsed_s": 1287, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T09:18:37", "start": "2026-08-07T09:21:51", "end": "2026-08-07T10:03:15", "elapsed_s": 2484, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.69, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T09:40:14", "start": "2026-08-07T09:44:48", "end": "2026-08-07T09:53:22", "elapsed_s": 514, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1428, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T09:53:25", "start": "2026-08-07T09:58:35", "end": "2026-08-07T10:38:06", "elapsed_s": 2371, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6586, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T10:04:05", "start": "2026-08-07T10:06:07", "end": "2026-08-07T17:02:53", "elapsed_s": 25006, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 6.9461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T10:04:10", "start": "2026-08-07T10:09:22", "end": "2026-08-07T10:09:45", "elapsed_s": 23, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0064, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T10:10:38", "start": "2026-08-07T10:14:50", "end": "2026-08-07T10:15:04", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T10:15:55", "start": "2026-08-07T10:21:25", "end": "2026-08-07T10:25:37", "elapsed_s": 252, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.07, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T10:26:27", "start": "2026-08-07T10:31:05", "end": "2026-08-07T10:31:10", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T10:32:00", "start": "2026-08-07T10:34:43", "end": "2026-08-07T10:44:51", "elapsed_s": 608, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1689, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T10:38:08", "start": "2026-08-07T10:42:29", "end": "2026-08-07T10:44:02", "elapsed_s": 93, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0258, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T10:44:59", "start": "2026-08-07T10:47:40", "end": "2026-08-07T12:48:13", "elapsed_s": 7233, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.0092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T10:45:47", "start": "2026-08-07T10:48:43", "end": "2026-08-07T10:53:34", "elapsed_s": 291, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0808, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T10:54:24", "start": "2026-08-07T10:56:29", "end": "2026-08-07T13:20:31", "elapsed_s": 8642, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.4006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T12:48:16", "start": "2026-08-07T12:53:37", "end": "2026-08-07T13:00:59", "elapsed_s": 442, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1228, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T13:01:51", "start": "2026-08-07T13:06:35", "end": "2026-08-07T13:20:31", "elapsed_s": 836, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T13:20:33", "start": "2026-08-07T13:23:12", "end": "2026-08-07T13:25:25", "elapsed_s": 133, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0369, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T13:21:27", "start": "2026-08-07T13:23:43", "end": "2026-08-07T13:24:52", "elapsed_s": 69, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T13:25:43", "start": "2026-08-07T13:30:27", "end": "2026-08-07T13:32:00", "elapsed_s": 93, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0258, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T13:26:15", "start": "2026-08-07T13:30:27", "end": "2026-08-07T14:33:33", "elapsed_s": 3786, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T13:27:48", "start": "2026-08-07T13:30:27", "end": "2026-08-07T16:15:30", "elapsed_s": 9903, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.7508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T13:32:52", "start": "2026-08-07T13:45:29", "end": "2026-08-07T14:33:08", "elapsed_s": 2859, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7942, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T14:33:58", "start": "2026-08-07T14:51:33", "end": "2026-08-07T15:35:19", "elapsed_s": 2626, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7294, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T14:34:23", "start": "2026-08-07T14:56:13", "end": "2026-08-07T15:44:46", "elapsed_s": 2913, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T15:36:11", "start": "2026-08-07T16:04:52", "end": "2026-08-07T16:42:34", "elapsed_s": 2262, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.6283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T15:45:37", "start": "2026-08-07T16:06:57", "end": "2026-08-07T16:15:07", "elapsed_s": 490, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1361, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T16:16:02", "start": "2026-08-07T16:18:20", "end": "2026-08-07T16:48:18", "elapsed_s": 1798, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4994, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T16:16:28", "start": "2026-08-07T16:18:51", "end": "2026-08-07T17:01:38", "elapsed_s": 2567, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T16:43:26", "start": "2026-08-07T16:47:48", "end": "2026-08-07T16:57:50", "elapsed_s": 602, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1672, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T16:49:09", "start": "2026-08-07T16:52:35", "end": "2026-08-07T17:02:31", "elapsed_s": 596, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1656, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T16:58:42", "start": "2026-08-07T17:03:03", "end": "2026-08-07T17:09:46", "elapsed_s": 403, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:02:31", "start": "2026-08-07T17:04:35", "end": "2026-08-07T17:28:18", "elapsed_s": 1423, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3953, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:03:22", "start": "2026-08-07T17:05:38", "end": "2026-08-07T17:27:51", "elapsed_s": 1333, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3703, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:03:42", "start": "2026-08-07T17:14:34", "end": "2026-08-07T17:34:01", "elapsed_s": 1167, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:10:41", "start": "2026-08-07T17:19:48", "end": "2026-08-07T17:27:31", "elapsed_s": 463, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1286, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:28:22", "start": "2026-08-07T17:30:31", "end": "2026-08-07T17:41:14", "elapsed_s": 643, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1786, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:28:42", "start": "2026-08-07T17:32:07", "end": "2026-08-07T17:41:43", "elapsed_s": 576, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.16, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:29:12", "start": "2026-08-07T17:35:18", "end": "2026-08-07T17:39:19", "elapsed_s": 241, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0669, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:34:55", "start": "2026-08-07T17:42:43", "end": "2026-08-07T17:47:31", "elapsed_s": 288, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.08, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:40:12", "start": "2026-08-07T17:43:14", "end": "2026-08-07T17:59:02", "elapsed_s": 948, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2633, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:42:05", "start": "2026-08-07T17:46:59", "end": "2026-08-07T17:47:09", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:42:35", "start": "2026-08-07T17:46:59", "end": "2026-08-07T17:49:37", "elapsed_s": 158, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0439, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:47:59", "start": "2026-08-07T17:51:12", "end": "2026-08-07T18:23:12", "elapsed_s": 1920, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:48:25", "start": "2026-08-07T17:51:43", "end": "2026-08-07T18:05:21", "elapsed_s": 818, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:50:31", "start": "2026-08-07T17:52:46", "end": "2026-08-07T18:04:47", "elapsed_s": 721, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T17:59:52", "start": "2026-08-07T18:03:44", "end": "2026-08-07T18:24:15", "elapsed_s": 1231, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3419, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T18:05:39", "start": "2026-08-07T18:18:29", "end": "2026-08-07T18:26:19", "elapsed_s": 470, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T18:06:15", "start": "2026-08-07T18:20:03", "end": "2026-08-07T18:25:18", "elapsed_s": 315, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0875, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T18:24:04", "start": "2026-08-07T18:26:19", "end": "2026-08-07T22:04:28", "elapsed_s": 13089, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.6358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T18:25:09", "start": "2026-08-07T18:28:25", "end": "2026-08-07T18:28:48", "elapsed_s": 23, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0064, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T18:26:12", "start": "2026-08-07T18:28:56", "end": "2026-08-07T18:30:55", "elapsed_s": 119, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0331, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T18:27:10", "start": "2026-08-07T18:29:28", "end": "2026-08-07T18:29:36", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T18:29:41", "start": "2026-08-07T18:32:05", "end": "2026-08-07T18:54:22", "elapsed_s": 1337, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3714, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T18:30:29", "start": "2026-08-07T18:33:40", "end": "2026-08-07T18:34:18", "elapsed_s": 38, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T18:31:44", "start": "2026-08-07T18:35:13", "end": "2026-08-07T18:39:03", "elapsed_s": 230, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0639, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T18:35:08", "start": "2026-08-07T18:39:22", "end": "2026-08-07T22:27:53", "elapsed_s": 13711, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.8086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T18:39:55", "start": "2026-08-07T18:42:28", "end": "2026-08-07T19:01:21", "elapsed_s": 1133, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T18:55:12", "start": "2026-08-07T19:00:23", "end": "2026-08-07T19:00:53", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T19:01:44", "start": "2026-08-07T19:04:00", "end": "2026-08-07T22:43:35", "elapsed_s": 13175, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.6597, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T19:02:11", "start": "2026-08-07T19:07:40", "end": "2026-08-07T19:33:15", "elapsed_s": 1535, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T19:34:10", "start": "2026-08-07T19:46:13", "end": "2026-08-07T21:01:42", "elapsed_s": 4529, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.2581, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T21:02:33", "start": "2026-08-07T21:06:24", "end": "2026-08-07T22:43:35", "elapsed_s": 5831, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.6197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T22:04:31", "start": "2026-08-07T22:08:03", "end": "2026-08-07T22:08:14", "elapsed_s": 11, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T22:09:07", "start": "2026-08-07T22:13:16", "end": "2026-08-07T22:33:51", "elapsed_s": 1235, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3431, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T22:27:57", "start": "2026-08-07T22:31:04", "end": "2026-08-07T22:33:56", "elapsed_s": 172, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0478, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T22:34:45", "start": "2026-08-07T22:44:40", "end": "2026-08-07T23:02:58", "elapsed_s": 1098, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.305, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T22:34:50", "start": "2026-08-07T22:44:40", "end": "2026-08-07T23:22:26", "elapsed_s": 2266, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6294, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T22:44:25", "start": "2026-08-07T22:52:05", "end": "2026-08-07T23:08:28", "elapsed_s": 983, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2731, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T22:44:30", "start": "2026-08-07T22:56:21", "end": "2026-08-07T23:22:26", "elapsed_s": 1565, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4347, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T23:03:54", "start": "2026-08-07T23:06:33", "end": "2026-08-07T23:22:26", "elapsed_s": 953, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2647, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T23:09:25", "start": "2026-08-08T00:49:16", "end": "2026-08-08T00:49:42", "elapsed_s": 26, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0072, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T23:23:15", "start": "2026-08-08T00:50:50", "end": "2026-08-08T00:54:27", "elapsed_s": 217, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T23:23:18", "start": "2026-08-08T01:02:25", "end": "2026-08-08T01:08:05", "elapsed_s": 340, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0944, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-07T23:23:19", "start": "2026-08-08T01:35:54", "end": "2026-08-08T01:41:09", "elapsed_s": 315, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0875, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T00:50:39", "start": "2026-08-08T01:35:54", "end": "2026-08-08T02:24:18", "elapsed_s": 2904, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.8067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T00:55:21", "start": "2026-08-08T01:35:54", "end": "2026-08-08T01:41:09", "elapsed_s": 315, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0875, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T01:09:01", "start": "2026-08-08T01:36:27", "end": "2026-08-08T02:06:12", "elapsed_s": 1785, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4958, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T01:41:58", "start": "2026-08-08T01:44:16", "end": "2026-08-08T01:49:31", "elapsed_s": 315, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0875, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-08T01:41:59", "start": "2026-08-08T01:44:16", "end": "2026-08-08T09:45:03", "elapsed_s": 28847, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-08T01:50:23", "start": "2026-08-08T01:53:12", "end": "2026-08-08T10:00:02", "elapsed_s": 29210, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T02:07:03", "start": "2026-08-08T02:10:50", "end": "2026-08-08T02:15:59", "elapsed_s": 309, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0858, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T02:16:51", "start": "2026-08-08T02:19:06", "end": "2026-08-08T02:33:52", "elapsed_s": 886, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T02:25:09", "start": "2026-08-08T02:27:25", "end": "2026-08-08T04:30:31", "elapsed_s": 7386, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T02:34:45", "start": "2026-08-08T02:37:13", "end": "2026-08-08T02:40:19", "elapsed_s": 186, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T02:41:11", "start": "2026-08-08T02:43:26", "end": "2026-08-08T04:30:56", "elapsed_s": 6450, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.7917, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T04:31:27", "start": "2026-08-08T04:37:56", "end": "2026-08-08T11:01:01", "elapsed_s": 22985, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 6.3847, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T04:31:48", "start": "2026-08-08T04:45:39", "end": "2026-08-08T11:01:01", "elapsed_s": 22522, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 6.2561, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-08T06:30:23", "start": "2026-08-08T06:30:43", "end": "2026-08-08T14:45:01", "elapsed_s": 29658, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38304087", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "gpu-l40s", "qos": "normal", "state": "RUNNING", "submit": "2026-08-08T06:43:39", "start": "2026-08-12T17:03:05", "end": "Unknown", "elapsed_s": 567001, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 157.5003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T09:46:03", "start": "2026-08-08T09:51:58", "end": "2026-08-08T10:16:09", "elapsed_s": 1451, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.4031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T10:00:56", "start": "2026-08-08T10:03:48", "end": "2026-08-08T11:01:01", "elapsed_s": 3433, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T10:17:04", "start": "2026-08-08T10:20:11", "end": "2026-08-08T10:23:16", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T10:24:06", "start": "2026-08-08T10:27:51", "end": "2026-08-08T10:28:22", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T10:29:13", "start": "2026-08-08T10:35:33", "end": "2026-08-08T11:01:01", "elapsed_s": 1528, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:01:56", "start": "2026-08-08T11:04:12", "end": "2026-08-08T11:19:50", "elapsed_s": 938, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2606, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:01:58", "start": "2026-08-08T11:04:12", "end": "2026-08-08T11:19:06", "elapsed_s": 894, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2483, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:01:59", "start": "2026-08-08T11:04:12", "end": "2026-08-08T11:19:32", "elapsed_s": 920, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:02:00", "start": "2026-08-08T11:04:12", "end": "2026-08-08T11:19:02", "elapsed_s": 890, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:19:08", "start": "2026-08-08T11:22:05", "end": "2026-08-08T11:22:58", "elapsed_s": 53, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:19:55", "start": "2026-08-08T11:22:05", "end": "2026-08-08T11:23:19", "elapsed_s": 74, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0206, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:20:22", "start": "2026-08-08T11:22:35", "end": "2026-08-08T11:22:58", "elapsed_s": 23, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0064, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:20:45", "start": "2026-08-08T11:23:06", "end": "2026-08-08T11:23:22", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:23:47", "start": "2026-08-08T11:27:45", "end": "2026-08-08T11:34:03", "elapsed_s": 378, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.105, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:23:50", "start": "2026-08-08T11:27:45", "end": "2026-08-08T11:28:05", "elapsed_s": 20, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0056, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:24:08", "start": "2026-08-08T11:28:47", "end": "2026-08-08T11:34:03", "elapsed_s": 316, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0878, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:24:13", "start": "2026-08-08T11:29:18", "end": "2026-08-08T11:29:31", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:28:07", "start": "2026-08-08T11:30:51", "end": "2026-08-08T11:34:00", "elapsed_s": 189, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:30:28", "start": "2026-08-08T11:32:55", "end": "2026-08-08T11:34:00", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:34:02", "start": "2026-08-08T11:36:30", "end": "2026-08-08T11:38:53", "elapsed_s": 143, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:34:54", "start": "2026-08-08T11:37:02", "end": "2026-08-08T11:37:06", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:34:57", "start": "2026-08-08T11:38:05", "end": "2026-08-08T11:39:14", "elapsed_s": 69, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:34:58", "start": "2026-08-08T11:38:05", "end": "2026-08-08T11:38:53", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:38:00", "start": "2026-08-08T11:40:38", "end": "2026-08-08T11:52:23", "elapsed_s": 705, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1958, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:39:43", "start": "2026-08-08T11:44:44", "end": "2026-08-08T11:46:11", "elapsed_s": 87, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:39:47", "start": "2026-08-08T11:44:44", "end": "2026-08-08T11:45:39", "elapsed_s": 55, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:40:04", "start": "2026-08-08T11:45:15", "end": "2026-08-08T11:49:14", "elapsed_s": 239, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0664, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:46:28", "start": "2026-08-08T11:49:54", "end": "2026-08-08T11:50:03", "elapsed_s": 9, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:47:03", "start": "2026-08-08T11:50:25", "end": "2026-08-08T11:52:23", "elapsed_s": 118, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0328, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:50:04", "start": "2026-08-08T11:53:33", "end": "2026-08-08T11:54:10", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:51:00", "start": "2026-08-08T11:53:33", "end": "2026-08-08T11:54:57", "elapsed_s": 84, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0233, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:53:15", "start": "2026-08-08T11:55:38", "end": "2026-08-08T11:55:45", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:53:19", "start": "2026-08-08T11:56:09", "end": "2026-08-08T11:59:06", "elapsed_s": 177, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0492, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:55:02", "start": "2026-08-08T11:57:43", "end": "2026-08-08T11:58:35", "elapsed_s": 52, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:55:55", "start": "2026-08-08T11:58:14", "end": "2026-08-08T11:58:35", "elapsed_s": 21, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:56:39", "start": "2026-08-08T11:59:48", "end": "2026-08-08T11:59:51", "elapsed_s": 3, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:59:24", "start": "2026-08-08T12:01:54", "end": "2026-08-08T12:01:56", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T11:59:29", "start": "2026-08-08T12:02:25", "end": "2026-08-08T12:10:29", "elapsed_s": 484, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:00:04", "start": "2026-08-08T12:02:55", "end": "2026-08-08T12:13:54", "elapsed_s": 659, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1831, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:00:41", "start": "2026-08-08T12:03:26", "end": "2026-08-08T12:05:36", "elapsed_s": 130, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0361, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:02:44", "start": "2026-08-08T12:04:58", "end": "2026-08-08T12:05:14", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:06:08", "start": "2026-08-08T12:08:34", "end": "2026-08-08T12:09:06", "elapsed_s": 32, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0089, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:06:25", "start": "2026-08-08T12:08:34", "end": "2026-08-08T12:13:51", "elapsed_s": 317, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0881, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:09:59", "start": "2026-08-08T12:12:39", "end": "2026-08-08T12:13:51", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:11:22", "start": "2026-08-08T12:13:40", "end": "2026-08-08T12:13:51", "elapsed_s": 11, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:14:40", "start": "2026-08-08T12:18:16", "end": "2026-08-08T12:18:54", "elapsed_s": 38, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:14:40", "start": "2026-08-08T12:18:16", "end": "2026-08-08T12:20:01", "elapsed_s": 105, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0292, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:14:42", "start": "2026-08-08T12:18:47", "end": "2026-08-08T12:19:35", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:14:42", "start": "2026-08-08T12:19:48", "end": "2026-08-08T12:20:01", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:19:43", "start": "2026-08-08T12:22:21", "end": "2026-08-08T12:23:25", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:20:32", "start": "2026-08-08T12:23:22", "end": "2026-08-08T12:23:25", "elapsed_s": 3, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:20:50", "start": "2026-08-08T12:24:24", "end": "2026-08-08T12:28:49", "elapsed_s": 265, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0736, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:20:52", "start": "2026-08-08T12:24:24", "end": "2026-08-08T12:25:10", "elapsed_s": 46, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:24:16", "start": "2026-08-08T12:26:26", "end": "2026-08-08T12:32:27", "elapsed_s": 361, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:24:22", "start": "2026-08-08T12:26:57", "end": "2026-08-08T12:35:15", "elapsed_s": 498, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:26:01", "start": "2026-08-08T12:30:32", "end": "2026-08-08T12:35:15", "elapsed_s": 283, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0786, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:29:40", "start": "2026-08-08T12:33:37", "end": "2026-08-08T12:35:15", "elapsed_s": 98, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:33:20", "start": "2026-08-08T12:36:12", "end": "2026-08-08T12:37:28", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:36:06", "start": "2026-08-08T12:38:15", "end": "2026-08-08T12:38:39", "elapsed_s": 24, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:36:07", "start": "2026-08-08T12:38:46", "end": "2026-08-08T12:38:54", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:36:07", "start": "2026-08-08T12:38:46", "end": "2026-08-08T12:39:18", "elapsed_s": 32, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0089, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:38:17", "start": "2026-08-08T12:40:18", "end": "2026-08-08T12:41:29", "elapsed_s": 71, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:39:30", "start": "2026-08-08T12:41:51", "end": "2026-08-08T12:47:37", "elapsed_s": 346, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0961, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:39:44", "start": "2026-08-08T12:42:21", "end": "2026-08-08T12:42:30", "elapsed_s": 9, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:40:15", "start": "2026-08-08T12:42:21", "end": "2026-08-08T12:43:59", "elapsed_s": 98, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:42:20", "start": "2026-08-08T12:45:58", "end": "2026-08-08T12:46:02", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:42:32", "start": "2026-08-08T12:45:58", "end": "2026-08-08T12:47:11", "elapsed_s": 73, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0203, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:44:50", "start": "2026-08-08T12:46:59", "end": "2026-08-08T12:47:57", "elapsed_s": 58, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:46:56", "start": "2026-08-08T12:49:02", "end": "2026-08-08T12:50:04", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:48:01", "start": "2026-08-08T12:50:04", "end": "2026-08-08T12:50:48", "elapsed_s": 44, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:48:30", "start": "2026-08-08T12:51:06", "end": "2026-08-08T12:54:25", "elapsed_s": 199, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0553, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:48:48", "start": "2026-08-08T12:52:07", "end": "2026-08-08T12:53:43", "elapsed_s": 96, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:51:03", "start": "2026-08-08T12:53:09", "end": "2026-08-08T12:53:43", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:51:46", "start": "2026-08-08T12:55:43", "end": "2026-08-08T12:56:48", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:54:35", "start": "2026-08-08T12:57:15", "end": "2026-08-08T12:58:30", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:54:40", "start": "2026-08-08T12:57:46", "end": "2026-08-08T13:00:26", "elapsed_s": 160, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0444, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:55:20", "start": "2026-08-08T12:58:16", "end": "2026-08-08T13:02:42", "elapsed_s": 266, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0739, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:57:37", "start": "2026-08-08T12:59:48", "end": "2026-08-08T13:00:47", "elapsed_s": 59, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T12:59:19", "start": "2026-08-08T13:01:21", "end": "2026-08-08T13:03:22", "elapsed_s": 121, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0336, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:01:15", "start": "2026-08-08T13:04:25", "end": "2026-08-08T13:05:29", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:01:38", "start": "2026-08-08T13:04:25", "end": "2026-08-08T13:05:29", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:02:44", "start": "2026-08-08T13:04:56", "end": "2026-08-08T13:05:53", "elapsed_s": 57, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0158, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:04:13", "start": "2026-08-08T13:07:30", "end": "2026-08-08T13:07:47", "elapsed_s": 17, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:06:18", "start": "2026-08-08T13:09:03", "end": "2026-08-08T13:10:28", "elapsed_s": 85, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0236, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:06:20", "start": "2026-08-08T13:09:34", "end": "2026-08-08T13:13:19", "elapsed_s": 225, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0625, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:06:48", "start": "2026-08-08T13:10:06", "end": "2026-08-08T13:13:28", "elapsed_s": 202, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0561, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:08:43", "start": "2026-08-08T13:12:41", "end": "2026-08-08T13:14:40", "elapsed_s": 119, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0331, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:11:20", "start": "2026-08-08T13:13:43", "end": "2026-08-08T13:14:14", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:14:09", "start": "2026-08-08T13:16:17", "end": "2026-08-08T13:18:24", "elapsed_s": 127, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:14:23", "start": "2026-08-08T13:16:47", "end": "2026-08-08T13:20:46", "elapsed_s": 239, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0664, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:15:08", "start": "2026-08-08T13:17:50", "end": "2026-08-08T13:18:00", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:15:30", "start": "2026-08-08T13:18:21", "end": "2026-08-08T13:19:17", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:18:54", "start": "2026-08-08T13:20:57", "end": "2026-08-08T13:21:33", "elapsed_s": 36, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.01, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:19:13", "start": "2026-08-08T13:21:29", "end": "2026-08-08T13:21:33", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:20:18", "start": "2026-08-08T13:22:32", "end": "2026-08-08T13:25:36", "elapsed_s": 184, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0511, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:21:42", "start": "2026-08-08T13:24:36", "end": "2026-08-08T13:30:11", "elapsed_s": 335, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0931, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:22:25", "start": "2026-08-08T13:24:36", "end": "2026-08-08T13:25:32", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:22:27", "start": "2026-08-08T13:25:08", "end": "2026-08-08T13:25:32", "elapsed_s": 24, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:26:21", "start": "2026-08-08T13:29:49", "end": "2026-08-08T13:30:01", "elapsed_s": 12, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:26:29", "start": "2026-08-08T13:30:52", "end": "2026-08-08T13:31:27", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:26:29", "start": "2026-08-08T13:31:22", "end": "2026-08-08T13:33:14", "elapsed_s": 112, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0311, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:30:55", "start": "2026-08-08T13:32:57", "end": "2026-08-08T13:33:28", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:31:03", "start": "2026-08-08T13:34:29", "end": "2026-08-08T13:35:11", "elapsed_s": 42, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:32:26", "start": "2026-08-08T13:35:01", "end": "2026-08-08T13:37:04", "elapsed_s": 123, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0342, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:34:04", "start": "2026-08-08T13:36:33", "end": "2026-08-08T13:37:29", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:34:19", "start": "2026-08-08T13:38:07", "end": "2026-08-08T13:39:29", "elapsed_s": 82, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0228, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:36:00", "start": "2026-08-08T13:38:39", "end": "2026-08-08T13:43:55", "elapsed_s": 316, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0878, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:37:08", "start": "2026-08-08T13:39:11", "end": "2026-08-08T13:39:46", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:38:20", "start": "2026-08-08T13:40:45", "end": "2026-08-08T13:41:11", "elapsed_s": 26, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0072, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:40:26", "start": "2026-08-08T13:42:50", "end": "2026-08-08T13:43:27", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:40:42", "start": "2026-08-08T13:43:21", "end": "2026-08-08T13:43:27", "elapsed_s": 6, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:42:00", "start": "2026-08-08T13:44:54", "end": "2026-08-08T13:47:17", "elapsed_s": 143, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:44:21", "start": "2026-08-08T13:49:04", "end": "2026-08-08T13:49:45", "elapsed_s": 41, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:44:24", "start": "2026-08-08T13:49:35", "end": "2026-08-08T13:50:50", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:44:47", "start": "2026-08-08T13:49:35", "end": "2026-08-08T13:51:07", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:48:07", "start": "2026-08-08T13:50:39", "end": "2026-08-08T13:50:50", "elapsed_s": 11, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:50:34", "start": "2026-08-08T13:52:42", "end": "2026-08-08T13:53:40", "elapsed_s": 58, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:51:38", "start": "2026-08-08T13:54:17", "end": "2026-08-08T13:58:22", "elapsed_s": 245, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0681, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:51:39", "start": "2026-08-08T13:54:17", "end": "2026-08-08T13:56:10", "elapsed_s": 113, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0314, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:51:59", "start": "2026-08-08T13:54:17", "end": "2026-08-08T13:56:31", "elapsed_s": 134, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:54:37", "start": "2026-08-08T13:56:54", "end": "2026-08-08T13:58:06", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:57:05", "start": "2026-08-08T13:59:32", "end": "2026-08-08T14:00:20", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:57:28", "start": "2026-08-08T13:59:32", "end": "2026-08-08T14:00:05", "elapsed_s": 33, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:58:56", "start": "2026-08-08T14:01:05", "end": "2026-08-08T14:02:39", "elapsed_s": 94, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T13:59:16", "start": "2026-08-08T14:01:36", "end": "2026-08-08T14:01:49", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:00:54", "start": "2026-08-08T14:03:09", "end": "2026-08-08T14:03:14", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:01:09", "start": "2026-08-08T14:03:40", "end": "2026-08-08T14:04:19", "elapsed_s": 39, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:02:41", "start": "2026-08-08T14:05:13", "end": "2026-08-08T14:05:27", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:03:31", "start": "2026-08-08T14:06:15", "end": "2026-08-08T14:06:44", "elapsed_s": 29, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:04:05", "start": "2026-08-08T14:06:15", "end": "2026-08-08T14:07:18", "elapsed_s": 63, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:05:10", "start": "2026-08-08T14:07:49", "end": "2026-08-08T14:13:30", "elapsed_s": 341, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0947, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:06:22", "start": "2026-08-08T14:10:26", "end": "2026-08-08T14:11:29", "elapsed_s": 63, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:07:43", "start": "2026-08-08T14:12:00", "end": "2026-08-08T14:13:16", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:08:10", "start": "2026-08-08T14:12:31", "end": "2026-08-08T14:13:42", "elapsed_s": 71, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:12:27", "start": "2026-08-08T14:14:36", "end": "2026-08-08T14:15:29", "elapsed_s": 53, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:14:08", "start": "2026-08-08T14:17:13", "end": "2026-08-08T14:19:32", "elapsed_s": 139, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0386, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:14:22", "start": "2026-08-08T14:17:13", "end": "2026-08-08T14:21:43", "elapsed_s": 270, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.075, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:14:34", "start": "2026-08-08T14:17:13", "end": "2026-08-08T14:21:30", "elapsed_s": 257, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0714, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:16:21", "start": "2026-08-08T14:19:18", "end": "2026-08-08T14:19:32", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:19:35", "start": "2026-08-08T14:22:57", "end": "2026-08-08T14:27:49", "elapsed_s": 292, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0811, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:20:27", "start": "2026-08-08T14:22:57", "end": "2026-08-08T14:24:35", "elapsed_s": 98, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0272, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:22:26", "start": "2026-08-08T14:24:31", "end": "2026-08-08T14:24:35", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:22:35", "start": "2026-08-08T14:25:03", "end": "2026-08-08T14:29:50", "elapsed_s": 287, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0797, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:25:27", "start": "2026-08-08T14:28:08", "end": "2026-08-08T14:29:52", "elapsed_s": 104, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:25:30", "start": "2026-08-08T14:28:08", "end": "2026-08-08T14:29:50", "elapsed_s": 102, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:28:41", "start": "2026-08-08T14:30:43", "end": "2026-08-08T14:31:31", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:30:39", "start": "2026-08-08T14:32:47", "end": "2026-08-08T14:35:46", "elapsed_s": 179, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0497, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:30:41", "start": "2026-08-08T14:32:47", "end": "2026-08-08T14:33:31", "elapsed_s": 44, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:30:44", "start": "2026-08-08T14:32:47", "end": "2026-08-08T14:35:35", "elapsed_s": 168, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0467, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:32:23", "start": "2026-08-08T14:34:52", "end": "2026-08-08T14:35:35", "elapsed_s": 43, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:33:34", "start": "2026-08-08T14:36:58", "end": "2026-08-08T14:37:12", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:36:25", "start": "2026-08-08T14:39:02", "end": "2026-08-08T14:39:16", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:36:28", "start": "2026-08-08T14:40:35", "end": "2026-08-08T14:42:40", "elapsed_s": 125, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0347, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:36:38", "start": "2026-08-08T14:42:09", "end": "2026-08-08T14:43:30", "elapsed_s": 81, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:38:04", "start": "2026-08-08T14:42:40", "end": "2026-08-08T14:43:33", "elapsed_s": 53, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:40:07", "start": "2026-08-08T14:43:12", "end": "2026-08-08T14:43:13", "elapsed_s": 1, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:43:33", "start": "2026-08-08T14:46:19", "end": "2026-08-08T14:49:18", "elapsed_s": 179, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0497, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:44:03", "start": "2026-08-08T14:49:59", "end": "2026-08-08T14:51:17", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:44:23", "start": "2026-08-08T14:50:30", "end": "2026-08-08T14:52:16", "elapsed_s": 106, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0294, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:44:25", "start": "2026-08-08T14:50:30", "end": "2026-08-08T14:54:37", "elapsed_s": 247, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0686, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:45:59", "start": "2026-08-08T14:51:01", "end": "2026-08-08T14:59:12", "elapsed_s": 491, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1364, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:50:09", "start": "2026-08-08T14:53:05", "end": "2026-08-08T14:57:18", "elapsed_s": 253, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0703, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:52:08", "start": "2026-08-08T14:56:13", "end": "2026-08-08T14:57:18", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:53:08", "start": "2026-08-08T14:56:13", "end": "2026-08-08T14:57:40", "elapsed_s": 87, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:54:41", "start": "2026-08-08T14:56:44", "end": "2026-08-08T14:58:05", "elapsed_s": 81, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:58:07", "start": "2026-08-08T15:00:23", "end": "2026-08-08T15:03:04", "elapsed_s": 161, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0447, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:58:10", "start": "2026-08-08T15:01:57", "end": "2026-08-08T15:03:59", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:58:29", "start": "2026-08-08T15:02:28", "end": "2026-08-08T15:03:06", "elapsed_s": 38, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T14:58:57", "start": "2026-08-08T15:02:28", "end": "2026-08-08T15:03:06", "elapsed_s": 38, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:00:03", "start": "2026-08-08T15:02:59", "end": "2026-08-08T15:03:49", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:03:09", "start": "2026-08-08T15:05:36", "end": "2026-08-08T15:06:34", "elapsed_s": 58, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:03:55", "start": "2026-08-08T15:06:08", "end": "2026-08-08T15:09:14", "elapsed_s": 186, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:04:00", "start": "2026-08-08T15:06:08", "end": "2026-08-08T15:12:42", "elapsed_s": 394, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:04:41", "start": "2026-08-08T15:07:11", "end": "2026-08-08T15:13:05", "elapsed_s": 354, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0983, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:04:50", "start": "2026-08-08T15:07:41", "end": "2026-08-08T15:12:37", "elapsed_s": 296, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0822, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:07:27", "start": "2026-08-08T15:11:52", "end": "2026-08-08T15:12:12", "elapsed_s": 20, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0056, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:09:17", "start": "2026-08-08T15:11:52", "end": "2026-08-08T15:11:57", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:11:59", "start": "2026-08-08T15:14:30", "end": "2026-08-08T15:17:16", "elapsed_s": 166, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:13:03", "start": "2026-08-08T15:17:06", "end": "2026-08-08T15:17:48", "elapsed_s": 42, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:13:29", "start": "2026-08-08T15:18:40", "end": "2026-08-08T15:18:42", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:13:30", "start": "2026-08-08T15:18:40", "end": "2026-08-08T15:23:55", "elapsed_s": 315, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0875, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:14:00", "start": "2026-08-08T15:18:40", "end": "2026-08-08T15:26:58", "elapsed_s": 498, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:18:10", "start": "2026-08-08T15:20:13", "end": "2026-08-08T15:21:15", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:18:46", "start": "2026-08-08T15:22:48", "end": "2026-08-08T15:23:18", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:19:32", "start": "2026-08-08T15:22:48", "end": "2026-08-08T15:23:23", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:22:06", "start": "2026-08-08T15:24:21", "end": "2026-08-08T15:29:47", "elapsed_s": 326, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0906, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:23:21", "start": "2026-08-08T15:25:56", "end": "2026-08-08T15:26:58", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:23:57", "start": "2026-08-08T15:26:27", "end": "2026-08-08T15:27:18", "elapsed_s": 51, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:24:14", "start": "2026-08-08T15:28:33", "end": "2026-08-08T15:30:17", "elapsed_s": 104, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0289, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:27:02", "start": "2026-08-08T15:29:34", "end": "2026-08-08T15:29:47", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:27:53", "start": "2026-08-08T15:30:37", "end": "2026-08-08T15:37:13", "elapsed_s": 396, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.11, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:28:23", "start": "2026-08-08T15:30:37", "end": "2026-08-08T15:34:15", "elapsed_s": 218, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0606, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:30:36", "start": "2026-08-08T15:32:42", "end": "2026-08-08T15:33:13", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:30:39", "start": "2026-08-08T15:32:42", "end": "2026-08-08T15:33:24", "elapsed_s": 42, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:31:10", "start": "2026-08-08T15:33:45", "end": "2026-08-08T15:36:50", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:33:17", "start": "2026-08-08T15:35:18", "end": "2026-08-08T15:38:14", "elapsed_s": 176, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0489, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:34:17", "start": "2026-08-08T15:37:54", "end": "2026-08-08T15:39:03", "elapsed_s": 69, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:35:05", "start": "2026-08-08T15:38:25", "end": "2026-08-08T15:39:14", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:37:43", "start": "2026-08-08T15:40:29", "end": "2026-08-08T15:41:44", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:38:02", "start": "2026-08-08T15:40:29", "end": "2026-08-08T15:42:05", "elapsed_s": 96, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:39:09", "start": "2026-08-08T15:44:07", "end": "2026-08-08T15:46:40", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:39:55", "start": "2026-08-08T15:44:07", "end": "2026-08-08T15:48:29", "elapsed_s": 262, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0728, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:40:03", "start": "2026-08-08T15:44:07", "end": "2026-08-08T15:45:14", "elapsed_s": 67, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:42:35", "start": "2026-08-08T15:44:39", "end": "2026-08-08T15:45:17", "elapsed_s": 38, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:42:56", "start": "2026-08-08T15:45:10", "end": "2026-08-08T15:46:07", "elapsed_s": 57, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0158, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:46:07", "start": "2026-08-08T15:49:22", "end": "2026-08-08T15:49:30", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:46:08", "start": "2026-08-08T15:49:22", "end": "2026-08-08T15:51:59", "elapsed_s": 157, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0436, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:46:42", "start": "2026-08-08T15:50:25", "end": "2026-08-08T15:51:11", "elapsed_s": 46, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:46:56", "start": "2026-08-08T15:50:56", "end": "2026-08-08T15:51:14", "elapsed_s": 18, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.005, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:49:20", "start": "2026-08-08T15:51:27", "end": "2026-08-08T15:51:33", "elapsed_s": 6, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:50:21", "start": "2026-08-08T15:52:29", "end": "2026-08-08T15:55:43", "elapsed_s": 194, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0539, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:52:02", "start": "2026-08-08T15:55:35", "end": "2026-08-08T15:56:44", "elapsed_s": 69, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:52:14", "start": "2026-08-08T15:55:35", "end": "2026-08-08T16:00:30", "elapsed_s": 295, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0819, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:52:24", "start": "2026-08-08T15:55:35", "end": "2026-08-08T15:55:43", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:52:48", "start": "2026-08-08T15:55:35", "end": "2026-08-08T16:05:44", "elapsed_s": 609, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1692, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:55:45", "start": "2026-08-08T15:58:10", "end": "2026-08-08T16:01:31", "elapsed_s": 201, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0558, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:56:39", "start": "2026-08-08T16:01:19", "end": "2026-08-08T16:05:14", "elapsed_s": 235, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0653, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T15:57:40", "start": "2026-08-08T16:01:50", "end": "2026-08-08T16:03:33", "elapsed_s": 103, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0286, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:01:22", "start": "2026-08-08T16:04:24", "end": "2026-08-08T16:09:21", "elapsed_s": 297, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0825, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:02:22", "start": "2026-08-08T16:04:24", "end": "2026-08-08T16:05:14", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:04:26", "start": "2026-08-08T16:06:30", "end": "2026-08-08T16:07:14", "elapsed_s": 44, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:06:10", "start": "2026-08-08T16:08:36", "end": "2026-08-08T16:13:24", "elapsed_s": 288, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.08, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:06:11", "start": "2026-08-08T16:09:07", "end": "2026-08-08T16:09:15", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:06:38", "start": "2026-08-08T16:10:09", "end": "2026-08-08T16:12:14", "elapsed_s": 125, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0347, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:08:06", "start": "2026-08-08T16:10:40", "end": "2026-08-08T16:11:51", "elapsed_s": 71, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:10:13", "start": "2026-08-08T16:12:45", "end": "2026-08-08T16:14:31", "elapsed_s": 106, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0294, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:10:15", "start": "2026-08-08T16:12:45", "end": "2026-08-08T16:15:14", "elapsed_s": 149, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0414, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:12:43", "start": "2026-08-08T16:16:23", "end": "2026-08-08T16:17:16", "elapsed_s": 53, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:13:09", "start": "2026-08-08T16:16:23", "end": "2026-08-08T16:17:16", "elapsed_s": 53, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0147, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:14:15", "start": "2026-08-08T16:16:23", "end": "2026-08-08T16:16:28", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:15:26", "start": "2026-08-08T16:18:27", "end": "2026-08-08T16:26:34", "elapsed_s": 487, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:16:08", "start": "2026-08-08T16:18:27", "end": "2026-08-08T16:27:03", "elapsed_s": 516, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1433, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:17:18", "start": "2026-08-08T16:19:29", "end": "2026-08-08T16:22:36", "elapsed_s": 187, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0519, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:18:11", "start": "2026-08-08T16:23:40", "end": "2026-08-08T16:34:49", "elapsed_s": 669, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1858, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:18:13", "start": "2026-08-08T16:23:40", "end": "2026-08-08T16:24:56", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:23:31", "start": "2026-08-08T16:25:46", "end": "2026-08-08T16:26:34", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:25:47", "start": "2026-08-08T16:27:50", "end": "2026-08-08T16:31:35", "elapsed_s": 225, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0625, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:27:27", "start": "2026-08-08T16:31:30", "end": "2026-08-08T16:34:25", "elapsed_s": 175, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0486, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:27:34", "start": "2026-08-08T16:33:04", "end": "2026-08-08T16:33:16", "elapsed_s": 12, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:28:00", "start": "2026-08-08T16:33:35", "end": "2026-08-08T16:35:47", "elapsed_s": 132, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0367, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:32:31", "start": "2026-08-08T16:35:08", "end": "2026-08-08T16:35:12", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:33:19", "start": "2026-08-08T16:35:40", "end": "2026-08-08T16:36:46", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:35:18", "start": "2026-08-08T16:37:45", "end": "2026-08-08T16:37:49", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:35:41", "start": "2026-08-08T16:37:45", "end": "2026-08-08T16:37:53", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:36:05", "start": "2026-08-08T16:38:17", "end": "2026-08-08T16:38:29", "elapsed_s": 12, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0033, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:36:38", "start": "2026-08-08T16:38:48", "end": "2026-08-08T16:41:21", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:37:44", "start": "2026-08-08T16:39:50", "end": "2026-08-08T16:41:14", "elapsed_s": 84, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0233, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:38:40", "start": "2026-08-08T16:40:53", "end": "2026-08-08T16:41:11", "elapsed_s": 18, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.005, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:38:46", "start": "2026-08-08T16:40:53", "end": "2026-08-08T16:41:14", "elapsed_s": 21, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:39:20", "start": "2026-08-08T16:42:26", "end": "2026-08-08T16:43:25", "elapsed_s": 59, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:42:04", "start": "2026-08-08T16:44:33", "end": "2026-08-08T16:46:09", "elapsed_s": 96, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:42:07", "start": "2026-08-08T16:44:33", "end": "2026-08-08T16:46:42", "elapsed_s": 129, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:42:16", "start": "2026-08-08T16:45:36", "end": "2026-08-08T16:52:19", "elapsed_s": 403, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:42:17", "start": "2026-08-08T16:46:07", "end": "2026-08-08T16:47:30", "elapsed_s": 83, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0231, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:44:23", "start": "2026-08-08T16:47:10", "end": "2026-08-08T16:49:25", "elapsed_s": 135, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0375, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:46:44", "start": "2026-08-08T16:49:14", "end": "2026-08-08T16:51:55", "elapsed_s": 161, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0447, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:47:06", "start": "2026-08-08T16:50:48", "end": "2026-08-08T16:51:02", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:48:26", "start": "2026-08-08T16:52:21", "end": "2026-08-08T16:59:04", "elapsed_s": 403, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:49:28", "start": "2026-08-08T16:52:53", "end": "2026-08-08T16:55:01", "elapsed_s": 128, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:51:51", "start": "2026-08-08T16:53:55", "end": "2026-08-08T16:58:44", "elapsed_s": 289, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0803, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:52:49", "start": "2026-08-08T16:54:57", "end": "2026-08-08T16:55:20", "elapsed_s": 23, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0064, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:53:15", "start": "2026-08-08T16:55:59", "end": "2026-08-08T16:59:48", "elapsed_s": 229, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0636, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:55:03", "start": "2026-08-08T16:58:37", "end": "2026-08-08T16:58:41", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:56:12", "start": "2026-08-08T16:58:37", "end": "2026-08-08T16:59:21", "elapsed_s": 44, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:59:35", "start": "2026-08-08T17:03:16", "end": "2026-08-08T17:03:32", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:59:36", "start": "2026-08-08T17:03:16", "end": "2026-08-08T17:03:32", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T16:59:59", "start": "2026-08-08T17:04:19", "end": "2026-08-08T17:05:04", "elapsed_s": 45, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:00:20", "start": "2026-08-08T17:04:19", "end": "2026-08-08T17:05:27", "elapsed_s": 68, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:00:39", "start": "2026-08-08T17:04:19", "end": "2026-08-08T17:11:48", "elapsed_s": 449, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1247, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:04:22", "start": "2026-08-08T17:06:24", "end": "2026-08-08T17:07:22", "elapsed_s": 58, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:04:23", "start": "2026-08-08T17:06:24", "end": "2026-08-08T17:09:40", "elapsed_s": 196, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0544, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:05:07", "start": "2026-08-08T17:09:00", "end": "2026-08-08T17:09:07", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:05:30", "start": "2026-08-08T17:09:31", "end": "2026-08-08T17:11:22", "elapsed_s": 111, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0308, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:08:13", "start": "2026-08-08T17:10:34", "end": "2026-08-08T17:11:24", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:09:43", "start": "2026-08-08T17:12:07", "end": "2026-08-08T17:13:23", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:09:56", "start": "2026-08-08T17:12:07", "end": "2026-08-08T17:13:53", "elapsed_s": 106, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0294, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:12:13", "start": "2026-08-08T17:15:14", "end": "2026-08-08T17:23:08", "elapsed_s": 474, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1317, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:12:16", "start": "2026-08-08T17:15:45", "end": "2026-08-08T17:17:26", "elapsed_s": 101, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0281, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:12:40", "start": "2026-08-08T17:15:45", "end": "2026-08-08T17:23:32", "elapsed_s": 467, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:13:26", "start": "2026-08-08T17:15:45", "end": "2026-08-08T17:21:30", "elapsed_s": 345, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0958, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:14:44", "start": "2026-08-08T17:17:19", "end": "2026-08-08T17:17:26", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:18:17", "start": "2026-08-08T17:20:24", "end": "2026-08-08T17:21:30", "elapsed_s": 66, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:18:22", "start": "2026-08-08T17:20:24", "end": "2026-08-08T17:20:37", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:20:39", "start": "2026-08-08T17:23:01", "end": "2026-08-08T17:25:21", "elapsed_s": 140, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0389, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:21:32", "start": "2026-08-08T17:24:04", "end": "2026-08-08T17:25:21", "elapsed_s": 77, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:22:21", "start": "2026-08-08T17:24:36", "end": "2026-08-08T17:27:22", "elapsed_s": 166, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0461, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:24:01", "start": "2026-08-08T17:27:12", "end": "2026-08-08T17:29:36", "elapsed_s": 144, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.04, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:24:23", "start": "2026-08-08T17:28:13", "end": "2026-08-08T17:35:56", "elapsed_s": 463, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1286, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:26:11", "start": "2026-08-08T17:28:13", "end": "2026-08-08T17:29:00", "elapsed_s": 47, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:26:17", "start": "2026-08-08T17:28:44", "end": "2026-08-08T17:29:23", "elapsed_s": 39, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:28:12", "start": "2026-08-08T17:30:16", "end": "2026-08-08T17:31:37", "elapsed_s": 81, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:29:25", "start": "2026-08-08T17:32:50", "end": "2026-08-08T17:35:24", "elapsed_s": 154, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0428, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:29:51", "start": "2026-08-08T17:33:21", "end": "2026-08-08T17:35:24", "elapsed_s": 123, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0342, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:30:29", "start": "2026-08-08T17:33:21", "end": "2026-08-08T17:37:22", "elapsed_s": 241, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0669, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:32:28", "start": "2026-08-08T17:34:53", "end": "2026-08-08T17:35:33", "elapsed_s": 40, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:35:28", "start": "2026-08-08T17:39:05", "end": "2026-08-08T17:43:28", "elapsed_s": 263, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0731, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:36:18", "start": "2026-08-08T17:39:36", "end": "2026-08-08T17:41:23", "elapsed_s": 107, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0297, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:36:27", "start": "2026-08-08T17:40:07", "end": "2026-08-08T17:41:23", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:36:53", "start": "2026-08-08T17:40:39", "end": "2026-08-08T17:45:01", "elapsed_s": 262, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0728, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:38:12", "start": "2026-08-08T17:40:39", "end": "2026-08-08T17:41:23", "elapsed_s": 44, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:42:13", "start": "2026-08-08T17:44:17", "end": "2026-08-08T17:44:32", "elapsed_s": 15, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:42:20", "start": "2026-08-08T17:44:49", "end": "2026-08-08T17:47:44", "elapsed_s": 175, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0486, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:42:24", "start": "2026-08-08T17:44:49", "end": "2026-08-08T17:46:05", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:43:31", "start": "2026-08-08T17:46:22", "end": "2026-08-08T17:49:24", "elapsed_s": 182, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0506, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:45:22", "start": "2026-08-08T17:47:24", "end": "2026-08-08T17:47:29", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:45:52", "start": "2026-08-08T17:48:57", "end": "2026-08-08T17:53:33", "elapsed_s": 276, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:46:07", "start": "2026-08-08T17:48:57", "end": "2026-08-08T17:53:29", "elapsed_s": 272, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0756, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:48:21", "start": "2026-08-08T17:52:03", "end": "2026-08-08T17:52:25", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:48:40", "start": "2026-08-08T17:54:07", "end": "2026-08-08T17:54:59", "elapsed_s": 52, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:50:15", "start": "2026-08-08T17:54:38", "end": "2026-08-08T17:55:23", "elapsed_s": 45, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:53:15", "start": "2026-08-08T17:56:13", "end": "2026-08-08T18:01:38", "elapsed_s": 325, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0903, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:54:25", "start": "2026-08-08T17:56:44", "end": "2026-08-08T17:58:47", "elapsed_s": 123, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0342, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:54:27", "start": "2026-08-08T17:57:46", "end": "2026-08-08T17:58:24", "elapsed_s": 38, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:55:59", "start": "2026-08-08T17:59:20", "end": "2026-08-08T17:59:29", "elapsed_s": 9, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:56:14", "start": "2026-08-08T17:59:50", "end": "2026-08-08T18:01:17", "elapsed_s": 87, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:59:13", "start": "2026-08-08T18:01:23", "end": "2026-08-08T18:02:50", "elapsed_s": 87, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T17:59:44", "start": "2026-08-08T18:01:55", "end": "2026-08-08T18:02:25", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:00:20", "start": "2026-08-08T18:02:26", "end": "2026-08-08T18:05:29", "elapsed_s": 183, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:02:09", "start": "2026-08-08T18:05:00", "end": "2026-08-08T18:05:29", "elapsed_s": 29, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:02:31", "start": "2026-08-08T18:05:00", "end": "2026-08-08T18:05:34", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:03:20", "start": "2026-08-08T18:06:33", "end": "2026-08-08T18:13:24", "elapsed_s": 411, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:03:39", "start": "2026-08-08T18:06:33", "end": "2026-08-08T18:19:41", "elapsed_s": 788, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:05:32", "start": "2026-08-08T18:08:38", "end": "2026-08-08T18:12:26", "elapsed_s": 228, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0633, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:06:20", "start": "2026-08-08T18:08:38", "end": "2026-08-08T18:17:39", "elapsed_s": 541, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1503, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:06:35", "start": "2026-08-08T18:09:09", "end": "2026-08-08T18:16:39", "elapsed_s": 450, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:13:20", "start": "2026-08-08T18:16:59", "end": "2026-08-08T18:19:41", "elapsed_s": 162, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.045, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:14:15", "start": "2026-08-08T18:18:02", "end": "2026-08-08T18:23:36", "elapsed_s": 334, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0928, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:17:29", "start": "2026-08-08T18:19:36", "end": "2026-08-08T18:19:41", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:18:35", "start": "2026-08-08T18:20:39", "end": "2026-08-08T18:21:37", "elapsed_s": 58, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:20:30", "start": "2026-08-08T18:24:50", "end": "2026-08-08T18:27:37", "elapsed_s": 167, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0464, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:20:32", "start": "2026-08-08T18:25:21", "end": "2026-08-08T18:27:37", "elapsed_s": 136, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0378, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-08T18:20:34", "start": "2026-08-08T18:25:21", "end": "2026-08-09T02:31:20", "elapsed_s": 29159, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0997, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:22:37", "start": "2026-08-08T18:25:53", "end": "2026-08-08T18:33:03", "elapsed_s": 430, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:24:38", "start": "2026-08-08T18:28:31", "end": "2026-08-08T18:33:00", "elapsed_s": 269, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0747, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:28:27", "start": "2026-08-08T18:31:39", "end": "2026-08-08T18:37:37", "elapsed_s": 358, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0994, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:28:29", "start": "2026-08-08T18:31:39", "end": "2026-08-08T18:37:41", "elapsed_s": 362, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:33:50", "start": "2026-08-08T18:36:21", "end": "2026-08-08T18:37:37", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:33:56", "start": "2026-08-08T18:36:52", "end": "2026-08-08T18:37:37", "elapsed_s": 45, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:37:40", "start": "2026-08-08T18:41:36", "end": "2026-08-08T18:43:38", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:37:40", "start": "2026-08-08T18:42:07", "end": "2026-08-08T18:43:38", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:38:32", "start": "2026-08-08T18:42:39", "end": "2026-08-08T18:43:38", "elapsed_s": 59, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:38:38", "start": "2026-08-08T18:42:39", "end": "2026-08-08T18:43:38", "elapsed_s": 59, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:44:29", "start": "2026-08-08T18:46:48", "end": "2026-08-08T18:48:28", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:44:31", "start": "2026-08-08T18:47:19", "end": "2026-08-08T18:49:42", "elapsed_s": 143, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:44:41", "start": "2026-08-08T18:47:19", "end": "2026-08-08T18:50:50", "elapsed_s": 211, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0586, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:44:46", "start": "2026-08-08T18:47:19", "end": "2026-08-08T18:49:42", "elapsed_s": 143, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:49:17", "start": "2026-08-08T18:51:32", "end": "2026-08-08T18:51:35", "elapsed_s": 3, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:49:45", "start": "2026-08-08T18:52:34", "end": "2026-08-08T18:53:42", "elapsed_s": 68, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:50:35", "start": "2026-08-08T18:53:06", "end": "2026-08-08T19:01:31", "elapsed_s": 505, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1403, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:51:42", "start": "2026-08-08T18:54:39", "end": "2026-08-08T18:55:26", "elapsed_s": 47, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0131, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:52:24", "start": "2026-08-08T18:55:10", "end": "2026-08-08T18:58:01", "elapsed_s": 171, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0475, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:54:32", "start": "2026-08-08T18:56:43", "end": "2026-08-08T18:57:38", "elapsed_s": 55, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:56:18", "start": "2026-08-08T18:58:48", "end": "2026-08-08T19:01:42", "elapsed_s": 174, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0483, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:58:30", "start": "2026-08-08T19:00:52", "end": "2026-08-08T19:01:31", "elapsed_s": 39, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0108, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T18:58:52", "start": "2026-08-08T19:02:57", "end": "2026-08-08T19:03:28", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:01:33", "start": "2026-08-08T19:04:32", "end": "2026-08-08T19:09:40", "elapsed_s": 308, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0856, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:02:30", "start": "2026-08-08T19:06:05", "end": "2026-08-08T19:07:32", "elapsed_s": 87, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:02:36", "start": "2026-08-08T19:08:09", "end": "2026-08-08T19:08:23", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:04:20", "start": "2026-08-08T19:08:09", "end": "2026-08-08T19:09:40", "elapsed_s": 91, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0253, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:08:24", "start": "2026-08-08T19:10:44", "end": "2026-08-08T19:11:21", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:08:26", "start": "2026-08-08T19:10:44", "end": "2026-08-08T19:12:07", "elapsed_s": 83, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0231, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:10:30", "start": "2026-08-08T19:12:48", "end": "2026-08-08T19:14:22", "elapsed_s": 94, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:10:33", "start": "2026-08-08T19:12:48", "end": "2026-08-08T19:12:59", "elapsed_s": 11, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:12:14", "start": "2026-08-08T19:14:20", "end": "2026-08-08T19:33:29", "elapsed_s": 1149, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:12:58", "start": "2026-08-08T19:15:23", "end": "2026-08-08T19:16:20", "elapsed_s": 57, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0158, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:13:02", "start": "2026-08-08T19:15:23", "end": "2026-08-08T19:16:28", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:15:17", "start": "2026-08-08T19:17:28", "end": "2026-08-08T19:18:11", "elapsed_s": 43, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0119, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:17:11", "start": "2026-08-08T19:19:33", "end": "2026-08-08T19:19:55", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:17:19", "start": "2026-08-08T19:20:35", "end": "2026-08-08T19:20:45", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:19:03", "start": "2026-08-08T19:21:06", "end": "2026-08-08T19:34:11", "elapsed_s": 785, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:20:48", "start": "2026-08-08T19:23:10", "end": "2026-08-08T19:27:46", "elapsed_s": 276, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:21:39", "start": "2026-08-08T19:23:41", "end": "2026-08-08T19:33:47", "elapsed_s": 606, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1683, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:28:36", "start": "2026-08-08T19:30:56", "end": "2026-08-08T19:34:32", "elapsed_s": 216, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.06, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:34:14", "start": "2026-08-08T19:37:10", "end": "2026-08-08T19:41:23", "elapsed_s": 253, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0703, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:34:21", "start": "2026-08-08T19:37:10", "end": "2026-08-08T19:40:52", "elapsed_s": 222, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0617, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:34:41", "start": "2026-08-08T19:40:17", "end": "2026-08-08T19:42:12", "elapsed_s": 115, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:35:22", "start": "2026-08-08T19:41:51", "end": "2026-08-08T19:42:12", "elapsed_s": 21, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:41:42", "start": "2026-08-08T19:43:55", "end": "2026-08-08T19:49:08", "elapsed_s": 313, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0869, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:42:14", "start": "2026-08-08T19:44:26", "end": "2026-08-08T20:49:22", "elapsed_s": 3896, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0822, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:42:14", "start": "2026-08-08T19:44:26", "end": "2026-08-08T19:49:30", "elapsed_s": 304, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0844, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:43:02", "start": "2026-08-08T19:45:59", "end": "2026-08-08T19:49:26", "elapsed_s": 207, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:50:01", "start": "2026-08-08T19:52:12", "end": "2026-08-08T20:49:22", "elapsed_s": 3430, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9528, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:50:16", "start": "2026-08-08T19:53:15", "end": "2026-08-08T20:52:53", "elapsed_s": 3578, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9939, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:50:22", "start": "2026-08-08T19:54:48", "end": "2026-08-08T19:58:31", "elapsed_s": 223, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0619, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T19:59:22", "start": "2026-08-08T20:01:37", "end": "2026-08-08T20:02:31", "elapsed_s": 54, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.015, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:03:20", "start": "2026-08-08T20:05:47", "end": "2026-08-08T20:06:52", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:07:43", "start": "2026-08-08T20:09:55", "end": "2026-08-08T20:14:28", "elapsed_s": 273, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0758, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:15:22", "start": "2026-08-08T20:17:44", "end": "2026-08-08T20:17:55", "elapsed_s": 11, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:18:48", "start": "2026-08-08T20:23:59", "end": "2026-08-08T20:29:32", "elapsed_s": 333, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0925, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:30:24", "start": "2026-08-08T20:33:19", "end": "2026-08-08T20:34:08", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:34:58", "start": "2026-08-08T20:38:18", "end": "2026-08-08T20:52:53", "elapsed_s": 875, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2431, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:49:25", "start": "2026-08-08T20:52:05", "end": "2026-08-08T21:06:07", "elapsed_s": 842, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:50:14", "start": "2026-08-08T20:52:36", "end": "2026-08-08T20:57:37", "elapsed_s": 301, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0836, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:53:47", "start": "2026-08-08T20:56:45", "end": "2026-08-08T20:58:35", "elapsed_s": 110, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:53:53", "start": "2026-08-08T20:56:45", "end": "2026-08-08T20:58:13", "elapsed_s": 88, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:58:27", "start": "2026-08-08T21:01:57", "end": "2026-08-08T21:08:07", "elapsed_s": 370, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:59:05", "start": "2026-08-08T21:01:57", "end": "2026-08-08T21:07:37", "elapsed_s": 340, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0944, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T20:59:26", "start": "2026-08-08T21:05:36", "end": "2026-08-08T21:08:36", "elapsed_s": 180, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.05, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:06:56", "start": "2026-08-08T21:10:18", "end": "2026-08-08T21:10:29", "elapsed_s": 11, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:08:10", "start": "2026-08-08T21:10:18", "end": "2026-08-08T21:11:37", "elapsed_s": 79, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:08:28", "start": "2026-08-08T21:10:49", "end": "2026-08-08T21:11:44", "elapsed_s": 55, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:09:28", "start": "2026-08-08T21:11:51", "end": "2026-08-08T21:12:06", "elapsed_s": 15, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:11:21", "start": "2026-08-08T21:13:25", "end": "2026-08-08T21:15:27", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:12:09", "start": "2026-08-08T21:14:27", "end": "2026-08-08T21:15:27", "elapsed_s": 60, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:12:32", "start": "2026-08-08T21:16:00", "end": "2026-08-08T21:16:06", "elapsed_s": 6, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:12:35", "start": "2026-08-08T21:16:31", "end": "2026-08-08T21:44:56", "elapsed_s": 1705, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4736, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:16:18", "start": "2026-08-08T21:19:07", "end": "2026-08-08T21:53:37", "elapsed_s": 2070, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:16:21", "start": "2026-08-08T21:19:07", "end": "2026-08-08T21:19:31", "elapsed_s": 24, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:16:55", "start": "2026-08-08T21:19:07", "end": "2026-08-08T21:53:37", "elapsed_s": 2070, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.575, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:20:27", "start": "2026-08-08T21:26:57", "end": "2026-08-08T21:33:49", "elapsed_s": 412, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:34:39", "start": "2026-08-08T21:42:18", "end": "2026-08-08T21:44:16", "elapsed_s": 118, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0328, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:45:07", "start": "2026-08-08T21:48:33", "end": "2026-08-08T21:49:50", "elapsed_s": 77, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:45:51", "start": "2026-08-08T21:51:09", "end": "2026-08-08T23:36:46", "elapsed_s": 6337, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.7603, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:50:40", "start": "2026-08-08T21:53:15", "end": "2026-08-08T23:36:23", "elapsed_s": 6188, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.7189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:54:27", "start": "2026-08-08T21:56:51", "end": "2026-08-08T22:15:35", "elapsed_s": 1124, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T21:54:31", "start": "2026-08-08T21:56:51", "end": "2026-08-08T22:14:56", "elapsed_s": 1085, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T22:15:49", "start": "2026-08-08T22:25:24", "end": "2026-08-08T23:39:51", "elapsed_s": 4467, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.2408, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T22:16:26", "start": "2026-08-08T22:46:41", "end": "2026-08-08T23:40:37", "elapsed_s": 3236, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8989, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T23:37:16", "start": "2026-08-08T23:41:04", "end": "2026-08-09T00:58:48", "elapsed_s": 4664, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.2956, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T23:37:41", "start": "2026-08-08T23:41:35", "end": "2026-08-09T00:58:48", "elapsed_s": 4633, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.2869, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T23:40:47", "start": "2026-08-08T23:46:46", "end": "2026-08-09T00:58:51", "elapsed_s": 4325, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.2014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-08T23:41:26", "start": "2026-08-08T23:57:05", "end": "2026-08-09T00:01:10", "elapsed_s": 245, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0681, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T00:01:13", "start": "2026-08-09T00:06:21", "end": "2026-08-09T00:25:31", "elapsed_s": 1150, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T00:26:22", "start": "2026-08-09T00:29:10", "end": "2026-08-09T00:34:19", "elapsed_s": 309, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0858, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T00:34:22", "start": "2026-08-09T00:36:54", "end": "2026-08-09T00:39:29", "elapsed_s": 155, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0431, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T00:39:32", "start": "2026-08-09T00:42:36", "end": "2026-08-09T00:49:02", "elapsed_s": 386, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1072, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T00:49:52", "start": "2026-08-09T00:52:21", "end": "2026-08-09T00:55:54", "elapsed_s": 213, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0592, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T00:56:47", "start": "2026-08-09T00:59:40", "end": "2026-08-09T01:35:07", "elapsed_s": 2127, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.5908, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T00:59:39", "start": "2026-08-09T01:04:13", "end": "2026-08-09T01:18:15", "elapsed_s": 842, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T00:59:45", "start": "2026-08-09T01:09:56", "end": "2026-08-09T01:17:13", "elapsed_s": 437, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T00:59:53", "start": "2026-08-09T01:14:36", "end": "2026-08-09T01:18:42", "elapsed_s": 246, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0683, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:17:16", "start": "2026-08-09T01:19:47", "end": "2026-08-09T01:31:01", "elapsed_s": 674, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1872, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:19:08", "start": "2026-08-09T01:23:22", "end": "2026-08-09T01:34:02", "elapsed_s": 640, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1778, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:19:33", "start": "2026-08-09T01:23:52", "end": "2026-08-09T01:33:16", "elapsed_s": 564, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1567, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:31:52", "start": "2026-08-09T01:35:38", "end": "2026-08-09T01:40:16", "elapsed_s": 278, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0772, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:34:07", "start": "2026-08-09T01:39:13", "end": "2026-08-09T01:40:16", "elapsed_s": 63, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:34:55", "start": "2026-08-09T01:39:44", "end": "2026-08-09T01:49:44", "elapsed_s": 600, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1667, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:35:10", "start": "2026-08-09T01:40:15", "end": "2026-08-09T01:51:11", "elapsed_s": 656, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1822, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:41:07", "start": "2026-08-09T01:43:17", "end": "2026-08-09T01:49:16", "elapsed_s": 359, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0997, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:41:10", "start": "2026-08-09T01:43:17", "end": "2026-08-09T01:53:53", "elapsed_s": 636, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:50:08", "start": "2026-08-09T01:53:03", "end": "2026-08-09T02:00:02", "elapsed_s": 419, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:50:34", "start": "2026-08-09T01:54:36", "end": "2026-08-09T01:56:06", "elapsed_s": 90, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:52:05", "start": "2026-08-09T01:55:07", "end": "2026-08-09T01:56:26", "elapsed_s": 79, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0219, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-09T01:54:44", "start": "2026-08-09T01:57:09", "end": "2026-08-09T10:00:02", "elapsed_s": 28973, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0481, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:56:56", "start": "2026-08-09T01:59:12", "end": "2026-08-09T05:43:25", "elapsed_s": 13453, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 3.7369, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T01:57:15", "start": "2026-08-09T01:59:43", "end": "2026-08-09T09:37:55", "elapsed_s": 27492, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 7.6367, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-09T02:00:05", "start": "2026-08-09T02:02:17", "end": "2026-08-09T10:15:02", "elapsed_s": 29565, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-09T02:31:23", "start": "2026-08-09T02:33:32", "end": "2026-08-09T10:45:03", "elapsed_s": 29491, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1919, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-09T05:44:17", "start": "2026-08-09T05:46:23", "end": "2026-08-09T14:00:02", "elapsed_s": 29619, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-09T09:37:57", "start": "2026-08-09T09:40:28", "end": "2026-08-09T17:45:02", "elapsed_s": 29074, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0761, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745361", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-09T10:00:52", "start": "2026-08-09T10:03:23", "end": "2026-08-09T12:07:12", "elapsed_s": 7429, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.0636, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-09T10:15:05", "start": "2026-08-09T10:17:07", "end": "2026-08-09T18:30:02", "elapsed_s": 29575, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-09T10:46:05", "start": "2026-08-09T10:48:14", "end": "2026-08-09T19:00:02", "elapsed_s": 29508, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1967, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-09T14:00:52", "start": "2026-08-09T14:02:58", "end": "2026-08-09T22:15:01", "elapsed_s": 29523, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-09T17:45:54", "start": "2026-08-09T17:48:16", "end": "2026-08-10T02:00:01", "elapsed_s": 29505, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1958, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-09T18:30:54", "start": "2026-08-09T18:33:14", "end": "2026-08-09T20:49:58", "elapsed_s": 8204, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 2.2789, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-09T19:00:05", "start": "2026-08-09T19:02:29", "end": "2026-08-10T03:15:03", "elapsed_s": 29554, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-09T20:50:51", "start": "2026-08-09T20:52:59", "end": "2026-08-10T05:00:03", "elapsed_s": 29224, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-09T22:15:06", "start": "2026-08-09T22:17:19", "end": "2026-08-10T06:30:03", "elapsed_s": 29564, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-10T02:00:52", "start": "2026-08-10T02:02:55", "end": "2026-08-10T10:15:03", "elapsed_s": 29528, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38303999", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-10T03:15:05", "start": "2026-08-10T03:17:11", "end": "2026-08-10T05:36:11", "elapsed_s": 8340, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.3167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-10T05:00:53", "start": "2026-08-10T05:03:05", "end": "2026-08-10T13:15:03", "elapsed_s": 29518, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.1994, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-10T06:30:58", "start": "2026-08-10T06:33:00", "end": "2026-08-10T14:45:02", "elapsed_s": 29522, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T10:15:53", "start": "2026-08-10T10:18:09", "end": "2026-08-10T15:17:41", "elapsed_s": 17972, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 4.9922, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T13:15:53", "start": "2026-08-10T13:18:04", "end": "2026-08-10T15:17:41", "elapsed_s": 7177, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.9936, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T14:45:11", "start": "2026-08-10T14:47:22", "end": "2026-08-10T14:55:59", "elapsed_s": 517, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1436, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T14:56:49", "start": "2026-08-10T15:08:12", "end": "2026-08-10T15:16:39", "elapsed_s": 507, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1408, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T15:17:31", "start": "2026-08-10T15:21:04", "end": "2026-08-10T17:07:43", "elapsed_s": 6399, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.7775, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T15:18:32", "start": "2026-08-10T15:21:04", "end": "2026-08-10T15:28:36", "elapsed_s": 452, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T15:18:38", "start": "2026-08-10T15:21:35", "end": "2026-08-10T15:27:19", "elapsed_s": 344, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0956, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T15:28:11", "start": "2026-08-10T15:30:19", "end": "2026-08-10T17:08:15", "elapsed_s": 5876, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.6322, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T15:29:26", "start": "2026-08-10T15:31:30", "end": "2026-08-10T16:10:56", "elapsed_s": 2366, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6572, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T16:11:49", "start": "2026-08-10T16:14:55", "end": "2026-08-10T17:07:43", "elapsed_s": 3168, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.88, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T17:08:33", "start": "2026-08-10T17:10:56", "end": "2026-08-10T17:17:38", "elapsed_s": 402, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T17:08:38", "start": "2026-08-10T17:10:56", "end": "2026-08-10T18:17:48", "elapsed_s": 4012, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 1.1144, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T17:09:08", "start": "2026-08-10T17:11:27", "end": "2026-08-10T18:07:49", "elapsed_s": 3382, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T17:17:41", "start": "2026-08-10T17:20:01", "end": "2026-08-10T17:25:32", "elapsed_s": 331, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0919, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T17:25:34", "start": "2026-08-10T17:27:38", "end": "2026-08-10T17:29:39", "elapsed_s": 121, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0336, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T17:30:29", "start": "2026-08-10T17:32:37", "end": "2026-08-10T18:07:15", "elapsed_s": 2078, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5772, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T18:08:18", "start": "2026-08-10T18:10:27", "end": "2026-08-10T19:56:47", "elapsed_s": 6380, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.7722, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T18:08:48", "start": "2026-08-10T18:10:58", "end": "2026-08-10T18:11:39", "elapsed_s": 41, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T18:12:32", "start": "2026-08-10T18:14:33", "end": "2026-08-10T18:17:44", "elapsed_s": 191, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-10T18:18:37", "start": "2026-08-10T18:20:43", "end": "2026-08-10T19:56:47", "elapsed_s": 5764, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.6011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-10T18:18:37", "start": "2026-08-10T18:20:43", "end": "2026-08-11T02:30:01", "elapsed_s": 29358, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.155, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-10T19:56:48", "start": "2026-08-10T19:58:51", "end": "2026-08-11T04:00:02", "elapsed_s": 28871, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.0197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-10T19:57:38", "start": "2026-08-10T20:00:07", "end": "2026-08-11T04:15:01", "elapsed_s": 29694, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 8.2483, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-11T02:31:16", "start": "2026-08-12T17:03:14", "end": "2026-08-12T17:03:55", "elapsed_s": 41, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0114, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-11T04:00:53", "start": "2026-08-12T17:03:14", "end": "2026-08-12T17:20:31", "elapsed_s": 1037, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2881, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-11T04:15:51", "start": "2026-08-12T17:03:14", "end": "2026-08-12T17:20:31", "elapsed_s": 1037, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2881, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-12T17:04:44", "start": "2026-08-12T17:06:59", "end": "2026-08-13T00:02:54", "elapsed_s": 24955, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 6.9319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-12T17:20:40", "start": "2026-08-12T17:43:30", "end": "2026-08-12T18:01:47", "elapsed_s": 1097, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-12T17:20:40", "start": "2026-08-12T17:43:30", "end": "2026-08-12T20:23:30", "elapsed_s": 9600, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.6667, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-12T18:01:49", "start": "2026-08-12T18:07:33", "end": "2026-08-12T18:30:27", "elapsed_s": 1374, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.3817, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-12T18:31:23", "start": "2026-08-12T19:12:52", "end": "2026-08-12T20:22:45", "elapsed_s": 4193, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.1647, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-12T20:23:47", "start": "2026-08-12T20:26:30", "end": "2026-08-12T21:40:15", "elapsed_s": 4425, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.2292, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-12T20:24:24", "start": "2026-08-12T20:27:01", "end": "2026-08-13T00:03:05", "elapsed_s": 12964, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.6011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-12T21:41:10", "start": "2026-08-12T21:43:26", "end": "2026-08-12T23:29:54", "elapsed_s": 6388, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.7744, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-12T23:29:58", "start": "2026-08-12T23:32:26", "end": "2026-08-13T00:02:42", "elapsed_s": 1816, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T00:02:58", "start": "2026-08-13T00:05:08", "end": "2026-08-13T00:06:48", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T00:03:44", "start": "2026-08-13T00:08:16", "end": "2026-08-13T01:10:21", "elapsed_s": 3725, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0347, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T00:04:08", "start": "2026-08-13T00:09:50", "end": "2026-08-13T00:28:01", "elapsed_s": 1091, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3031, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T00:07:43", "start": "2026-08-13T00:29:07", "end": "2026-08-13T01:02:30", "elapsed_s": 2003, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5564, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T00:28:57", "start": "2026-08-13T00:37:55", "end": "2026-08-13T01:10:01", "elapsed_s": 1926, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.535, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T01:03:21", "start": "2026-08-13T01:05:34", "end": "2026-08-13T01:09:39", "elapsed_s": 245, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0681, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T01:10:29", "start": "2026-08-13T01:43:27", "end": "2026-08-13T01:49:46", "elapsed_s": 379, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T01:10:53", "start": "2026-08-13T01:44:28", "end": "2026-08-13T01:50:10", "elapsed_s": 342, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.095, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T01:11:16", "start": "2026-08-13T01:44:28", "end": "2026-08-13T01:53:50", "elapsed_s": 562, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1561, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T01:50:12", "start": "2026-08-13T01:55:41", "end": "2026-08-13T02:03:07", "elapsed_s": 446, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T01:50:40", "start": "2026-08-13T01:55:41", "end": "2026-08-13T02:03:07", "elapsed_s": 446, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T01:54:45", "start": "2026-08-13T01:59:48", "end": "2026-08-13T02:03:17", "elapsed_s": 209, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0581, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T02:03:09", "start": "2026-08-13T02:33:33", "end": "2026-08-13T02:33:55", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T02:03:09", "start": "2026-08-13T02:33:33", "end": "2026-08-13T02:33:55", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T02:04:09", "start": "2026-08-13T02:33:33", "end": "2026-08-13T02:33:55", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T02:34:44", "start": "2026-08-13T02:57:02", "end": "2026-08-13T03:42:10", "elapsed_s": 2708, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7522, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T02:34:44", "start": "2026-08-13T02:57:02", "end": "2026-08-13T03:45:03", "elapsed_s": 2881, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T02:34:46", "start": "2026-08-13T02:57:02", "end": "2026-08-13T03:45:53", "elapsed_s": 2931, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T03:42:18", "start": "2026-08-13T03:56:44", "end": "2026-08-13T04:47:53", "elapsed_s": 3069, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T03:45:10", "start": "2026-08-13T03:56:44", "end": "2026-08-13T04:47:53", "elapsed_s": 3069, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T03:46:59", "start": "2026-08-13T03:56:44", "end": "2026-08-13T04:47:53", "elapsed_s": 3069, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T04:48:09", "start": "2026-08-13T06:35:50", "end": "2026-08-13T08:16:27", "elapsed_s": 6037, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.6769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T04:48:09", "start": "2026-08-13T06:35:50", "end": "2026-08-13T09:00:45", "elapsed_s": 8695, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.4153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T04:49:00", "start": "2026-08-13T06:36:51", "end": "2026-08-13T08:59:10", "elapsed_s": 8539, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.3719, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T08:16:31", "start": "2026-08-13T08:22:25", "end": "2026-08-13T08:24:58", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T08:25:48", "start": "2026-08-13T08:29:02", "end": "2026-08-13T08:38:08", "elapsed_s": 546, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T08:38:59", "start": "2026-08-13T08:41:16", "end": "2026-08-13T08:58:43", "elapsed_s": 1047, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2908, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T08:59:37", "start": "2026-08-13T09:02:09", "end": "2026-08-13T09:02:43", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:00:04", "start": "2026-08-13T09:02:09", "end": "2026-08-13T09:19:42", "elapsed_s": 1053, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2925, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:01:36", "start": "2026-08-13T09:04:11", "end": "2026-08-13T09:19:42", "elapsed_s": 931, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2586, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:02:46", "start": "2026-08-13T09:05:13", "end": "2026-08-13T09:13:55", "elapsed_s": 522, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.145, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:14:47", "start": "2026-08-13T09:17:26", "end": "2026-08-13T09:19:42", "elapsed_s": 136, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0378, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:20:33", "start": "2026-08-13T09:25:35", "end": "2026-08-13T09:33:30", "elapsed_s": 475, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1319, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:20:35", "start": "2026-08-13T09:26:36", "end": "2026-08-13T09:32:59", "elapsed_s": 383, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1064, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:20:48", "start": "2026-08-13T09:29:09", "end": "2026-08-13T10:19:53", "elapsed_s": 3044, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8456, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:33:48", "start": "2026-08-13T09:36:47", "end": "2026-08-13T09:41:47", "elapsed_s": 300, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0833, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:34:21", "start": "2026-08-13T09:39:50", "end": "2026-08-13T09:41:52", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:42:38", "start": "2026-08-13T09:45:57", "end": "2026-08-13T09:46:27", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:42:44", "start": "2026-08-13T09:51:33", "end": "2026-08-13T09:56:10", "elapsed_s": 277, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0769, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:47:23", "start": "2026-08-13T09:59:13", "end": "2026-08-13T10:01:15", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T09:57:06", "start": "2026-08-13T10:06:55", "end": "2026-08-13T10:19:53", "elapsed_s": 778, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2161, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:02:14", "start": "2026-08-13T10:07:10", "end": "2026-08-13T10:18:06", "elapsed_s": 656, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1822, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:18:58", "start": "2026-08-13T10:21:09", "end": "2026-08-13T10:23:27", "elapsed_s": 138, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:20:45", "start": "2026-08-13T10:23:42", "end": "2026-08-13T10:23:51", "elapsed_s": 9, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:20:47", "start": "2026-08-13T10:24:12", "end": "2026-08-13T10:33:21", "elapsed_s": 549, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1525, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:24:17", "start": "2026-08-13T10:34:25", "end": "2026-08-13T10:36:01", "elapsed_s": 96, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0267, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:24:40", "start": "2026-08-13T10:34:25", "end": "2026-08-13T10:36:32", "elapsed_s": 127, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0353, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:34:12", "start": "2026-08-13T10:37:29", "end": "2026-08-13T10:48:42", "elapsed_s": 673, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1869, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:36:54", "start": "2026-08-13T10:39:01", "end": "2026-08-13T10:54:14", "elapsed_s": 913, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.2536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:37:22", "start": "2026-08-13T10:47:10", "end": "2026-08-13T10:49:10", "elapsed_s": 120, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:49:33", "start": "2026-08-13T10:53:17", "end": "2026-08-13T10:54:18", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:50:00", "start": "2026-08-13T10:57:20", "end": "2026-08-13T10:58:36", "elapsed_s": 76, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:55:09", "start": "2026-08-13T10:57:20", "end": "2026-08-13T11:42:04", "elapsed_s": 2684, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.7456, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:55:11", "start": "2026-08-13T10:57:20", "end": "2026-08-13T11:42:04", "elapsed_s": 2684, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.7456, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T10:59:27", "start": "2026-08-13T11:02:55", "end": "2026-08-13T11:05:42", "elapsed_s": 167, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0464, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T11:06:33", "start": "2026-08-13T11:14:08", "end": "2026-08-13T11:23:13", "elapsed_s": 545, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T11:24:03", "start": "2026-08-13T11:30:27", "end": "2026-08-13T11:38:27", "elapsed_s": 480, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T11:39:20", "start": "2026-08-13T11:43:12", "end": "2026-08-13T13:03:30", "elapsed_s": 4818, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.3383, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T11:43:08", "start": "2026-08-13T11:52:24", "end": "2026-08-13T12:10:33", "elapsed_s": 1089, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T11:43:08", "start": "2026-08-13T11:52:54", "end": "2026-08-13T12:10:46", "elapsed_s": 1072, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2978, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T12:11:30", "start": "2026-08-13T12:15:20", "end": "2026-08-13T12:16:55", "elapsed_s": 95, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T12:11:50", "start": "2026-08-13T12:15:20", "end": "2026-08-13T13:03:30", "elapsed_s": 2890, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.8028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T12:17:43", "start": "2026-08-13T12:20:26", "end": "2026-08-13T12:27:03", "elapsed_s": 397, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T12:27:06", "start": "2026-08-13T12:29:36", "end": "2026-08-13T12:31:38", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T12:32:30", "start": "2026-08-13T12:37:14", "end": "2026-08-13T12:53:02", "elapsed_s": 948, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2633, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T12:53:54", "start": "2026-08-13T12:56:05", "end": "2026-08-13T13:18:24", "elapsed_s": 1339, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3719, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T13:04:33", "start": "2026-08-13T13:07:11", "end": "2026-08-13T13:14:25", "elapsed_s": 434, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1206, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T13:04:33", "start": "2026-08-13T13:08:48", "end": "2026-08-13T13:19:05", "elapsed_s": 617, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1714, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T13:15:15", "start": "2026-08-13T13:20:31", "end": "2026-08-13T13:20:40", "elapsed_s": 9, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T13:19:20", "start": "2026-08-13T13:21:31", "end": "2026-08-13T13:48:45", "elapsed_s": 1634, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4539, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T13:20:12", "start": "2026-08-13T13:22:32", "end": "2026-08-13T13:49:10", "elapsed_s": 1598, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4439, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T13:21:31", "start": "2026-08-13T13:30:10", "end": "2026-08-13T13:48:48", "elapsed_s": 1118, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T13:49:38", "start": "2026-08-13T13:53:50", "end": "2026-08-13T14:19:10", "elapsed_s": 1520, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4222, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T13:49:42", "start": "2026-08-13T13:53:50", "end": "2026-08-13T14:09:44", "elapsed_s": 954, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.265, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T13:50:02", "start": "2026-08-13T14:07:10", "end": "2026-08-13T14:36:47", "elapsed_s": 1777, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4936, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T14:10:38", "start": "2026-08-13T14:14:59", "end": "2026-08-13T14:18:50", "elapsed_s": 231, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0642, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T14:19:43", "start": "2026-08-13T14:22:45", "end": "2026-08-13T14:28:22", "elapsed_s": 337, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0936, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T14:20:07", "start": "2026-08-13T14:25:23", "end": "2026-08-13T14:28:49", "elapsed_s": 206, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0572, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T14:29:12", "start": "2026-08-13T14:34:20", "end": "2026-08-13T14:36:29", "elapsed_s": 129, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0358, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T14:29:38", "start": "2026-08-13T14:34:52", "end": "2026-08-13T14:36:41", "elapsed_s": 109, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T14:36:43", "start": "2026-08-13T15:46:53", "end": "2026-08-13T15:51:37", "elapsed_s": 284, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0789, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T14:37:21", "start": "2026-08-13T15:46:53", "end": "2026-08-13T15:47:24", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T14:37:39", "start": "2026-08-13T15:47:23", "end": "2026-08-13T15:51:41", "elapsed_s": 258, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0717, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T15:48:18", "start": "2026-08-13T15:50:59", "end": "2026-08-13T16:33:48", "elapsed_s": 2569, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.7136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T15:52:28", "start": "2026-08-13T15:55:04", "end": "2026-08-13T15:59:38", "elapsed_s": 274, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0761, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T15:52:31", "start": "2026-08-13T15:55:04", "end": "2026-08-13T16:41:32", "elapsed_s": 2788, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7744, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T15:59:40", "start": "2026-08-13T16:02:07", "end": "2026-08-13T16:29:03", "elapsed_s": 1616, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4489, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T16:30:06", "start": "2026-08-13T16:32:16", "end": "2026-08-13T16:41:27", "elapsed_s": 551, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1531, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T16:34:44", "start": "2026-08-13T16:37:05", "end": "2026-08-13T16:41:15", "elapsed_s": 250, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0694, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T16:42:04", "start": "2026-08-13T16:44:31", "end": "2026-08-13T16:58:37", "elapsed_s": 846, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.235, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T16:42:17", "start": "2026-08-13T16:45:33", "end": "2026-08-13T16:59:02", "elapsed_s": 809, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2247, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T16:42:36", "start": "2026-08-13T16:45:33", "end": "2026-08-13T17:26:59", "elapsed_s": 2486, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6906, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T16:59:04", "start": "2026-08-13T17:01:27", "end": "2026-08-13T17:02:31", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T16:59:28", "start": "2026-08-13T17:02:33", "end": "2026-08-13T17:24:58", "elapsed_s": 1345, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3736, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T17:02:33", "start": "2026-08-13T17:05:02", "end": "2026-08-13T17:08:38", "elapsed_s": 216, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.06, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T17:09:30", "start": "2026-08-13T17:14:12", "end": "2026-08-13T17:15:39", "elapsed_s": 87, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T17:16:32", "start": "2026-08-13T17:21:25", "end": "2026-08-13T17:28:24", "elapsed_s": 419, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1164, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T17:25:49", "start": "2026-08-13T17:29:05", "end": "2026-08-13T17:29:40", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T17:27:49", "start": "2026-08-13T17:36:14", "end": "2026-08-13T17:51:53", "elapsed_s": 939, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2608, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T17:29:14", "start": "2026-08-13T17:53:13", "end": "2026-08-13T18:06:48", "elapsed_s": 815, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T17:30:31", "start": "2026-08-13T18:07:41", "end": "2026-08-13T18:39:04", "elapsed_s": 1883, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5231, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T17:52:44", "start": "2026-08-13T18:07:41", "end": "2026-08-13T18:39:32", "elapsed_s": 1911, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5308, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T18:07:38", "start": "2026-08-13T18:16:28", "end": "2026-08-13T18:54:32", "elapsed_s": 2284, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.6344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T18:40:00", "start": "2026-08-13T18:47:33", "end": "2026-08-13T19:00:02", "elapsed_s": 749, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T18:40:28", "start": "2026-08-13T18:48:03", "end": "2026-08-13T19:00:32", "elapsed_s": 749, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T18:55:30", "start": "2026-08-13T18:57:46", "end": "2026-08-13T19:00:19", "elapsed_s": 153, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T19:00:52", "start": "2026-08-13T19:03:53", "end": "2026-08-13T19:43:57", "elapsed_s": 2404, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6678, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T19:01:18", "start": "2026-08-13T19:07:28", "end": "2026-08-13T19:32:08", "elapsed_s": 1480, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.4111, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T19:01:27", "start": "2026-08-13T19:07:28", "end": "2026-08-13T19:36:44", "elapsed_s": 1756, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.4878, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T19:32:10", "start": "2026-08-13T19:44:58", "end": "2026-08-13T19:49:53", "elapsed_s": 295, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0819, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T19:37:36", "start": "2026-08-13T19:45:28", "end": "2026-08-13T19:50:16", "elapsed_s": 288, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.08, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T19:44:58", "start": "2026-08-13T19:51:09", "end": "2026-08-13T20:14:28", "elapsed_s": 1399, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3886, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T19:50:42", "start": "2026-08-13T19:57:17", "end": "2026-08-13T20:14:56", "elapsed_s": 1059, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2942, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T19:51:06", "start": "2026-08-13T20:02:54", "end": "2026-08-13T21:48:20", "elapsed_s": 6326, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 1.7572, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T20:15:23", "start": "2026-08-13T20:17:43", "end": "2026-08-13T20:26:50", "elapsed_s": 547, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1519, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T20:15:52", "start": "2026-08-13T20:22:19", "end": "2026-08-13T20:32:28", "elapsed_s": 609, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1692, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T20:27:39", "start": "2026-08-13T20:33:07", "end": "2026-08-13T20:44:52", "elapsed_s": 705, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1958, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T20:33:20", "start": "2026-08-13T20:37:12", "end": "2026-08-13T21:05:18", "elapsed_s": 1686, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4683, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T20:44:56", "start": "2026-08-13T20:53:35", "end": "2026-08-13T21:04:28", "elapsed_s": 653, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1814, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T21:05:20", "start": "2026-08-13T21:09:27", "end": "2026-08-13T21:10:01", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T21:06:20", "start": "2026-08-13T21:10:58", "end": "2026-08-13T21:13:43", "elapsed_s": 165, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0458, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T21:10:51", "start": "2026-08-13T21:14:33", "end": "2026-08-13T22:11:03", "elapsed_s": 3390, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9417, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T21:14:33", "start": "2026-08-13T21:22:44", "end": "2026-08-13T22:11:39", "elapsed_s": 2935, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T21:49:24", "start": "2026-08-13T21:54:31", "end": "2026-08-13T22:23:12", "elapsed_s": 1721, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4781, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T22:11:59", "start": "2026-08-13T22:15:56", "end": "2026-08-13T22:20:28", "elapsed_s": 272, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0756, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T22:12:39", "start": "2026-08-13T22:16:57", "end": "2026-08-13T22:21:28", "elapsed_s": 271, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0753, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T22:21:20", "start": "2026-08-14T00:33:26", "end": "2026-08-14T00:35:24", "elapsed_s": 118, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0328, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T22:22:17", "start": "2026-08-14T00:33:44", "end": "2026-08-14T00:42:04", "elapsed_s": 500, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1389, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-13T22:24:08", "start": "2026-08-14T00:33:44", "end": "2026-08-14T00:42:08", "elapsed_s": 504, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.14, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T00:36:13", "start": "2026-08-14T00:44:38", "end": "2026-08-14T04:13:00", "elapsed_s": 12502, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.4728, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T00:42:06", "start": "2026-08-14T00:45:12", "end": "2026-08-14T04:13:00", "elapsed_s": 12468, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.4633, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T00:43:11", "start": "2026-08-14T00:45:12", "end": "2026-08-14T02:29:28", "elapsed_s": 6256, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.7378, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T02:30:25", "start": "2026-08-14T02:33:28", "end": "2026-08-14T02:36:35", "elapsed_s": 187, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0519, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T02:37:32", "start": "2026-08-14T02:44:51", "end": "2026-08-14T02:46:03", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T02:46:56", "start": "2026-08-14T02:48:58", "end": "2026-08-14T02:49:29", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T02:50:25", "start": "2026-08-14T02:54:37", "end": "2026-08-14T02:56:11", "elapsed_s": 94, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T02:57:09", "start": "2026-08-14T02:59:16", "end": "2026-08-14T03:01:17", "elapsed_s": 121, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0336, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T03:02:10", "start": "2026-08-14T03:08:35", "end": "2026-08-14T03:09:39", "elapsed_s": 64, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0178, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T03:10:34", "start": "2026-08-14T03:12:49", "end": "2026-08-14T03:15:29", "elapsed_s": 160, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0444, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T03:16:40", "start": "2026-08-14T03:19:28", "end": "2026-08-14T03:20:56", "elapsed_s": 88, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T03:21:52", "start": "2026-08-14T03:28:09", "end": "2026-08-14T03:28:54", "elapsed_s": 45, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0125, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T03:29:44", "start": "2026-08-14T03:32:14", "end": "2026-08-14T03:47:32", "elapsed_s": 918, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.255, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T03:48:27", "start": "2026-08-14T03:53:31", "end": "2026-08-14T09:06:36", "elapsed_s": 18785, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 5.2181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T04:13:58", "start": "2026-08-14T04:16:07", "end": "2026-08-14T04:17:57", "elapsed_s": 110, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0306, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T04:14:07", "start": "2026-08-14T04:16:16", "end": "2026-08-14T04:17:31", "elapsed_s": 75, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0208, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T04:18:25", "start": "2026-08-14T04:22:22", "end": "2026-08-14T04:30:54", "elapsed_s": 512, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1422, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T04:18:46", "start": "2026-08-14T04:28:35", "end": "2026-08-14T08:21:23", "elapsed_s": 13968, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 3.88, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T04:31:46", "start": "2026-08-14T04:34:22", "end": "2026-08-14T06:30:32", "elapsed_s": 6970, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.9361, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T06:31:29", "start": "2026-08-14T06:34:09", "end": "2026-08-14T06:36:35", "elapsed_s": 146, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0406, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T06:37:25", "start": "2026-08-14T06:40:24", "end": "2026-08-14T07:41:30", "elapsed_s": 3666, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.0183, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T07:42:36", "start": "2026-08-14T07:45:35", "end": "2026-08-14T07:46:24", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T07:47:15", "start": "2026-08-14T07:59:53", "end": "2026-08-14T09:44:15", "elapsed_s": 6262, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.7394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T08:21:25", "start": "2026-08-14T08:25:57", "end": "2026-08-14T08:28:01", "elapsed_s": 124, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T08:28:51", "start": "2026-08-14T08:34:45", "end": "2026-08-14T10:04:29", "elapsed_s": 5384, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.4956, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T09:07:27", "start": "2026-08-14T09:11:54", "end": "2026-08-14T09:44:43", "elapsed_s": 1969, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5469, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T09:45:05", "start": "2026-08-14T09:48:35", "end": "2026-08-14T10:02:07", "elapsed_s": 812, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.2256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T09:45:35", "start": "2026-08-14T09:49:05", "end": "2026-08-14T09:50:25", "elapsed_s": 80, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0222, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T09:51:15", "start": "2026-08-14T09:55:46", "end": "2026-08-14T10:05:03", "elapsed_s": 557, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1547, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T10:02:55", "start": "2026-08-14T10:05:59", "end": "2026-08-14T11:21:25", "elapsed_s": 4526, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.2572, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T10:05:19", "start": "2026-08-14T10:07:31", "end": "2026-08-14T13:50:05", "elapsed_s": 13354, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 3.7094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T10:05:57", "start": "2026-08-14T10:10:35", "end": "2026-08-14T11:20:59", "elapsed_s": 4224, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.1733, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T11:21:53", "start": "2026-08-14T11:28:35", "end": "2026-08-14T13:50:05", "elapsed_s": 8490, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.3583, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T11:22:17", "start": "2026-08-14T11:28:35", "end": "2026-08-14T11:39:28", "elapsed_s": 653, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1814, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T11:40:19", "start": "2026-08-14T11:44:36", "end": "2026-08-14T13:51:36", "elapsed_s": 7620, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 2.1167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T13:50:54", "start": "2026-08-14T13:55:40", "end": "2026-08-14T14:04:46", "elapsed_s": 546, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T13:50:56", "start": "2026-08-14T13:55:40", "end": "2026-08-14T14:04:46", "elapsed_s": 546, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T13:52:27", "start": "2026-08-14T13:58:45", "end": "2026-08-14T14:04:46", "elapsed_s": 361, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:05:36", "start": "2026-08-14T14:07:59", "end": "2026-08-14T14:21:41", "elapsed_s": 822, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:05:37", "start": "2026-08-14T14:15:11", "end": "2026-08-14T14:16:51", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:05:38", "start": "2026-08-14T14:15:42", "end": "2026-08-14T14:16:28", "elapsed_s": 46, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:17:18", "start": "2026-08-14T14:23:02", "end": "2026-08-14T14:23:33", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:17:40", "start": "2026-08-14T14:24:05", "end": "2026-08-14T14:24:21", "elapsed_s": 16, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:22:34", "start": "2026-08-14T14:24:36", "end": "2026-08-14T14:24:51", "elapsed_s": 15, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:24:25", "start": "2026-08-14T14:27:43", "end": "2026-08-14T14:28:02", "elapsed_s": 19, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:25:11", "start": "2026-08-14T14:28:14", "end": "2026-08-14T14:28:43", "elapsed_s": 29, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:25:42", "start": "2026-08-14T14:28:14", "end": "2026-08-14T14:28:51", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:28:53", "start": "2026-08-14T14:32:26", "end": "2026-08-14T14:32:43", "elapsed_s": 17, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:29:33", "start": "2026-08-14T14:32:26", "end": "2026-08-14T14:32:46", "elapsed_s": 20, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0056, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:29:41", "start": "2026-08-14T14:32:26", "end": "2026-08-14T14:32:50", "elapsed_s": 24, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:32:46", "start": "2026-08-14T14:35:35", "end": "2026-08-14T14:36:43", "elapsed_s": 68, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0189, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:33:37", "start": "2026-08-14T14:36:07", "end": "2026-08-14T15:31:30", "elapsed_s": 3323, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9231, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:33:40", "start": "2026-08-14T14:36:07", "end": "2026-08-14T15:31:34", "elapsed_s": 3327, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.9242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T14:37:35", "start": "2026-08-14T14:40:22", "end": "2026-08-14T15:31:27", "elapsed_s": 3065, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T15:31:31", "start": "2026-08-14T15:34:41", "end": "2026-08-14T16:45:04", "elapsed_s": 4223, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.1731, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T15:32:21", "start": "2026-08-14T15:35:12", "end": "2026-08-14T16:45:25", "elapsed_s": 4213, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 1.1703, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T15:32:28", "start": "2026-08-14T15:35:12", "end": "2026-08-14T15:44:03", "elapsed_s": 531, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1475, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T15:44:56", "start": "2026-08-14T15:55:26", "end": "2026-08-14T16:45:48", "elapsed_s": 3022, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T16:45:57", "start": "2026-08-14T16:52:32", "end": "2026-08-14T17:28:53", "elapsed_s": 2181, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.6058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T16:46:15", "start": "2026-08-14T16:52:32", "end": "2026-08-14T17:45:22", "elapsed_s": 3170, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.8806, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T16:46:41", "start": "2026-08-14T16:53:33", "end": "2026-08-14T16:55:46", "elapsed_s": 133, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0369, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T16:55:48", "start": "2026-08-14T16:58:10", "end": "2026-08-14T16:59:12", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T17:00:02", "start": "2026-08-14T17:02:16", "end": "2026-08-14T17:45:44", "elapsed_s": 2608, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.7244, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T17:28:55", "start": "2026-08-14T17:35:30", "end": "2026-08-14T17:37:30", "elapsed_s": 120, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T17:38:25", "start": "2026-08-14T17:44:12", "end": "2026-08-14T17:46:14", "elapsed_s": 122, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0339, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T17:46:11", "start": "2026-08-14T17:50:52", "end": "2026-08-14T17:55:00", "elapsed_s": 248, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0689, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T17:46:37", "start": "2026-08-14T17:56:32", "end": "2026-08-14T17:57:58", "elapsed_s": 86, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T17:47:04", "start": "2026-08-14T17:56:32", "end": "2026-08-14T17:57:58", "elapsed_s": 86, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0239, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T17:55:53", "start": "2026-08-14T17:59:05", "end": "2026-08-14T18:15:10", "elapsed_s": 965, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2681, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T17:58:48", "start": "2026-08-14T18:04:47", "end": "2026-08-14T18:07:52", "elapsed_s": 185, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0514, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T17:58:48", "start": "2026-08-14T18:08:54", "end": "2026-08-14T18:13:57", "elapsed_s": 303, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0842, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T18:08:43", "start": "2026-08-14T18:10:58", "end": "2026-08-14T18:13:42", "elapsed_s": 164, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0456, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T18:13:44", "start": "2026-08-14T18:16:05", "end": "2026-08-14T18:16:36", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T18:14:48", "start": "2026-08-14T18:17:06", "end": "2026-08-14T18:45:22", "elapsed_s": 1696, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4711, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T18:16:01", "start": "2026-08-14T18:19:09", "end": "2026-08-14T18:23:37", "elapsed_s": 268, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0744, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T18:17:25", "start": "2026-08-14T18:19:40", "end": "2026-08-14T18:30:35", "elapsed_s": 655, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1819, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T18:23:40", "start": "2026-08-14T18:33:40", "end": "2026-08-14T18:45:22", "elapsed_s": 702, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.195, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T18:31:25", "start": "2026-08-14T18:34:42", "end": "2026-08-14T18:45:22", "elapsed_s": 640, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1778, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T18:46:11", "start": "2026-08-14T19:00:36", "end": "2026-08-14T19:02:41", "elapsed_s": 125, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0347, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T18:46:12", "start": "2026-08-14T19:01:38", "end": "2026-08-14T19:02:00", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T18:46:15", "start": "2026-08-14T19:02:40", "end": "2026-08-14T19:17:48", "elapsed_s": 908, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2522, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:02:50", "start": "2026-08-14T19:05:46", "end": "2026-08-14T19:16:41", "elapsed_s": 655, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1819, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:03:35", "start": "2026-08-14T19:05:46", "end": "2026-08-14T19:17:02", "elapsed_s": 676, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1878, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:17:31", "start": "2026-08-14T19:19:39", "end": "2026-08-14T19:21:28", "elapsed_s": 109, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:17:52", "start": "2026-08-14T19:20:09", "end": "2026-08-14T19:24:24", "elapsed_s": 255, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0708, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:18:39", "start": "2026-08-14T19:22:43", "end": "2026-08-14T19:34:46", "elapsed_s": 723, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:22:18", "start": "2026-08-14T19:24:46", "end": "2026-08-14T19:33:37", "elapsed_s": 531, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1475, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:25:16", "start": "2026-08-14T19:27:21", "end": "2026-08-14T19:34:03", "elapsed_s": 402, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:34:28", "start": "2026-08-14T19:38:37", "end": "2026-08-14T19:43:03", "elapsed_s": 266, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0739, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:34:52", "start": "2026-08-14T19:42:43", "end": "2026-08-14T19:51:49", "elapsed_s": 546, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1517, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:35:36", "start": "2026-08-14T19:43:14", "end": "2026-08-14T19:43:44", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:43:05", "start": "2026-08-14T19:45:17", "end": "2026-08-14T19:51:03", "elapsed_s": 346, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0961, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:44:38", "start": "2026-08-14T19:46:45", "end": "2026-08-14T19:54:59", "elapsed_s": 494, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:51:54", "start": "2026-08-14T19:54:29", "end": "2026-08-14T19:58:35", "elapsed_s": 246, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0683, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:52:40", "start": "2026-08-14T19:56:02", "end": "2026-08-14T20:05:05", "elapsed_s": 543, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:55:50", "start": "2026-08-14T19:59:06", "end": "2026-08-14T20:05:34", "elapsed_s": 388, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T19:59:26", "start": "2026-08-14T20:01:40", "end": "2026-08-14T20:06:59", "elapsed_s": 319, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0886, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:05:56", "start": "2026-08-14T20:08:19", "end": "2026-08-14T20:08:33", "elapsed_s": 14, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0039, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:06:26", "start": "2026-08-14T20:09:52", "end": "2026-08-14T20:11:04", "elapsed_s": 72, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.02, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:07:55", "start": "2026-08-14T20:10:23", "end": "2026-08-14T20:10:49", "elapsed_s": 26, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0072, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:09:22", "start": "2026-08-14T20:11:24", "end": "2026-08-14T20:12:20", "elapsed_s": 56, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0156, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:11:40", "start": "2026-08-14T20:13:57", "end": "2026-08-14T20:15:02", "elapsed_s": 65, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:11:53", "start": "2026-08-14T20:14:59", "end": "2026-08-14T20:15:24", "elapsed_s": 25, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0069, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:13:16", "start": "2026-08-14T20:16:00", "end": "2026-08-14T20:31:38", "elapsed_s": 938, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2606, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:15:54", "start": "2026-08-14T20:18:02", "end": "2026-08-14T20:31:18", "elapsed_s": 796, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2211, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:16:13", "start": "2026-08-14T20:19:03", "end": "2026-08-14T20:34:00", "elapsed_s": 897, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2492, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:31:20", "start": "2026-08-14T20:33:24", "end": "2026-08-14T20:37:46", "elapsed_s": 262, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0728, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:32:29", "start": "2026-08-14T20:35:58", "end": "2026-08-14T20:49:47", "elapsed_s": 829, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:34:49", "start": "2026-08-14T20:36:59", "end": "2026-08-14T21:00:03", "elapsed_s": 1384, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3844, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:38:36", "start": "2026-08-14T20:43:38", "end": "2026-08-14T20:47:06", "elapsed_s": 208, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0578, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:47:56", "start": "2026-08-14T20:51:19", "end": "2026-08-14T20:55:07", "elapsed_s": 228, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0633, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:50:37", "start": "2026-08-14T20:52:51", "end": "2026-08-14T20:59:07", "elapsed_s": 376, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1044, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:55:58", "start": "2026-08-14T20:58:29", "end": "2026-08-14T20:59:00", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:59:49", "start": "2026-08-14T21:02:03", "end": "2026-08-14T21:06:44", "elapsed_s": 281, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0781, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T20:59:57", "start": "2026-08-14T21:02:34", "end": "2026-08-14T21:02:40", "elapsed_s": 6, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:00:54", "start": "2026-08-14T21:03:36", "end": "2026-08-14T21:03:43", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:03:30", "start": "2026-08-14T21:06:09", "end": "2026-08-14T21:17:54", "elapsed_s": 705, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1958, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:04:34", "start": "2026-08-14T21:08:12", "end": "2026-08-14T21:11:16", "elapsed_s": 184, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0511, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:07:34", "start": "2026-08-14T21:10:14", "end": "2026-08-14T21:11:16", "elapsed_s": 62, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0172, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:12:05", "start": "2026-08-14T21:17:25", "end": "2026-08-14T21:17:29", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:12:06", "start": "2026-08-14T21:17:25", "end": "2026-08-14T21:18:57", "elapsed_s": 92, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0256, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:17:31", "start": "2026-08-14T21:20:29", "end": "2026-08-14T21:26:37", "elapsed_s": 368, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:18:44", "start": "2026-08-14T21:23:03", "end": "2026-08-14T21:25:53", "elapsed_s": 170, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0472, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:19:47", "start": "2026-08-14T21:25:36", "end": "2026-08-14T21:26:07", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:26:40", "start": "2026-08-14T21:39:59", "end": "2026-08-14T21:40:06", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:26:42", "start": "2026-08-14T21:40:29", "end": "2026-08-14T21:40:48", "elapsed_s": 19, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0053, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:26:56", "start": "2026-08-14T21:47:41", "end": "2026-08-14T22:13:47", "elapsed_s": 1566, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.435, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:40:57", "start": "2026-08-14T21:47:41", "end": "2026-08-14T21:56:44", "elapsed_s": 543, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1508, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:41:37", "start": "2026-08-14T21:51:17", "end": "2026-08-14T21:57:07", "elapsed_s": 350, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0972, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:56:46", "start": "2026-08-14T21:59:29", "end": "2026-08-14T22:01:08", "elapsed_s": 99, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T21:57:57", "start": "2026-08-14T22:00:31", "end": "2026-08-14T22:05:07", "elapsed_s": 276, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:01:57", "start": "2026-08-14T22:04:38", "end": "2026-08-14T22:12:46", "elapsed_s": 488, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:05:09", "start": "2026-08-14T22:07:13", "end": "2026-08-14T22:13:06", "elapsed_s": 353, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0981, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:12:47", "start": "2026-08-14T22:14:53", "end": "2026-08-14T22:14:54", "elapsed_s": 1, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:13:57", "start": "2026-08-14T22:16:25", "end": "2026-08-14T22:20:40", "elapsed_s": 255, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0708, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:14:36", "start": "2026-08-14T22:17:27", "end": "2026-08-14T22:28:08", "elapsed_s": 641, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1781, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:15:43", "start": "2026-08-14T22:17:58", "end": "2026-08-14T22:20:09", "elapsed_s": 131, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0364, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:20:43", "start": "2026-08-14T22:25:41", "end": "2026-08-14T22:25:43", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:20:59", "start": "2026-08-14T22:26:13", "end": "2026-08-14T22:30:48", "elapsed_s": 275, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0764, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:26:37", "start": "2026-08-14T22:28:46", "end": "2026-08-14T22:31:08", "elapsed_s": 142, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0394, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:28:58", "start": "2026-08-14T22:33:51", "end": "2026-08-14T22:47:36", "elapsed_s": 825, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2292, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:31:39", "start": "2026-08-14T22:33:51", "end": "2026-08-14T22:35:09", "elapsed_s": 78, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0217, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:31:59", "start": "2026-08-14T22:34:52", "end": "2026-08-14T22:34:53", "elapsed_s": 1, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:35:44", "start": "2026-08-14T22:38:26", "end": "2026-08-14T22:47:08", "elapsed_s": 522, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.145, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:36:01", "start": "2026-08-14T22:38:56", "end": "2026-08-14T22:48:09", "elapsed_s": 553, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1536, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:47:59", "start": "2026-08-14T22:50:08", "end": "2026-08-14T23:10:28", "elapsed_s": 1220, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3389, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:48:26", "start": "2026-08-14T22:53:15", "end": "2026-08-14T22:56:55", "elapsed_s": 220, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0611, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:48:59", "start": "2026-08-14T22:53:15", "end": "2026-08-14T22:54:04", "elapsed_s": 49, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0136, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:54:53", "start": "2026-08-14T22:57:09", "end": "2026-08-14T23:05:09", "elapsed_s": 480, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T22:57:45", "start": "2026-08-14T22:59:48", "end": "2026-08-14T22:59:55", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:00:45", "start": "2026-08-14T23:06:40", "end": "2026-08-14T23:09:08", "elapsed_s": 148, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0411, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:06:00", "start": "2026-08-14T23:08:16", "end": "2026-08-14T23:08:38", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:09:28", "start": "2026-08-14T23:11:37", "end": "2026-08-14T23:12:21", "elapsed_s": 44, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0122, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:09:59", "start": "2026-08-14T23:12:09", "end": "2026-08-14T23:14:09", "elapsed_s": 120, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:11:29", "start": "2026-08-14T23:14:28", "end": "2026-08-14T23:14:37", "elapsed_s": 9, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:13:10", "start": "2026-08-14T23:15:29", "end": "2026-08-14T23:18:07", "elapsed_s": 158, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0439, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:15:00", "start": "2026-08-14T23:19:08", "end": "2026-08-14T23:19:09", "elapsed_s": 1, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:15:28", "start": "2026-08-14T23:19:08", "end": "2026-08-14T23:19:09", "elapsed_s": 1, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:18:57", "start": "2026-08-14T23:20:58", "end": "2026-08-14T23:21:44", "elapsed_s": 46, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0128, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:19:14", "start": "2026-08-14T23:21:44", "end": "2026-08-14T23:24:04", "elapsed_s": 140, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0389, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:19:14", "start": "2026-08-14T23:22:08", "end": "2026-08-14T23:27:08", "elapsed_s": 300, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0833, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:22:37", "start": "2026-08-14T23:24:49", "end": "2026-08-14T23:27:19", "elapsed_s": 150, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0417, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:24:56", "start": "2026-08-14T23:27:08", "end": "2026-08-14T23:27:45", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:28:00", "start": "2026-08-14T23:33:09", "end": "2026-08-14T23:42:27", "elapsed_s": 558, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.155, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:28:14", "start": "2026-08-14T23:36:53", "end": "2026-08-14T23:37:23", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:28:35", "start": "2026-08-14T23:36:53", "end": "2026-08-14T23:37:54", "elapsed_s": 61, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0169, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:37:32", "start": "2026-08-14T23:40:30", "end": "2026-08-14T23:44:06", "elapsed_s": 216, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.06, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:38:50", "start": "2026-08-14T23:41:01", "end": "2026-08-14T23:45:41", "elapsed_s": 280, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0778, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:43:23", "start": "2026-08-14T23:46:12", "end": "2026-08-14T23:47:52", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:44:58", "start": "2026-08-14T23:47:13", "end": "2026-08-14T23:47:33", "elapsed_s": 20, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0056, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:46:31", "start": "2026-08-14T23:48:47", "end": "2026-08-15T00:03:10", "elapsed_s": 863, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2397, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:47:55", "start": "2026-08-14T23:50:20", "end": "2026-08-15T00:03:31", "elapsed_s": 791, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2197, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-14T23:48:26", "start": "2026-08-14T23:56:01", "end": "2026-08-15T00:02:11", "elapsed_s": 370, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:03:05", "start": "2026-08-15T00:07:59", "end": "2026-08-15T00:08:31", "elapsed_s": 32, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0089, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:03:13", "start": "2026-08-15T00:09:02", "end": "2026-08-15T00:09:10", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:04:23", "start": "2026-08-15T00:09:02", "end": "2026-08-15T00:19:41", "elapsed_s": 639, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1775, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:08:34", "start": "2026-08-15T00:12:41", "end": "2026-08-15T00:12:47", "elapsed_s": 6, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0017, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:09:19", "start": "2026-08-15T00:13:43", "end": "2026-08-15T00:13:51", "elapsed_s": 8, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0022, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:13:37", "start": "2026-08-15T00:17:22", "end": "2026-08-15T00:18:56", "elapsed_s": 94, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:14:41", "start": "2026-08-15T00:17:53", "end": "2026-08-15T00:24:11", "elapsed_s": 378, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.105, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:19:52", "start": "2026-08-15T00:22:04", "end": "2026-08-15T00:23:39", "elapsed_s": 95, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0264, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:20:34", "start": "2026-08-15T00:25:44", "end": "2026-08-15T00:33:11", "elapsed_s": 447, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1242, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:24:36", "start": "2026-08-15T00:28:51", "end": "2026-08-15T00:30:31", "elapsed_s": 100, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0278, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:25:15", "start": "2026-08-15T00:30:58", "end": "2026-08-15T00:31:40", "elapsed_s": 42, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0117, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:31:23", "start": "2026-08-15T00:35:08", "end": "2026-08-15T00:35:11", "elapsed_s": 3, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:32:37", "start": "2026-08-15T00:35:08", "end": "2026-08-15T00:36:45", "elapsed_s": 97, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0269, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:34:14", "start": "2026-08-15T00:37:43", "end": "2026-08-15T00:47:03", "elapsed_s": 560, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:36:02", "start": "2026-08-15T00:38:13", "end": "2026-08-15T00:41:11", "elapsed_s": 178, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0494, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:36:50", "start": "2026-08-15T00:41:50", "end": "2026-08-15T00:46:26", "elapsed_s": 276, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:42:02", "start": "2026-08-15T00:45:30", "end": "2026-08-15T00:46:05", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:47:01", "start": "2026-08-15T00:49:05", "end": "2026-08-15T00:52:17", "elapsed_s": 192, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0533, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:47:29", "start": "2026-08-15T00:49:36", "end": "2026-08-15T00:52:13", "elapsed_s": 157, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0436, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:47:53", "start": "2026-08-15T00:51:14", "end": "2026-08-15T00:52:48", "elapsed_s": 94, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0261, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:52:22", "start": "2026-08-15T00:55:58", "end": "2026-08-15T00:56:00", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:53:05", "start": "2026-08-15T00:57:00", "end": "2026-08-15T00:59:53", "elapsed_s": 173, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0481, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:53:39", "start": "2026-08-15T00:59:38", "end": "2026-08-15T01:00:15", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T00:56:52", "start": "2026-08-15T00:59:38", "end": "2026-08-15T01:06:55", "elapsed_s": 437, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1214, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:00:57", "start": "2026-08-15T01:03:49", "end": "2026-08-15T01:09:31", "elapsed_s": 342, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.095, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:01:05", "start": "2026-08-15T01:05:22", "end": "2026-08-15T01:07:04", "elapsed_s": 102, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0283, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:07:58", "start": "2026-08-15T01:10:35", "end": "2026-08-15T01:11:13", "elapsed_s": 38, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:08:01", "start": "2026-08-15T01:12:08", "end": "2026-08-15T01:12:12", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:10:25", "start": "2026-08-15T01:12:39", "end": "2026-08-15T01:12:43", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:12:16", "start": "2026-08-15T01:14:44", "end": "2026-08-15T01:14:49", "elapsed_s": 5, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0014, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:13:06", "start": "2026-08-15T01:15:16", "end": "2026-08-15T01:48:36", "elapsed_s": 2000, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.5556, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:13:35", "start": "2026-08-15T01:15:47", "end": "2026-08-15T01:32:05", "elapsed_s": 978, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.2717, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:15:47", "start": "2026-08-15T01:18:22", "end": "2026-08-15T01:20:28", "elapsed_s": 126, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.035, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:20:37", "start": "2026-08-15T01:25:09", "end": "2026-08-15T01:28:05", "elapsed_s": 176, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.0489, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:28:58", "start": "2026-08-15T01:32:57", "end": "2026-08-15T01:37:15", "elapsed_s": 258, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0717, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:32:58", "start": "2026-08-15T01:37:13", "end": "2026-08-15T01:37:50", "elapsed_s": 37, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0103, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:38:06", "start": "2026-08-15T01:41:34", "end": "2026-08-15T01:41:37", "elapsed_s": 3, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0008, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:38:42", "start": "2026-08-15T01:42:38", "end": "2026-08-15T01:45:17", "elapsed_s": 159, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0442, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:41:40", "start": "2026-08-15T01:46:24", "end": "2026-08-15T01:54:39", "elapsed_s": 495, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1375, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:46:19", "start": "2026-08-15T01:49:37", "end": "2026-08-15T01:50:13", "elapsed_s": 36, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.01, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:49:34", "start": "2026-08-15T01:52:47", "end": "2026-08-15T01:55:01", "elapsed_s": 134, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0372, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:51:05", "start": "2026-08-15T01:53:52", "end": "2026-08-15T02:15:17", "elapsed_s": 1285, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.3569, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:55:35", "start": "2026-08-15T02:03:12", "end": "2026-08-15T02:04:51", "elapsed_s": 99, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0275, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T01:55:52", "start": "2026-08-15T02:04:15", "end": "2026-08-15T02:11:18", "elapsed_s": 423, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1175, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:05:43", "start": "2026-08-15T02:11:34", "end": "2026-08-15T02:14:17", "elapsed_s": 163, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0453, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:11:21", "start": "2026-08-15T02:13:46", "end": "2026-08-15T02:14:55", "elapsed_s": 69, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0192, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:15:21", "start": "2026-08-15T02:17:39", "end": "2026-08-15T02:18:17", "elapsed_s": 38, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0106, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:15:52", "start": "2026-08-15T02:24:48", "end": "2026-08-15T02:33:44", "elapsed_s": 536, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1489, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:16:09", "start": "2026-08-15T02:24:48", "end": "2026-08-15T02:33:17", "elapsed_s": 509, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1414, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:19:15", "start": "2026-08-15T02:24:48", "end": "2026-08-15T02:28:03", "elapsed_s": 195, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0542, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:28:12", "start": "2026-08-15T02:30:15", "end": "2026-08-15T02:39:47", "elapsed_s": 572, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1589, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:34:10", "start": "2026-08-15T02:36:17", "end": "2026-08-15T02:36:46", "elapsed_s": 29, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:34:36", "start": "2026-08-15T02:37:58", "end": "2026-08-15T02:38:27", "elapsed_s": 29, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0081, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:37:38", "start": "2026-08-15T02:40:08", "end": "2026-08-15T02:40:18", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:39:20", "start": "2026-08-15T02:41:50", "end": "2026-08-15T02:42:17", "elapsed_s": 27, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0075, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:40:40", "start": "2026-08-15T02:43:23", "end": "2026-08-15T02:44:14", "elapsed_s": 51, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0142, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:41:09", "start": "2026-08-15T02:43:54", "end": "2026-08-15T02:45:04", "elapsed_s": 70, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0194, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:43:10", "start": "2026-08-15T02:45:31", "end": "2026-08-15T03:13:11", "elapsed_s": 1660, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.4611, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:45:10", "start": "2026-08-15T02:47:44", "end": "2026-08-15T02:48:18", "elapsed_s": 34, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0094, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:46:00", "start": "2026-08-15T02:48:17", "end": "2026-08-15T02:49:17", "elapsed_s": 60, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0167, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:49:09", "start": "2026-08-15T02:51:32", "end": "2026-08-15T02:55:20", "elapsed_s": 228, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0633, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:50:07", "start": "2026-08-15T02:52:36", "end": "2026-08-15T03:13:11", "elapsed_s": 1235, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3431, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:56:10", "start": "2026-08-15T02:58:37", "end": "2026-08-15T02:59:01", "elapsed_s": 24, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0067, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T02:59:54", "start": "2026-08-15T03:04:10", "end": "2026-08-15T03:08:30", "elapsed_s": 260, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0722, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:09:21", "start": "2026-08-15T03:12:22", "end": "2026-08-15T03:16:10", "elapsed_s": 228, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0633, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:14:02", "start": "2026-08-15T03:17:09", "end": "2026-08-15T03:17:19", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:14:05", "start": "2026-08-15T03:17:09", "end": "2026-08-15T03:17:19", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:17:02", "start": "2026-08-15T03:19:28", "end": "2026-08-15T03:20:18", "elapsed_s": 50, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0139, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:18:10", "start": "2026-08-15T03:20:34", "end": "2026-08-15T03:20:44", "elapsed_s": 10, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0028, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:18:11", "start": "2026-08-15T03:21:37", "end": "2026-08-15T03:21:44", "elapsed_s": 7, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0019, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:21:11", "start": "2026-08-15T03:23:44", "end": "2026-08-15T03:24:19", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:21:34", "start": "2026-08-15T03:24:15", "end": "2026-08-15T03:24:19", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:22:35", "start": "2026-08-15T03:25:18", "end": "2026-08-15T03:25:20", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0006, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:25:09", "start": "2026-08-15T03:27:31", "end": "2026-08-15T03:29:20", "elapsed_s": 109, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:25:09", "start": "2026-08-15T03:27:31", "end": "2026-08-15T03:28:19", "elapsed_s": 48, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:26:13", "start": "2026-08-15T03:29:08", "end": "2026-08-15T03:30:02", "elapsed_s": 54, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.015, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:29:17", "start": "2026-08-15T03:31:48", "end": "2026-08-15T03:32:19", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:29:23", "start": "2026-08-15T03:31:48", "end": "2026-08-15T03:32:19", "elapsed_s": 31, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0086, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:30:55", "start": "2026-08-15T03:33:24", "end": "2026-08-15T03:34:19", "elapsed_s": 55, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0153, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:33:11", "start": "2026-08-15T03:35:35", "end": "2026-08-15T03:35:48", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0036, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:33:11", "start": "2026-08-15T03:36:39", "end": "2026-08-15T03:37:14", "elapsed_s": 35, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0097, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:35:10", "start": "2026-08-15T03:38:14", "end": "2026-08-15T03:39:21", "elapsed_s": 67, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0186, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:36:40", "start": "2026-08-15T03:40:55", "end": "2026-08-15T03:41:22", "elapsed_s": 27, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0075, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:38:07", "start": "2026-08-15T03:45:45", "end": "2026-08-15T03:50:43", "elapsed_s": 298, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0828, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:40:13", "start": "2026-08-15T03:45:45", "end": "2026-08-15T03:51:21", "elapsed_s": 336, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0933, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:42:14", "start": "2026-08-15T03:45:45", "end": "2026-08-15T03:50:21", "elapsed_s": 276, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0767, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:50:48", "start": "2026-08-15T03:53:43", "end": "2026-08-15T03:54:11", "elapsed_s": 28, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:51:13", "start": "2026-08-15T03:53:43", "end": "2026-08-15T03:54:11", "elapsed_s": 28, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0078, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:52:15", "start": "2026-08-15T03:55:17", "end": "2026-08-15T04:02:22", "elapsed_s": 425, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1181, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:55:02", "start": "2026-08-15T03:57:27", "end": "2026-08-15T04:02:20", "elapsed_s": 293, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0814, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T03:55:10", "start": "2026-08-15T04:00:45", "end": "2026-08-15T04:01:15", "elapsed_s": 30, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0083, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:01:25", "start": "2026-08-15T04:03:56", "end": "2026-08-15T04:04:18", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:03:11", "start": "2026-08-15T04:05:32", "end": "2026-08-15T04:07:21", "elapsed_s": 109, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0303, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:03:12", "start": "2026-08-15T04:06:03", "end": "2026-08-15T04:10:21", "elapsed_s": 258, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0717, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:05:14", "start": "2026-08-15T04:08:09", "end": "2026-08-15T04:10:21", "elapsed_s": 132, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0367, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:08:16", "start": "2026-08-15T04:10:48", "end": "2026-08-15T04:10:57", "elapsed_s": 9, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0025, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:11:12", "start": "2026-08-15T04:14:00", "end": "2026-08-15T04:14:21", "elapsed_s": 21, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0058, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:11:14", "start": "2026-08-15T04:15:22", "end": "2026-08-15T04:17:22", "elapsed_s": 120, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0333, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:11:48", "start": "2026-08-15T04:15:22", "end": "2026-08-15T04:21:23", "elapsed_s": 361, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.1003, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:15:14", "start": "2026-08-15T04:20:18", "end": "2026-08-15T04:20:22", "elapsed_s": 4, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0011, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:18:18", "start": "2026-08-15T04:20:50", "end": "2026-08-15T04:21:23", "elapsed_s": 33, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0092, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:21:12", "start": "2026-08-15T04:23:25", "end": "2026-08-15T04:24:22", "elapsed_s": 57, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0158, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:22:14", "start": "2026-08-15T04:24:28", "end": "2026-08-15T04:25:22", "elapsed_s": 54, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.015, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:22:25", "start": "2026-08-15T04:25:00", "end": "2026-08-15T04:25:22", "elapsed_s": 22, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0061, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:25:18", "start": "2026-08-15T04:28:06", "end": "2026-08-15T04:28:23", "elapsed_s": 17, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0047, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T04:26:13", "start": "2026-08-15T04:29:08", "end": "2026-08-15T04:29:23", "elapsed_s": 15, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0042, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745362", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-15T04:26:18", "start": "2026-08-15T04:29:23", "end": "2026-08-15T04:29:36", "elapsed_s": 13, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0036, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745358", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-15T04:29:14", "start": "2026-08-15T04:32:47", "end": "2026-08-15T04:32:48", "elapsed_s": 1, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.0003, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "37745360", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-15T04:30:21", "start": "2026-08-15T04:33:19", "end": "2026-08-15T04:33:20", "elapsed_s": 1, "nodes": 1, "gpus": 1, "gpu_type": "l40", "gpu_hours": 0.0003, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38541302", "job_name": "rampnet_env_build", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-15T08:09:11", "start": "2026-08-15T08:09:12", "end": "2026-08-15T08:09:14", "elapsed_s": 2, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.0006, "exit_code": "127:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38541308", "job_name": "rampnet_env_build", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-15T08:10:04", "start": "2026-08-15T08:10:05", "end": "2026-08-15T09:00:57", "elapsed_s": 3052, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.8478, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38541865", "job_name": "rampnet_run_a_84", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-15T09:17:44", "start": "2026-08-15T09:17:45", "end": "2026-08-15T17:30:04", "elapsed_s": 29539, "nodes": 4, "gpus": 16, "gpu_type": "a40", "gpu_hours": 131.2844, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38541865", "job_name": "rampnet_run_a_84", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-15T17:31:06", "start": "2026-08-15T17:33:10", "end": "2026-08-15T18:32:45", "elapsed_s": 3575, "nodes": 4, "gpus": 16, "gpu_type": "a40", "gpu_hours": 15.8889, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38541865", "job_name": "rampnet_run_a_84", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-15T18:33:46", "start": "2026-08-15T18:36:12", "end": "2026-08-16T02:45:24", "elapsed_s": 29352, "nodes": 4, "gpus": 16, "gpu_type": "a40", "gpu_hours": 130.4533, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38541865", "job_name": "rampnet_run_a_84", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-16T02:46:25", "start": "2026-08-16T02:48:26", "end": "2026-08-16T05:35:30", "elapsed_s": 10024, "nodes": 4, "gpus": 16, "gpu_type": "a40", "gpu_hours": 44.5511, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38566410", "job_name": "rampnet_env_build", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-16T06:36:57", "start": "2026-08-16T06:36:58", "end": "2026-08-16T06:52:36", "elapsed_s": 938, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.2606, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38566413", "job_name": "rampnet_run_a_84", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "REQUEUED", "submit": "2026-08-16T06:37:38", "start": "2026-08-16T06:53:40", "end": "2026-08-16T15:00:25", "elapsed_s": 29205, "nodes": 4, "gpus": 16, "gpu_type": "a40", "gpu_hours": 129.8, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38566413", "job_name": "rampnet_run_a_84", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-16T15:01:25", "start": "2026-08-16T15:03:28", "end": "2026-08-16T19:50:46", "elapsed_s": 17238, "nodes": 4, "gpus": 16, "gpu_type": "a40", "gpu_hours": 76.6133, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38608870", "job_name": "yolo_env_build", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "FAILED", "submit": "2026-08-17T14:32:22", "start": "2026-08-17T14:32:28", "end": "2026-08-17T14:34:02", "elapsed_s": 94, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38611711", "job_name": "yolo_env_build", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "COMPLETED", "submit": "2026-08-17T15:47:01", "start": "2026-08-17T15:47:21", "end": "2026-08-17T16:06:44", "elapsed_s": 1163, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629391", "job_name": "probe_makelab2", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "COMPLETED", "submit": "2026-08-18T07:10:20", "start": "2026-08-18T07:10:32", "end": "2026-08-18T07:10:32", "elapsed_s": 0, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629487", "job_name": "arch_capnav", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "CANCELLED by 197096", "submit": "2026-08-18T07:37:16", "start": "2026-08-18T07:37:32", "end": "2026-08-18T07:49:03", "elapsed_s": 691, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629488", "job_name": "arch_jsomeara", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "CANCELLED by 197096", "submit": "2026-08-18T07:37:16", "start": "2026-08-18T07:37:32", "end": "2026-08-18T07:49:03", "elapsed_s": 691, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629525", "job_name": "arch_capnav", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "COMPLETED", "submit": "2026-08-18T07:49:59", "start": "2026-08-18T07:50:16", "end": "2026-08-18T07:50:39", "elapsed_s": 23, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629526", "job_name": "arch_jsomeara", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "COMPLETED", "submit": "2026-08-18T07:49:59", "start": "2026-08-18T07:50:16", "end": "2026-08-18T07:50:34", "elapsed_s": 18, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629538", "job_name": "arch_capnav", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "COMPLETED", "submit": "2026-08-18T07:52:21", "start": "2026-08-18T07:52:49", "end": "2026-08-18T08:06:10", "elapsed_s": 801, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629539", "job_name": "arch_jsomeara", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "COMPLETED", "submit": "2026-08-18T07:52:21", "start": "2026-08-18T07:52:49", "end": "2026-08-18T11:08:58", "elapsed_s": 11769, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629546", "job_name": "xfer_ckpts", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "COMPLETED", "submit": "2026-08-18T07:53:29", "start": "2026-08-18T07:53:50", "end": "2026-08-18T07:56:54", "elapsed_s": 184, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629567", "job_name": "stage_manual_panos", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt", "state": "COMPLETED", "submit": "2026-08-18T07:58:05", "start": "2026-08-18T07:58:25", "end": "2026-08-18T08:02:51", "elapsed_s": 266, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629582_1", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-18T08:01:30", "start": "2026-08-18T08:04:02", "end": "2026-08-18T08:14:10", "elapsed_s": 608, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.1689, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629582_2", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-18T08:01:30", "start": "2026-08-18T08:04:02", "end": "2026-08-18T08:14:04", "elapsed_s": 602, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.1672, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629582_3", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-18T08:01:30", "start": "2026-08-18T08:04:02", "end": "2026-08-18T08:14:25", "elapsed_s": 623, "nodes": 1, "gpus": 1, "gpu_type": "p100", "gpu_hours": 0.1731, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629582_4", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-18T08:01:30", "start": "2026-08-18T08:04:02", "end": "2026-08-18T08:14:25", "elapsed_s": 623, "nodes": 1, "gpus": 1, "gpu_type": "p100", "gpu_hours": 0.1731, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629582_5", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-18T08:01:30", "start": "2026-08-18T08:04:02", "end": "2026-08-18T08:14:25", "elapsed_s": 623, "nodes": 1, "gpus": 1, "gpu_type": "p100", "gpu_hours": 0.1731, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629582_6", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-18T08:01:30", "start": "2026-08-18T08:04:02", "end": "2026-08-18T08:14:20", "elapsed_s": 618, "nodes": 1, "gpus": 1, "gpu_type": "p100", "gpu_hours": 0.1717, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629582_7", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-18T08:01:30", "start": "2026-08-18T08:04:02", "end": "2026-08-18T08:14:20", "elapsed_s": 618, "nodes": 1, "gpus": 1, "gpu_type": "p100", "gpu_hours": 0.1717, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38629582_8", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "FAILED", "submit": "2026-08-18T08:01:30", "start": "2026-08-18T08:04:02", "end": "2026-08-18T08:14:20", "elapsed_s": 618, "nodes": 1, "gpus": 1, "gpu_type": "p100", "gpu_hours": 0.1717, "exit_code": "1:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38632718", "job_name": "jsomeara_sums", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt", "state": "COMPLETED", "submit": "2026-08-18T11:15:16", "start": "2026-08-18T11:15:33", "end": "2026-08-18T11:40:11", "elapsed_s": 1478, "nodes": 1, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38633254_1", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-18T11:49:46", "start": "2026-08-18T11:49:47", "end": "2026-08-18T12:01:23", "elapsed_s": 696, "nodes": 1, "gpus": 1, "gpu_type": "2080ti", "gpu_hours": 0.1933, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38633254_2", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-18T11:49:46", "start": "2026-08-18T11:49:47", "end": "2026-08-18T11:59:57", "elapsed_s": 610, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.1694, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38633254_3", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-18T11:49:46", "start": "2026-08-18T11:49:47", "end": "2026-08-18T12:04:17", "elapsed_s": 870, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.2417, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38633254_4", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-18T11:49:46", "start": "2026-08-18T11:49:47", "end": "2026-08-18T12:03:08", "elapsed_s": 801, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.2225, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38633254_5", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-18T11:49:46", "start": "2026-08-18T11:49:47", "end": "2026-08-18T12:04:17", "elapsed_s": 870, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.2417, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38633254_6", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-18T11:49:46", "start": "2026-08-18T11:49:47", "end": "2026-08-18T12:03:51", "elapsed_s": 844, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.2344, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38633254_7", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-18T11:49:46", "start": "2026-08-18T11:49:47", "end": "2026-08-18T12:04:14", "elapsed_s": 867, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.2408, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38633254_8", "job_name": "eval_run_a_84", "user": "jfroehli", "partition": "ckpt", "qos": "ckpt-gpu", "state": "COMPLETED", "submit": "2026-08-18T11:49:46", "start": "2026-08-18T11:49:47", "end": "2026-08-18T12:03:28", "elapsed_s": 821, "nodes": 1, "gpus": 1, "gpu_type": "a40", "gpu_hours": 0.2281, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38640313", "job_name": "rampnet_cosine_rung_135", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-18T16:51:16", "start": "2026-08-19T01:21:56", "end": "2026-08-19T02:55:53", "elapsed_s": 5637, "nodes": 4, "gpus": 16, "gpu_type": "a40", "gpu_hours": 25.0533, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38640313", "job_name": "rampnet_cosine_rung_135", "user": "jfroehli", "partition": "ckpt-all", "qos": "ckpt-gpu", "state": "PENDING", "submit": "2026-08-19T02:56:52", "start": "Unknown", "end": "Unknown", "elapsed_s": 0, "nodes": 4, "gpus": 0, "gpu_type": null, "gpu_hours": 0.0, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38657533", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "PREEMPTED", "submit": "2026-08-19T06:10:44", "start": "2026-08-19T06:12:02", "end": "2026-08-19T06:20:10", "elapsed_s": 488, "nodes": 1, "gpus": 1, "gpu_type": "l40s", "gpu_hours": 0.1356, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38657535", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "RUNNING", "submit": "2026-08-19T06:10:44", "start": "2026-08-19T06:12:33", "end": "Unknown", "elapsed_s": 1233, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.3425, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} +{"cluster": "klone", "job_id": "38657533", "job_name": "yolo_curb_ramp_train", "user": "jfroehli", "partition": "ckpt-g2", "qos": "ckpt-gpu", "state": "RUNNING", "submit": "2026-08-19T06:21:01", "start": "2026-08-19T06:23:15", "end": "Unknown", "elapsed_s": 591, "nodes": 1, "gpus": 1, "gpu_type": "h200", "gpu_hours": 0.1642, "exit_code": "0:0", "est_cost_usd": 0.0, "rate_usd_per_gpu_hour": 0.0, "rate_as_of": "2026-07-30", "recorded_at": "2026-08-19T13:37:06+00:00"} diff --git a/analysis_out/usage_log.jsonl b/analysis_out/usage_log.jsonl index d7c56180..26e6e14c 100644 --- a/analysis_out/usage_log.jsonl +++ b/analysis_out/usage_log.jsonl @@ -1,3 +1,4 @@ {"ts": "2026-08-18T14:54:02+00:00", "bundle": "annapolis", "label": "claude-sonnet-5", "provider": "claude", "model_id": "claude-sonnet-5", "model_versions": {"claude-sonnet-5": 6}, "panos_scored": 125, "signature": {"provider": "claude", "model_id": "claude-sonnet-5", "tile": true, "max_edge": 1568, "source_max_edge": 4096, "views": [[0.0, -30.0, 90.0, 90.0, 1024, 1024], [60.0, -30.0, 90.0, 90.0, 1024, 1024], [120.0, -30.0, 90.0, 90.0, 1024, 1024], [180.0, -30.0, 90.0, 90.0, 1024, 1024], [240.0, -30.0, 90.0, 90.0, 1024, 1024], [300.0, -30.0, 90.0, 90.0, 1024, 1024]], "prompt": "Detect every curb ramp in this street-level image. A curb ramp (curb cut) is the short sloped ramp cut into a sidewalk curb at a street corner or crossing that lets a wheelchair or stroller roll from sidewalk to street. Return one tight bounding box per curb ramp. Do not box driveways, stairs, or crosswalk paint. If there are no curb ramps, return an empty list.", "effort": "low", "tool_choice": "auto", "box_tool": "{\"description\": \"Report every curb ramp visible in the image, as tight pixel bounding boxes in the image's own coordinate space. Report an empty list if there are none.\", \"input_schema\": {\"additionalProperties\": false, \"properties\": {\"boxes\": {\"items\": {\"additionalProperties\": false, \"properties\": {\"x1\": {\"type\": \"integer\"}, \"x2\": {\"type\": \"integer\"}, \"y1\": {\"type\": \"integer\"}, \"y2\": {\"type\": \"integer\"}}, \"required\": [\"x1\", \"y1\", \"x2\", \"y2\"], \"type\": \"object\"}, \"type\": \"array\"}}, \"required\": [\"boxes\"], \"type\": \"object\"}, \"name\": \"report_curb_ramps\"}"}, "stop_reasons": {"tool_use": 6}, "calls": 6, "input_tokens": 12594, "output_tokens": 480, "thoughts_tokens": 0, "cache_read_input_tokens": 0, "cache_write_input_tokens": 0, "est_cost_usd": 0.03, "pricing": {"input_per_m": 2.0, "output_per_m": 10.0, "cache_read_per_m": 0.2, "cache_write_per_m": 2.5, "as_of": "2026-08-15", "note": "Vertex `global`; promotional launch pricing through 2026-08-31, $3.00/$15.00 after. Regional +10%."}} {"ts": "2026-08-18T23:29:11+00:00", "bundle": "richmond", "label": "claude-opus-5", "provider": "claude", "model_id": "claude-opus-5", "model_versions": {"claude-opus-5": 6}, "panos_scored": 1, "signature": {"provider": "claude", "model_id": "claude-opus-5", "tile": true, "max_edge": 1568, "source_max_edge": 4096, "views": [[0.0, -30.0, 90.0, 90.0, 1024, 1024], [60.0, -30.0, 90.0, 90.0, 1024, 1024], [120.0, -30.0, 90.0, 90.0, 1024, 1024], [180.0, -30.0, 90.0, 90.0, 1024, 1024], [240.0, -30.0, 90.0, 90.0, 1024, 1024], [300.0, -30.0, 90.0, 90.0, 1024, 1024]], "prompt": "Detect every curb ramp in this street-level image. A curb ramp (curb cut) is the short sloped ramp cut into a sidewalk curb at a street corner or crossing that lets a wheelchair or stroller roll from sidewalk to street. Return one tight bounding box per curb ramp. Do not box driveways, stairs, or crosswalk paint. If there are no curb ramps, return an empty list.", "effort": "low", "tool_choice": "auto", "box_tool": "{\"description\": \"Report every curb ramp visible in the image, as tight pixel bounding boxes in the image's own coordinate space. Report an empty list if there are none.\", \"input_schema\": {\"additionalProperties\": false, \"properties\": {\"boxes\": {\"items\": {\"additionalProperties\": false, \"properties\": {\"x1\": {\"type\": \"integer\"}, \"x2\": {\"type\": \"integer\"}, \"y1\": {\"type\": \"integer\"}, \"y2\": {\"type\": \"integer\"}}, \"required\": [\"x1\", \"y1\", \"x2\", \"y2\"], \"type\": \"object\"}, \"type\": \"array\"}}, \"required\": [\"boxes\"], \"type\": \"object\"}, \"name\": \"report_curb_ramps\"}"}, "stop_reasons": {"tool_use": 6}, "calls": 6, "input_tokens": 12186, "output_tokens": 780, "thoughts_tokens": 0, "cache_read_input_tokens": 0, "cache_write_input_tokens": 0, "est_cost_usd": 0.0804, "pricing": {"input_per_m": 5.0, "output_per_m": 25.0, "cache_read_per_m": 0.5, "cache_write_per_m": 6.25, "as_of": "2026-08-15", "note": "Vertex `global`; regional +10%."}} {"ts": "2026-08-18T23:30:52+00:00", "bundle": "richmond", "label": "claude-opus-5", "provider": "claude", "model_id": "claude-opus-5", "model_versions": {"claude-opus-5": 18}, "panos_scored": 4, "signature": {"provider": "claude", "model_id": "claude-opus-5", "tile": true, "max_edge": 1568, "source_max_edge": 4096, "views": [[0.0, -30.0, 90.0, 90.0, 1024, 1024], [60.0, -30.0, 90.0, 90.0, 1024, 1024], [120.0, -30.0, 90.0, 90.0, 1024, 1024], [180.0, -30.0, 90.0, 90.0, 1024, 1024], [240.0, -30.0, 90.0, 90.0, 1024, 1024], [300.0, -30.0, 90.0, 90.0, 1024, 1024]], "prompt": "Detect every curb ramp in this street-level image. A curb ramp (curb cut) is the short sloped ramp cut into a sidewalk curb at a street corner or crossing that lets a wheelchair or stroller roll from sidewalk to street. Return one tight bounding box per curb ramp. Do not box driveways, stairs, or crosswalk paint. If there are no curb ramps, return an empty list.", "effort": "low", "tool_choice": "auto", "box_tool": "{\"description\": \"Report every curb ramp visible in the image, as tight pixel bounding boxes in the image's own coordinate space. Report an empty list if there are none.\", \"input_schema\": {\"additionalProperties\": false, \"properties\": {\"boxes\": {\"items\": {\"additionalProperties\": false, \"properties\": {\"x1\": {\"type\": \"integer\"}, \"x2\": {\"type\": \"integer\"}, \"y1\": {\"type\": \"integer\"}, \"y2\": {\"type\": \"integer\"}}, \"required\": [\"x1\", \"y1\", \"x2\", \"y2\"], \"type\": \"object\"}, \"type\": \"array\"}}, \"required\": [\"boxes\"], \"type\": \"object\"}, \"name\": \"report_curb_ramps\"}"}, "stop_reasons": {"tool_use": 18}, "calls": 18, "input_tokens": 36558, "output_tokens": 1972, "thoughts_tokens": 32, "cache_read_input_tokens": 0, "cache_write_input_tokens": 0, "est_cost_usd": 0.2321, "pricing": {"input_per_m": 5.0, "output_per_m": 25.0, "cache_read_per_m": 0.5, "cache_write_per_m": 6.25, "as_of": "2026-08-15", "note": "Vertex `global`; regional +10%."}} +{"ts": "2026-08-18T00:00:00+00:00", "kind": "recovered", "bundle": null, "label": "claude-opus-5", "provider": "claude", "model_id": "claude-opus-5", "panos_scored": null, "input_tokens": 11940249, "output_tokens": 415751, "est_cost_usd": 70.095, "pricing": {"input_per_m": 5.0, "output_per_m": 25.0, "cache_read_per_m": 0.5, "cache_write_per_m": 6.25, "as_of": "2026-08-15", "note": "Vertex `global`; regional +10%."}, "recovery": {"issue": 139, "method": "python scripts/analysis/vertex_usage.py --days 3", "recovered_on": "2026-08-19", "source": "Vertex AI Cloud Monitoring token metrics", "billed_input_tokens": 11988993, "billed_output_tokens": 418503, "billed_usd": 70.41, "already_logged_rows": 2, "already_logged_input_tokens": 48744, "already_logged_output_tokens": 2752, "already_logged_usd": 0.3125, "covers": ["bend", "budapest_district5", "clovis", "gainesville", "morgantown", "paterson", "richmond", "sao_paulo"]}, "note": "Layer-3 recovery, not a measurement. The 2026-08-18 eight-split claude-opus-5 leg wrote no row: it ran from a scratch worktree, so the default log path resolved inside that worktree and went with it when the worktree was deleted (fixed in #143 by canonical_repo_root). This row is the BILLED total for the model that day MINUS what the surviving rows already account for, so the ledger sums to the bill instead of double counting the two richmond smoke legs. It carries no per-split attribution and no elapsed_s, because per-day billing telemetry has neither: which of the eight splits spent what is permanently unrecoverable."} diff --git a/docs/compute_cost.md b/docs/compute_cost.md new file mode 100644 index 00000000..a2880307 --- /dev/null +++ b/docs/compute_cost.md @@ -0,0 +1,96 @@ +# What our cluster compute has cost + +**2,684.4 GPU-hours across 3,991 job allocations on klone since 2026-07-02, at $0.** That is +the compute side of every RampNet experiment run on Jon's klone account, and until now it was +recorded nowhere — the figures in [`tillicum.md`](tillicum.md) and +[`stage2_training_cost.md`](stage2_training_cost.md) were transcribed by hand, per job, when +someone remembered (#143). + +The ledger is `analysis_out/compute_log.jsonl`, one row per job allocation, written by: + +```bash +python scripts/analysis/slurm_usage.py --cluster klone --user jfroehli \ + --from-file docs/data/compute/sacct_klone_2026-08-19.txt \ + --by-name +``` + +The raw `sacct` dump that command parses is committed at +`docs/data/compute/sacct_klone_2026-08-19.txt`, so the numbers below are re-derivable from a +clean clone **with no cluster account** — the same reason `usage_log.jsonl` is committed while +`vertex_usage.py` needs cloud credentials. Regenerate the dump with `--print-command`. + +## `sacct -D` is worth 4.3x, and it is the whole finding + +Slurm reports only the **last incarnation** of a requeued job unless you pass `-D`. Our klone +work lives on the preemptable `ckpt` partition, where **96% of allocations end in `PREEMPTED`** +(3,780 of 3,991). So the default view does not undercount slightly — it discards nearly +everything: + +| the #51 YOLO baseline (`yolo_curb_ramp_train`) | rows | GPU-hours | +| :--- | ---: | ---: | +| `sacct -D` (every incarnation) | 3,857 | **2,046.9** | +| `sacct` without `-D` (last incarnation per job id) | 27 | 470.5 | +| | | **4.35x** | + +Any hand tally taken from a default `sacct` is short by this factor, and nothing about the +output says so. It is also why the ledger keys rows on **(cluster, job id, start)** rather than +the job id: 3,857 rows collapse to 27 keys otherwise. + +**This validates rather than contradicts the number already in the repo.** +[`tillicum.md`](tillicum.md) records *"496.5 GPU-hours consumed on the baseline since +2026-07-24 (`sacct`, all arms)"*, measured 2026-07-30. Summing this ledger over jobs **ending** +from 2026-07-24 onward, the running total crosses 496.5 GPU-hours at **2026-07-29T21:17** — +i.e. the evening before that figure was written. It reproduces to the hour, which also +confirms the original query was duplicate-inclusive. + +## What the 2,684 hours went on + +| job name | jobs | GPU-h | what it is | +| :--- | ---: | ---: | :--- | +| `yolo_curb_ramp_train` | 3,857 | 2,046.9 | the supervised YOLO baseline (#51) | +| `rampnet_run_a_84` | 6 | 528.6 | Run A, the epoch curve (#84) | +| `rampnet_cosine_rung_135` | 2 | 25.1 | the 8-epoch cosine rung (#135), still in flight as of the 2026-08-19 pull | +| `qwen_curb_ramp_compare` | 20 | 19.3 | Qwen legs of the model comparison | +| `open_curb_ramp_compare` | 16 | 8.9 | OWLv2 / Grounding DINO legs | +| `eval_run_a_84` | 16 | 3.1 | Run A evaluation | +| everything else (46 names) | 74 | 52.5 | env builds, smoke tests, data prep, eval | + +GPUs drawn, by allocation: `l40` 2,194, `l40s` 1,285, `h200` 456 (klone's `ckpt-g2` nodes), +`a40` 23, `p100` 6, `2080ti` 1. Consistent with [#135](https://github.com/ProjectSidewalk/RampNet/issues/135)'s +finding that the scavenger queue hands out whatever is free and the type is not worth waiting +for. + +**The ledger records every job on the account, not only RampNet's.** 28 allocations named +`sal-*` / `arch_*` (34.3 GPU-h, **1.3%**) belong to other projects. That is deliberate: the +artifact is a complete measurement and attribution is left to the reader, rather than baking a +filter chosen once into a durable file. Use `--by-name`, and exclude those two prefixes for a +RampNet-only total of **2,650.0 GPU-h**. + +## Cost + +**$0.** Every one of these hours was on klone, which is free at the point of use (condo model, +and `ckpt` is scavenger). The price is paid in preemption instead: 96% of allocations were +preempted, and `stage2_training_cost.md` measures the resulting overhead at **1.67x** on the +paper's Stage 2 run — 44.7 h of compute stretched over 74.6 h of calendar across 15 restarts. + +Rates live in `COMPUTE_PRICING` in `scripts/model_comparison/pricing.py`, verified-only with an +`as_of` date and a source, same discipline as the token table. A cluster with no entry prices +to `None`, not `$0` — "we checked and it is free" and "we have no rate" are different +statements and only one is safe to put in a paper. + +## Gaps, stated + +- **Tillicum is not in the ledger.** Its jobs bill at $0.90/GPU-hour and are the only compute + spend we have. The back-fill needs a `sacct` pull from Tillicum, which is Duo-gated; the + control master was down when this was written. One command once it is up: + `python scripts/analysis/slurm_usage.py --cluster tillicum --since 2026-07-01 --save-raw docs/data/compute/sacct_tillicum_.txt`. + Until then the $4.20 and $0.03 figures in [`tillicum.md`](tillicum.md) remain hand-transcribed. +- **The window starts 2026-07-02**, which is where this account's retained records begin, not + where RampNet's compute begins. +- **The paper's own Stage 1 and Stage 2 runs are not here at all.** They ran on a different + user's account (see [`stage1_generation_cost.md`](stage1_generation_cost.md)), so they are + outside this `sacct` query and are not recoverable through it. What survives of them is the + TensorBoard-derived measurement in [`stage2_training_cost.md`](stage2_training_cost.md): + ~56 GPU-hours per epoch, ~12 epochs. +- **Retention is finite.** `sacct` keeps job records for a while and then does not. This + back-fill was possible in August 2026; the same query in 2027 will return less. diff --git a/docs/data/compute/sacct_klone_2026-08-19.txt b/docs/data/compute/sacct_klone_2026-08-19.txt new file mode 100644 index 00000000..5be64edb --- /dev/null +++ b/docs/data/compute/sacct_klone_2026-08-19.txt @@ -0,0 +1,3991 @@ +36808185|rampnet-eval|klone|ckpt-all|ckpt-gpu|CANCELLED by 197096|2026-07-02T07:39:28|2026-07-02T07:39:32|2026-07-02T09:37:09|7057|billing=8,cpu=8,gres/gpu:a40=1,gres/gpu=1,mem=48G,node=1|1|0:0 +36813338|rampnet-eval|klone|ckpt-all|ckpt-gpu|COMPLETED|2026-07-02T09:41:06|2026-07-02T09:41:08|2026-07-02T10:04:12|1384|billing=8,cpu=8,gres/gpu:a40=1,gres/gpu=1,mem=48G,node=1|1|0:0 +37434076|sal-richmond|klone|gpu-l40s|normal|FAILED|2026-07-21T14:56:17|2026-07-21T14:56:49|2026-07-21T15:00:02|193|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37434773|sal-richmond|klone|gpu-l40s|normal|COMPLETED|2026-07-21T15:06:44|2026-07-21T15:07:37|2026-07-21T16:10:30|3773|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37557732|sal-clovis|klone|gpu-l40s|normal|COMPLETED|2026-07-22T21:37:09|2026-07-22T21:37:15|2026-07-23T05:41:43|29068|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37595593|qwen_smoke|klone|gpu-l40s|normal|COMPLETED|2026-07-23T16:50:09|2026-07-23T16:50:47|2026-07-23T16:54:35|228|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37595890|qwen_smoke|klone|gpu-l40s|normal|COMPLETED|2026-07-23T16:58:29|2026-07-23T16:58:30|2026-07-23T17:03:56|326|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37596124|qwen_smoke|klone|gpu-l40s|normal|COMPLETED|2026-07-23T17:04:03|2026-07-23T17:04:20|2026-07-23T17:04:28|8|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37596141|qwen_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-07-23T17:04:48|2026-07-23T17:04:49|2026-07-23T17:20:32|943|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37596142|qwen_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-07-23T17:04:48|2026-07-23T17:19:51|2026-07-23T17:38:47|1136|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37597088|qwen_curb_ramp_compare|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-23T17:32:26|2026-07-23T17:39:42|2026-07-23T18:12:12|1950|billing=16,cpu=16,gres/gpu:l40s=2,gres/gpu=2,mem=256G,node=2|2|0:0 +37597089|qwen_curb_ramp_compare|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-23T17:32:26|None|2026-07-23T18:12:12|0||1|0:0 +37598564|qwen_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-07-23T18:13:04|2026-07-23T18:13:39|2026-07-23T18:41:02|1643|billing=8,cpu=8,gres/gpu:l40s=2,gres/gpu=2,mem=128G,node=1|1|0:0 +37598565|qwen_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-07-23T18:13:04|2026-07-23T18:41:09|2026-07-23T19:12:53|1904|billing=8,cpu=8,gres/gpu:l40s=2,gres/gpu=2,mem=128G,node=1|1|0:0 +37604318|open_smoke|klone|gpu-l40s|normal|COMPLETED|2026-07-23T20:39:37|2026-07-23T20:39:42|2026-07-23T20:45:43|361|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37604320|open_overlay|klone|gpu-l40s|normal|COMPLETED|2026-07-23T20:39:37|2026-07-23T20:40:24|2026-07-23T20:44:33|249|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37604867|open_rich|klone|gpu-l40s|normal|COMPLETED|2026-07-23T20:45:14|2026-07-23T20:45:15|2026-07-23T20:58:22|787|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37604868|open_bend|klone|gpu-l40s|normal|COMPLETED|2026-07-23T20:45:14|2026-07-23T20:45:49|2026-07-23T21:01:02|913|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37605324|molmo_overlay|klone|gpu-l40s|normal|COMPLETED|2026-07-23T20:57:12|2026-07-23T20:59:20|2026-07-23T21:05:33|373|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=96G,node=1|1|0:0 +37605851|molmo_raw|klone|gpu-l40s|normal|COMPLETED|2026-07-23T21:08:06|2026-07-23T21:08:14|2026-07-23T21:14:16|362|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=96G,node=1|1|0:0 +37606206|molmo_ov2|klone|gpu-l40s|normal|COMPLETED|2026-07-23T21:21:04|2026-07-23T21:21:17|2026-07-23T21:27:35|378|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=96G,node=1|1|0:0 +37606420|molmo_rich|klone|gpu-l40s|normal|COMPLETED|2026-07-23T21:29:18|2026-07-23T21:30:03|2026-07-23T22:00:56|1853|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=96G,node=1|1|0:0 +37606421|molmo_bend|klone|gpu-l40s|normal|COMPLETED|2026-07-23T21:29:18|2026-07-23T21:30:13|2026-07-23T21:52:32|1339|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=96G,node=1|1|0:0 +37620046|open_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-07-24T08:48:20|2026-07-24T09:09:03|2026-07-24T09:21:42|759|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37620047|qwen_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-07-24T08:48:20|2026-07-24T09:09:52|2026-07-24T09:21:17|685|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37620048|qwen_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-07-24T08:48:20|2026-07-24T08:48:27|2026-07-24T09:08:34|1207|billing=8,cpu=8,gres/gpu:l40s=2,gres/gpu=2,mem=64G,node=1|1|0:0 +37620049|open_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-07-24T08:48:20|2026-07-24T09:22:17|2026-07-24T09:45:24|1387|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37622732|sal-budapest|klone|gpu-l40s|normal|COMPLETED|2026-07-24T11:31:43|2026-07-24T11:31:57|2026-07-24T13:37:07|7510|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37623902|sal-morgantown|klone|gpu-l40s|normal|COMPLETED|2026-07-24T12:08:51|2026-07-24T13:37:57|2026-07-24T19:19:30|20493|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37649635|yolo_data_dl|klone|gpu-l40s|normal|COMPLETED|2026-07-24T21:37:40|2026-07-24T21:38:17|2026-07-24T23:58:40|8423|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37676255|gold_bundle|klone|gpu-l40s|normal|COMPLETED|2026-07-25T06:32:09|2026-07-25T06:32:10|2026-07-25T06:58:54|1604|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37676384|yolo_boxab|klone|gpu-l40s|normal|COMPLETED|2026-07-25T06:34:02|2026-07-25T06:34:03|2026-07-25T06:34:46|43|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=32G,node=1|1|0:0 +37677130|yolo_prep|klone|gpu-l40s|normal|COMPLETED|2026-07-25T06:41:41|2026-07-25T06:41:43|2026-07-25T09:28:46|10023|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=48G,node=1|1|0:0 +37680860|open_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-07-25T07:10:33|2026-07-25T07:10:36|2026-07-25T08:43:39|5583|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37680861|qwen_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-07-25T07:10:33|2026-07-25T08:43:43|2026-07-25T10:41:10|7047|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37680862|qwen_curb_ramp_compare|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-25T07:10:33|None|2026-07-25T10:42:41|0||1|0:0 +37680863|open_curb_ramp_compare|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-25T07:10:33|2026-07-25T09:28:49|2026-07-25T10:42:41|4432|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37687978|yolo_curb_ramp_train|klone|gpu-l40s|normal|TIMEOUT|2026-07-25T09:35:38|2026-07-25T10:41:44|2026-07-26T10:41:55|86411|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37687979|yolo_curb_ramp_train|klone|gpu-l40s|normal|TIMEOUT|2026-07-25T09:35:38|2026-07-25T10:42:44|2026-07-26T10:42:55|86411|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37687980|yolo_curb_ramp_train|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-25T09:35:38|2026-07-26T10:42:30|2026-07-26T13:19:49|9439|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37687983|yolo_curb_ramp_train|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-25T09:35:39|2026-07-26T10:43:01|2026-07-26T13:19:49|9408|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37687984|yolo_curb_ramp_train|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-25T09:35:39|None|2026-07-26T13:19:49|0||1|0:0 +37687985|yolo_curb_ramp_train|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-25T09:35:39|None|2026-07-26T13:19:49|0||1|0:0 +37690543|open_curb_ramp_compare|klone|ckpt-all|ckpt-gpu|COMPLETED|2026-07-25T10:42:43|2026-07-25T10:42:44|2026-07-25T13:18:40|9356|billing=8,cpu=8,gres/gpu:a40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37690544|qwen_curb_ramp_compare|klone|ckpt-all|ckpt-gpu|COMPLETED|2026-07-25T10:42:43|2026-07-25T10:42:44|2026-07-25T14:29:00|13576|billing=8,cpu=8,gres/gpu:a40=2,gres/gpu=2,mem=64G,node=1|1|0:0 +37735656|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|FAILED|2026-07-26T13:27:04|2026-07-26T13:27:05|2026-07-26T13:41:45|880|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37735762|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|FAILED|2026-07-26T13:28:25|2026-07-26T13:28:26|2026-07-26T13:53:38|1512|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37735763|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|FAILED|2026-07-26T13:28:25|2026-07-26T13:28:26|2026-07-26T13:53:38|1512|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37735764|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|FAILED|2026-07-26T13:28:25|2026-07-26T13:28:26|2026-07-26T13:40:28|722|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37735765|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|FAILED|2026-07-26T13:28:25|2026-07-26T13:28:26|2026-07-26T13:40:28|722|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37735766|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|FAILED|2026-07-26T13:28:25|2026-07-26T13:28:26|2026-07-26T13:37:11|525|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-26T18:10:28|2026-07-26T18:10:29|2026-07-27T02:15:01|29072|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745359|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-26T18:10:28|2026-07-26T18:10:29|2026-07-27T02:15:01|29072|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-26T18:10:28|2026-07-26T18:10:29|2026-07-27T02:15:01|29072|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-26T18:10:28|2026-07-26T18:10:29|2026-07-27T02:15:02|29073|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-26T18:10:28|2026-07-26T18:10:29|2026-07-27T02:15:02|29073|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-26T18:10:28|2026-07-26T18:10:29|2026-07-27T02:15:02|29073|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37749039|op_extract|klone|gpu-l40s|normal|COMPLETED|2026-07-26T19:45:10|2026-07-26T19:45:11|2026-07-26T19:55:39|628|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=32G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T02:15:06|2026-07-27T02:17:27|2026-07-27T10:30:02|29555|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T02:15:06|2026-07-27T02:17:27|2026-07-27T10:30:02|29555|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-27T02:15:52|2026-07-27T02:17:59|2026-07-27T02:42:27|1468|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745359|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T02:15:53|2026-07-27T02:17:59|2026-07-27T10:30:02|29523|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T02:15:54|2026-07-27T02:17:59|2026-07-27T10:30:02|29523|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T02:15:58|2026-07-27T02:17:59|2026-07-27T10:30:02|29523|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T02:43:30|2026-07-27T02:45:44|2026-07-27T11:00:02|29658|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37771540|sal-annapolis|klone|gpu-l40s|normal|COMPLETED|2026-07-27T09:02:12|2026-07-27T09:02:13|2026-07-27T14:54:36|21143|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T10:30:06|2026-07-27T10:32:20|2026-07-27T18:45:02|29562|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745359|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|CANCELLED by 197096|2026-07-27T10:30:07|2026-07-27T10:32:20|2026-07-27T18:43:09|29449|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T10:30:55|2026-07-27T10:32:56|2026-07-27T18:45:02|29526|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-27T10:30:56|2026-07-27T10:33:03|2026-07-27T10:59:38|1595|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T10:30:59|2026-07-27T10:33:03|2026-07-27T18:45:02|29519|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T11:00:29|2026-07-27T11:02:37|2026-07-27T19:15:01|29544|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-27T11:00:52|2026-07-27T11:02:55|2026-07-27T13:07:59|7504|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T13:08:51|2026-07-27T13:10:57|2026-07-27T21:15:02|29045|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37808803|sal-annapolis|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-27T18:25:21|2026-07-27T18:25:22|2026-07-27T18:37:07|705|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37808965|sal-annapolis|klone|gpu-l40s|normal|COMPLETED|2026-07-27T18:37:24|2026-07-27T18:37:25|2026-07-27T18:47:25|600|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37809205|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|CANCELLED by 197096|2026-07-27T18:43:53|2026-07-27T18:43:54|2026-07-27T19:25:54|2520|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-27T18:45:57|2026-07-27T18:48:02|2026-07-27T23:45:28|17846|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-27T18:46:01|2026-07-27T18:48:02|2026-07-27T23:45:28|17846|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T18:46:06|2026-07-27T18:48:11|2026-07-28T03:00:02|29511|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T19:15:58|2026-07-27T19:17:59|2026-07-28T03:30:02|29523|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-27T21:15:54|2026-07-27T21:18:06|2026-07-27T23:45:07|8821|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T23:45:08|2026-07-27T23:47:22|2026-07-28T08:00:02|29560|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T23:45:31|2026-07-27T23:47:32|2026-07-28T08:00:02|29550|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-27T23:46:20|2026-07-27T23:48:23|2026-07-28T08:00:02|29499|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-28T03:00:09|2026-07-28T03:02:18|2026-07-28T11:15:02|29564|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-28T03:31:03|2026-07-28T03:33:18|2026-07-28T11:45:02|29504|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-28T08:00:07|2026-07-28T08:02:10|2026-07-28T16:15:03|29573|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-28T08:00:56|2026-07-28T08:03:04|2026-07-28T16:15:03|29519|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-28T08:00:57|2026-07-28T08:03:04|2026-07-28T16:15:03|29519|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37825643|open_curb_ramp_compare|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-28T08:14:37|None|2026-07-28T08:16:43|0||1|0:0 +37825644|qwen_curb_ramp_compare|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-28T08:14:37|None|2026-07-28T08:16:43|0||1|0:0 +37825645|qwen_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-07-28T08:14:37|2026-07-28T08:14:38|2026-07-28T08:55:22|2444|billing=8,cpu=8,gres/gpu:l40s=2,gres/gpu=2,mem=64G,node=1|1|0:0 +37825646|open_curb_ramp_compare|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-28T08:14:37|None|2026-07-28T08:16:43|0||1|0:0 +37825674|open_curb_ramp_compare|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-28T08:16:46|2026-07-28T08:16:47|2026-07-28T08:37:13|1226|billing=8,cpu=8,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37825675|qwen_curb_ramp_compare|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-28T08:16:46|2026-07-28T08:16:47|2026-07-28T08:39:19|1352|billing=8,cpu=8,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37825676|open_curb_ramp_compare|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-28T08:16:46|2026-07-28T08:16:47|2026-07-28T08:47:03|1816|billing=8,cpu=8,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37828485|open_budapest_district5|klone|gpu-l40s|normal|COMPLETED|2026-07-28T09:52:07|2026-07-28T09:52:08|2026-07-28T10:38:43|2795|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37828486|qwen8_budapest_district5|klone|gpu-l40s|normal|COMPLETED|2026-07-28T09:52:07|2026-07-28T09:52:08|2026-07-28T10:38:43|2795|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37828496|qwen32_budapest|klone|gpu-l40s|normal|COMPLETED|2026-07-28T09:52:35|2026-07-28T10:38:46|2026-07-28T11:08:28|1782|billing=8,cpu=8,gres/gpu:l40s=2,gres/gpu=2,mem=64G,node=1|1|0:0 +37828497|molmo_budapest|klone|gpu-l40s|normal|COMPLETED|2026-07-28T09:52:35|2026-07-28T11:41:29|2026-07-28T12:12:40|1871|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37828498|open_morgantown|klone|gpu-l40s|normal|COMPLETED|2026-07-28T09:52:35|2026-07-28T12:13:10|2026-07-28T12:37:42|1472|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37828499|qwen8_morgantown|klone|gpu-l40s|normal|COMPLETED|2026-07-28T09:52:35|2026-07-28T12:37:52|2026-07-28T13:01:31|1419|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37828500|qwen32_morgantown|klone|gpu-l40s|normal|COMPLETED|2026-07-28T09:52:35|2026-07-28T11:09:47|2026-07-28T11:41:22|1895|billing=8,cpu=8,gres/gpu:l40s=2,gres/gpu=2,mem=64G,node=1|1|0:0 +37828501|molmo_morgantown|klone|gpu-l40s|normal|COMPLETED|2026-07-28T09:52:35|2026-07-28T13:01:37|2026-07-28T13:32:26|1849|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T11:16:06|2026-07-28T11:18:09|2026-07-28T17:05:43|20854|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T11:45:07|2026-07-28T11:47:18|2026-07-28T17:06:45|19167|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37846254|low_floor_extract|klone|gpu-l40s|normal|COMPLETED|2026-07-28T15:57:46|2026-07-28T15:57:47|2026-07-28T16:38:46|2459|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=48G,node=1|1|0:0 +37846702|low_floor_extract|klone|gpu-l40s|normal|COMPLETED|2026-07-28T16:02:26|2026-07-28T16:39:41|2026-07-28T16:55:23|942|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=48G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T16:15:08|2026-07-28T16:17:09|2026-07-28T17:06:05|2936|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T16:15:13|2026-07-28T16:17:15|2026-07-28T17:06:45|2970|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T16:16:03|2026-07-28T16:18:05|2026-07-28T17:07:06|2941|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T17:06:14|2026-07-28T17:08:32|2026-07-28T17:20:39|727|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T17:06:43|2026-07-28T17:09:03|2026-07-28T17:19:54|651|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T17:06:49|2026-07-28T17:09:03|2026-07-28T17:20:39|696|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T17:07:39|2026-07-28T17:10:06|2026-07-28T17:20:59|653|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T17:08:10|2026-07-28T17:10:38|2026-07-28T17:15:03|265|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T17:15:55|2026-07-28T17:20:29|2026-07-28T17:20:39|10|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T17:20:46|2026-07-28T17:22:47|2026-07-28T18:06:06|2599|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T17:21:30|2026-07-28T17:23:41|2026-07-28T18:00:57|2236|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T17:21:33|2026-07-28T17:23:41|2026-07-28T17:40:37|1016|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T17:21:33|2026-07-28T17:23:41|2026-07-28T18:01:30|2269|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T17:21:50|2026-07-28T17:27:10|2026-07-28T18:01:06|2036|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T17:40:41|2026-07-28T17:42:50|2026-07-28T18:06:39|1429|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:01:03|2026-07-28T18:03:06|2026-07-28T18:08:43|337|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:01:59|2026-07-28T18:04:55|2026-07-28T18:09:03|248|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:02:22|2026-07-28T18:05:00|2026-07-28T18:08:33|213|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:06:59|2026-07-28T18:09:37|2026-07-28T18:35:14|1537|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:07:37|2026-07-28T18:09:39|2026-07-28T18:38:20|1721|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:08:48|2026-07-28T18:10:49|2026-07-28T18:35:49|1500|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:09:27|2026-07-28T18:11:29|2026-07-28T18:38:42|1633|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:09:53|2026-07-28T18:12:25|2026-07-28T18:20:18|473|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:21:08|2026-07-28T18:23:37|2026-07-28T18:50:04|1587|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:36:04|2026-07-28T18:39:20|2026-07-28T23:06:29|16029|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:36:45|2026-07-28T18:39:45|2026-07-28T23:47:04|18439|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:39:18|2026-07-28T18:43:06|2026-07-28T18:49:26|380|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:39:42|2026-07-28T18:48:43|2026-07-28T23:59:18|18635|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:50:16|2026-07-28T18:52:46|2026-07-28T23:47:33|17687|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T18:50:57|2026-07-28T18:53:17|2026-07-28T23:59:18|18361|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T23:07:23|2026-07-28T23:09:30|2026-07-28T23:47:04|2254|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T23:47:55|2026-07-28T23:50:08|2026-07-29T00:02:09|721|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T23:48:07|2026-07-28T23:50:08|2026-07-29T00:02:29|741|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T23:48:36|2026-07-28T23:50:38|2026-07-29T00:02:09|691|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-28T23:59:21|2026-07-29T00:01:23|2026-07-29T00:02:52|89|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:00:19|2026-07-29T00:02:26|2026-07-29T00:15:59|813|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:02:13|2026-07-29T00:04:14|2026-07-29T00:37:48|2014|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:03:01|2026-07-29T00:05:02|2026-07-29T00:38:08|1986|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:03:18|2026-07-29T00:05:19|2026-07-29T00:15:59|640|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:03:43|2026-07-29T00:05:47|2026-07-29T01:25:41|4794|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:16:49|2026-07-29T00:18:52|2026-07-29T00:37:48|1136|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:16:50|2026-07-29T00:18:52|2026-07-29T00:30:21|689|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:31:09|2026-07-29T00:33:14|2026-07-29T00:38:33|319|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:38:41|2026-07-29T00:40:51|2026-07-29T00:40:56|5|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:38:41|2026-07-29T00:40:51|2026-07-29T00:55:46|895|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:39:00|2026-07-29T00:41:08|2026-07-29T01:02:54|1306|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:39:22|2026-07-29T00:41:24|2026-07-29T02:00:52|4768|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:41:46|2026-07-29T00:44:29|2026-07-29T00:55:49|680|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:56:37|2026-07-29T00:58:41|2026-07-29T01:17:46|1145|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T00:56:39|2026-07-29T00:58:41|2026-07-29T01:05:02|381|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:03:48|2026-07-29T01:05:51|2026-07-29T01:23:07|1036|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:05:54|2026-07-29T01:08:10|2026-07-29T01:08:58|48|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:09:49|2026-07-29T01:11:52|2026-07-29T01:45:27|2015|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:18:37|2026-07-29T01:20:38|2026-07-29T01:23:07|149|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:23:56|2026-07-29T01:26:02|2026-07-29T01:35:16|554|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:24:05|2026-07-29T01:26:07|2026-07-29T01:34:56|529|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:26:35|2026-07-29T01:28:42|2026-07-29T01:35:16|394|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:35:46|2026-07-29T01:37:53|2026-07-29T01:47:56|603|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:36:05|2026-07-29T01:38:06|2026-07-29T01:47:56|590|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:36:06|2026-07-29T01:38:08|2026-07-29T02:00:31|1343|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:45:31|2026-07-29T01:47:44|2026-07-29T01:48:00|16|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:48:47|2026-07-29T01:50:48|2026-07-29T02:13:15|1347|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:48:49|2026-07-29T01:51:19|2026-07-29T02:13:15|1316|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T01:48:50|2026-07-29T01:51:50|2026-07-29T02:13:11|1281|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T02:01:31|2026-07-29T02:03:32|2026-07-29T02:13:11|579|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T02:01:44|2026-07-29T02:03:58|2026-07-29T02:13:15|557|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T02:14:01|2026-07-29T02:16:04|2026-07-29T08:52:56|23812|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T02:14:02|2026-07-29T02:16:04|2026-07-29T08:26:39|22235|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T02:14:06|2026-07-29T02:16:23|2026-07-29T08:27:09|22246|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T02:14:10|2026-07-29T02:16:23|2026-07-29T08:27:01|22238|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T02:14:11|2026-07-29T02:16:23|2026-07-29T09:41:19|26696|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T08:27:05|2026-07-29T08:29:07|2026-07-29T09:41:06|4319|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T08:27:34|2026-07-29T08:29:35|2026-07-29T08:52:51|1396|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T08:28:04|2026-07-29T08:30:11|2026-07-29T09:22:24|3133|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T08:53:00|2026-07-29T08:55:07|2026-07-29T10:20:47|5140|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T08:53:45|2026-07-29T08:55:47|2026-07-29T09:41:06|2719|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37874763|sal-paterson|klone|gpu-l40s|normal|FAILED|2026-07-29T08:56:28|2026-07-29T08:56:29|2026-07-29T08:58:16|107|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37875114|sal-paterson|klone|gpu-l40s|normal|FAILED|2026-07-29T09:15:57|2026-07-29T09:15:58|2026-07-29T09:20:01|243|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T09:23:14|2026-07-29T09:25:16|2026-07-29T09:41:06|950|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37876258|sal-paterson|klone|gpu-l40s|normal|COMPLETED|2026-07-29T09:29:41|2026-07-29T09:29:43|2026-07-29T13:22:31|13968|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T09:41:57|2026-07-29T09:43:58|2026-07-29T10:21:08|2230|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T09:41:59|2026-07-29T09:44:02|2026-07-29T10:21:49|2267|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T09:42:02|2026-07-29T09:44:06|2026-07-29T12:52:57|11331|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T09:42:17|2026-07-29T09:44:19|2026-07-29T12:53:49|11370|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T10:21:53|2026-07-29T10:23:55|2026-07-29T12:53:45|8990|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T10:22:02|2026-07-29T10:24:29|2026-07-29T11:00:37|2168|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T10:22:23|2026-07-29T10:24:29|2026-07-29T11:00:27|2158|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T11:01:20|2026-07-29T11:03:29|2026-07-29T12:05:06|3697|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T11:01:32|2026-07-29T11:04:00|2026-07-29T12:52:57|6537|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T12:05:57|2026-07-29T12:08:05|2026-07-29T12:52:57|2692|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T12:53:01|2026-07-29T12:55:14|2026-07-29T12:55:27|13|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T12:53:49|2026-07-29T12:55:52|2026-07-29T12:59:04|192|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T12:53:49|2026-07-29T12:55:52|2026-07-29T12:59:46|234|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T12:54:45|2026-07-29T12:56:52|2026-07-29T12:57:48|56|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T12:54:46|2026-07-29T12:57:09|2026-07-29T13:05:49|520|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T12:56:19|2026-07-29T12:58:42|2026-07-29T13:06:08|446|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T12:58:41|2026-07-29T13:00:53|2026-07-29T13:08:35|462|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:00:09|2026-07-29T13:03:19|2026-07-29T13:08:35|316|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:00:52|2026-07-29T13:04:26|2026-07-29T13:05:26|60|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:06:17|2026-07-29T13:09:52|2026-07-29T13:13:38|226|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:06:46|2026-07-29T13:09:58|2026-07-29T13:15:34|336|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:06:58|2026-07-29T13:10:26|2026-07-29T13:13:38|192|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:09:27|2026-07-29T13:11:30|2026-07-29T13:21:23|593|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:09:47|2026-07-29T13:11:52|2026-07-29T13:15:38|226|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:14:42|2026-07-29T13:16:53|2026-07-29T13:23:00|367|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:14:44|2026-07-29T13:16:53|2026-07-29T13:23:00|367|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:16:25|2026-07-29T13:18:37|2026-07-29T13:21:53|196|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:16:29|2026-07-29T13:18:37|2026-07-29T13:28:45|608|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:22:14|2026-07-29T13:24:27|2026-07-29T13:28:45|258|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:22:44|2026-07-29T13:26:13|2026-07-29T13:27:02|49|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:23:03|2026-07-29T13:26:29|2026-07-29T13:30:44|255|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:24:13|2026-07-29T13:26:29|2026-07-29T13:30:44|255|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:27:53|2026-07-29T13:30:02|2026-07-29T13:30:47|45|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:29:40|2026-07-29T13:31:41|2026-07-29T13:33:07|86|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:29:57|2026-07-29T13:32:39|2026-07-29T13:44:32|713|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37888131|sal-paterson|klone|gpu-l40s|normal|COMPLETED|2026-07-29T13:30:08|2026-07-29T13:30:09|2026-07-29T13:38:59|530|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:30:46|2026-07-29T13:32:53|2026-07-29T13:44:32|699|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:30:46|2026-07-29T13:33:12|2026-07-29T13:44:58|706|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:31:43|2026-07-29T13:33:47|2026-07-29T13:48:10|863|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:34:13|2026-07-29T13:36:21|2026-07-29T13:42:27|366|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:43:17|2026-07-29T13:45:29|2026-07-29T13:45:40|11|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:45:22|2026-07-29T13:47:30|2026-07-29T13:49:32|122|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:45:43|2026-07-29T13:47:58|2026-07-29T13:56:29|511|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:45:52|2026-07-29T13:47:58|2026-07-29T13:57:00|542|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:46:32|2026-07-29T13:48:36|2026-07-29T14:20:26|1910|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:49:02|2026-07-29T13:51:03|2026-07-29T13:54:28|205|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:50:22|2026-07-29T13:52:31|2026-07-29T13:55:05|154|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:55:20|2026-07-29T13:57:25|2026-07-29T14:01:51|266|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:55:56|2026-07-29T13:58:01|2026-07-29T14:01:01|180|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:57:20|2026-07-29T14:01:01|2026-07-29T14:02:41|100|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T13:58:11|2026-07-29T14:01:41|2026-07-29T14:03:12|91|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:01:53|2026-07-29T14:04:00|2026-07-29T14:07:42|222|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:02:45|2026-07-29T14:05:15|2026-07-29T14:20:23|908|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:03:34|2026-07-29T14:06:00|2026-07-29T14:07:42|102|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:04:02|2026-07-29T14:06:03|2026-07-29T14:08:03|120|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37889646|yolo_curb_ramp_train|klone|gpu-l40s|normal|TIMEOUT|2026-07-29T14:08:32|2026-07-29T14:09:47|2026-08-01T14:10:10|259223|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:08:34|2026-07-29T14:10:49|2026-07-29T14:12:00|71|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:08:35|2026-07-29T14:11:01|2026-07-29T14:20:02|541|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:08:57|2026-07-29T14:11:29|2026-07-29T14:16:06|277|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:12:51|2026-07-29T14:16:29|2026-07-29T14:19:38|189|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:17:01|2026-07-29T14:19:23|2026-07-29T14:20:23|60|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:20:29|2026-07-29T14:22:34|2026-07-29T14:25:29|175|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:20:53|2026-07-29T14:23:03|2026-07-29T15:06:23|2600|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:21:14|2026-07-29T14:25:38|2026-07-29T14:27:56|138|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:21:15|2026-07-29T14:26:03|2026-07-29T14:28:11|128|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:21:41|2026-07-29T14:26:37|2026-07-29T14:29:34|177|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:26:19|2026-07-29T14:28:36|2026-07-29T14:29:34|58|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:28:48|2026-07-29T14:30:58|2026-07-29T15:09:48|2330|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:29:06|2026-07-29T14:31:09|2026-07-29T16:43:03|7914|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:30:26|2026-07-29T14:32:45|2026-07-29T14:34:12|87|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:30:57|2026-07-29T14:33:46|2026-07-29T14:37:48|242|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:35:05|2026-07-29T14:37:18|2026-07-29T16:43:03|7545|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:38:39|2026-07-29T14:40:49|2026-07-29T14:41:02|13|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T14:41:04|2026-07-29T14:43:06|2026-07-29T15:04:39|1293|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37895214|low_floor_extract|klone|ckpt-g2|ckpt-gpu|FAILED|2026-07-29T14:54:35|2026-07-29T14:55:06|2026-07-29T14:55:07|1|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=48G,node=1|1|1:0 +37895426|low_floor_extract|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-29T15:02:37|2026-07-29T15:03:55|2026-07-29T15:09:16|321|billing=8,cpu=8,gres/gpu:l40=1,gres/gpu=1,mem=48G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:04:41|2026-07-29T15:06:46|2026-07-29T15:08:35|109|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:07:18|2026-07-29T15:09:25|2026-07-29T15:13:00|215|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37895571|sal-gainesville|klone|gpu-l40s|normal|CANCELLED by 197096|2026-07-29T15:07:47|None|2026-07-29T15:11:40|0||1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:09:25|2026-07-29T15:11:41|2026-07-29T15:13:00|79|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:09:50|2026-07-29T15:12:11|2026-07-29T16:26:42|4471|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37895723|sal-gainesville|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:11:40|2026-07-29T15:11:41|2026-07-29T16:05:40|3239|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:13:02|2026-07-29T15:15:22|2026-07-29T15:15:26|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:13:50|2026-07-29T15:17:24|2026-07-29T15:19:11|107|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:16:19|2026-07-29T15:18:25|2026-07-29T15:34:53|988|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:20:02|2026-07-29T15:22:12|2026-07-29T15:22:55|43|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:23:46|2026-07-29T15:26:01|2026-07-29T15:34:39|518|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:34:56|2026-07-29T15:37:11|2026-07-29T15:39:12|121|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:35:32|2026-07-29T15:37:43|2026-07-29T16:07:07|1764|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T15:40:04|2026-07-29T15:42:13|2026-07-29T16:05:03|1370|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37897737|open_curb_ramp_compare|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-29T15:56:16|2026-07-29T15:56:18|2026-07-29T16:10:34|856|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37897738|open_curb_ramp_compare|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-29T15:56:16|2026-07-29T15:56:18|2026-07-29T16:24:43|1705|billing=8,cpu=8,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37897739|qwen_curb_ramp_compare|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-29T15:56:16|2026-07-29T15:56:18|2026-07-29T16:18:19|1321|billing=8,cpu=8,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37897740|qwen_curb_ramp_compare|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-29T15:56:16|2026-07-29T15:58:33|2026-07-29T16:28:25|1792|billing=8,cpu=8,gres/gpu:l40=2,gres/gpu=2,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:05:06|2026-07-29T16:07:10|2026-07-29T16:09:12|122|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37895723|sal-gainesville|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:06:30|2026-07-29T16:08:42|2026-07-29T17:52:49|6247|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:07:10|2026-07-29T16:09:13|2026-07-29T16:14:48|335|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:10:02|2026-07-29T16:12:46|2026-07-29T16:13:47|61|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:14:38|2026-07-29T16:16:51|2026-07-29T16:18:53|122|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:15:47|2026-07-29T16:17:52|2026-07-29T16:23:15|323|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:19:42|2026-07-29T16:21:56|2026-07-29T16:23:27|91|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:24:05|2026-07-29T16:26:07|2026-07-29T16:26:30|23|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:24:19|2026-07-29T16:26:21|2026-07-29T16:27:16|55|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:27:18|2026-07-29T16:29:23|2026-07-29T16:31:41|138|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:27:20|2026-07-29T16:29:23|2026-07-29T19:30:57|10894|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:27:33|2026-07-29T16:30:02|2026-07-29T16:31:54|112|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:31:57|2026-07-29T16:34:03|2026-07-29T16:34:44|41|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:32:31|2026-07-29T16:34:38|2026-07-29T19:31:00|10582|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:35:34|2026-07-29T16:37:35|2026-07-29T16:51:36|841|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:43:55|2026-07-29T16:46:18|2026-07-29T19:31:00|9882|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:43:58|2026-07-29T16:46:30|2026-07-29T16:48:02|92|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:48:52|2026-07-29T16:50:54|2026-07-29T16:53:56|182|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:52:27|2026-07-29T16:55:49|2026-07-29T17:23:22|1653|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:54:00|2026-07-29T16:56:18|2026-07-29T16:57:16|58|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T16:58:06|2026-07-29T17:01:03|2026-07-29T19:31:00|8997|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T17:24:16|2026-07-29T17:26:20|2026-07-29T19:31:04|7484|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37895723|sal-gainesville|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T17:53:41|2026-07-29T17:58:06|2026-07-29T18:14:35|989|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37895723|sal-gainesville|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T18:15:31|2026-07-29T18:17:57|2026-07-29T18:27:53|596|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37895723|sal-gainesville|klone|ckpt-g2|ckpt-gpu|CANCELLED by 197096|2026-07-29T18:28:46|2026-07-29T18:31:45|2026-07-29T18:32:10|25|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37903756|sal-gainesville|klone|gpu-l40s|normal|COMPLETED|2026-07-29T18:32:10|2026-07-29T18:32:27|2026-07-29T19:44:05|4298|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T19:31:02|2026-07-29T19:33:29|2026-07-29T20:51:46|4697|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T19:31:49|2026-07-29T19:33:59|2026-07-29T19:43:03|544|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T19:31:52|2026-07-29T19:33:59|2026-07-29T19:43:00|541|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T19:31:54|2026-07-29T19:33:59|2026-07-29T19:37:26|207|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T19:31:56|2026-07-29T19:33:59|2026-07-29T19:37:26|207|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T19:38:16|2026-07-29T19:44:29|2026-07-29T20:14:45|1816|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T19:38:16|2026-07-29T19:44:29|2026-07-29T20:14:45|1816|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T19:43:58|2026-07-29T19:50:20|2026-07-29T20:08:18|1078|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T19:44:11|2026-07-29T19:51:21|2026-07-29T19:57:17|356|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T19:58:08|2026-07-29T20:02:12|2026-07-29T20:09:08|416|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T20:09:11|2026-07-29T20:12:30|2026-07-29T21:17:10|3880|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T20:09:16|2026-07-29T20:12:30|2026-07-29T20:14:45|135|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T20:15:36|2026-07-29T20:18:35|2026-07-29T21:17:10|3515|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T20:15:36|2026-07-29T20:20:37|2026-07-29T20:21:43|66|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T20:15:39|2026-07-29T20:20:48|2026-07-29T21:17:13|3385|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T20:22:38|2026-07-29T20:24:40|2026-07-29T20:27:46|186|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T20:28:36|2026-07-29T20:30:37|2026-07-29T21:17:13|2796|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T20:51:48|2026-07-29T20:55:21|2026-07-29T21:09:20|839|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:10:11|2026-07-29T21:12:24|2026-07-29T21:13:22|58|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:14:13|2026-07-29T21:16:37|2026-07-29T21:17:13|36|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:17:11|2026-07-29T21:19:29|2026-07-29T21:21:09|100|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:18:01|2026-07-29T21:20:32|2026-07-29T21:21:09|37|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:18:02|2026-07-29T21:21:37|2026-07-29T21:22:40|63|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:18:03|2026-07-29T21:22:04|2026-07-29T21:23:10|66|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:18:04|2026-07-29T21:22:04|2026-07-29T21:31:21|557|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:21:12|2026-07-29T21:23:50|2026-07-29T21:43:46|1196|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:22:01|2026-07-29T21:24:06|2026-07-29T21:30:46|400|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:23:36|2026-07-29T21:25:37|2026-07-29T21:59:52|2055|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:23:59|2026-07-29T21:27:09|2026-07-29T21:31:02|233|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:31:05|2026-07-29T21:33:16|2026-07-29T21:37:43|267|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:31:35|2026-07-29T21:34:47|2026-07-29T22:00:17|1530|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:32:12|2026-07-29T21:36:19|2026-07-29T21:37:45|86|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:38:33|2026-07-29T21:41:17|2026-07-29T22:00:37|1160|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:38:35|2026-07-29T21:41:56|2026-07-29T23:11:27|5371|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T21:44:35|2026-07-29T21:47:03|2026-07-29T23:10:33|5010|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T22:00:42|2026-07-29T22:02:52|2026-07-29T22:15:58|786|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T22:01:08|2026-07-29T22:04:23|2026-07-29T22:05:17|54|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T22:01:29|2026-07-29T22:05:24|2026-07-29T23:10:33|3909|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T22:06:07|2026-07-29T22:08:58|2026-07-29T23:10:33|3695|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T22:16:49|2026-07-29T22:19:11|2026-07-29T22:19:16|5|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T22:20:06|2026-07-29T22:22:14|2026-07-29T23:10:33|2899|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:11:21|2026-07-29T23:14:13|2026-07-29T23:38:59|1486|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:11:23|2026-07-29T23:14:44|2026-07-29T23:53:43|2339|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:11:24|2026-07-29T23:14:44|2026-07-29T23:48:14|2010|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:11:24|2026-07-29T23:14:44|2026-07-29T23:30:06|922|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:12:20|2026-07-29T23:14:44|2026-07-29T23:20:53|369|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:21:43|2026-07-29T23:24:01|2026-07-29T23:53:54|1793|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:31:04|2026-07-29T23:35:23|2026-07-29T23:36:25|62|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:37:18|2026-07-29T23:40:01|2026-07-29T23:51:25|684|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:39:51|2026-07-29T23:45:41|2026-07-29T23:51:43|362|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:48:16|2026-07-29T23:50:19|2026-07-29T23:50:27|8|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:51:17|2026-07-29T23:55:27|2026-07-30T00:00:02|275|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:52:17|2026-07-29T23:55:27|2026-07-30T00:40:38|2711|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:52:32|2026-07-29T23:55:27|2026-07-30T00:00:04|277|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:54:33|2026-07-29T23:57:31|2026-07-30T00:02:15|284|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-29T23:54:44|2026-07-29T23:58:01|2026-07-30T00:02:15|254|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:00:54|2026-07-30T00:03:08|2026-07-30T00:19:30|982|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:00:54|2026-07-30T00:04:09|2026-07-30T00:20:01|952|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:03:06|2026-07-30T00:05:11|2026-07-30T00:40:38|2127|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:03:06|2026-07-30T00:06:43|2026-07-30T00:40:41|2038|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:20:22|2026-07-30T00:22:35|2026-07-30T00:24:12|97|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:20:51|2026-07-30T00:23:05|2026-07-30T00:24:44|99|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:25:12|2026-07-30T00:28:12|2026-07-30T00:40:34|742|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:25:33|2026-07-30T00:28:43|2026-07-30T00:32:27|224|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:33:17|2026-07-30T00:36:23|2026-07-30T00:40:34|251|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:40:40|2026-07-30T00:44:33|2026-07-30T00:50:45|372|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:41:24|2026-07-30T00:45:34|2026-07-30T00:51:15|341|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:41:26|2026-07-30T00:46:05|2026-07-30T00:51:15|310|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:41:27|2026-07-30T00:46:05|2026-07-30T00:51:13|308|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:41:30|2026-07-30T00:47:06|2026-07-30T01:02:02|896|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:51:51|2026-07-30T00:54:45|2026-07-30T01:02:31|466|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:52:03|2026-07-30T00:54:45|2026-07-30T00:57:06|141|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:52:06|2026-07-30T00:56:17|2026-07-30T01:01:59|342|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:52:08|2026-07-30T00:58:06|2026-07-30T01:03:01|295|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T00:57:09|2026-07-30T01:00:14|2026-07-30T01:02:31|137|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:02:48|2026-07-30T01:11:06|2026-07-30T01:12:16|70|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:02:53|2026-07-30T01:11:36|2026-07-30T01:20:31|535|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:03:21|2026-07-30T01:11:36|2026-07-30T01:16:07|271|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:03:37|2026-07-30T01:12:43|2026-07-30T01:17:38|295|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:03:52|2026-07-30T01:13:39|2026-07-30T01:26:21|762|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:13:10|2026-07-30T01:15:41|2026-07-30T01:20:45|304|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:16:10|2026-07-30T01:18:15|2026-07-30T01:33:41|926|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:18:29|2026-07-30T01:20:45|2026-07-30T01:33:46|781|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:21:34|2026-07-30T01:23:45|2026-07-30T01:33:41|596|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:21:36|2026-07-30T01:24:39|2026-07-30T01:33:38|539|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:27:17|2026-07-30T01:30:30|2026-07-30T01:33:43|193|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:33:43|2026-07-30T01:37:39|2026-07-30T01:37:43|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:34:29|2026-07-30T01:38:41|2026-07-30T01:45:02|381|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:34:31|2026-07-30T01:38:41|2026-07-30T01:44:39|358|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:34:35|2026-07-30T01:40:12|2026-07-30T01:43:43|211|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:34:37|2026-07-30T01:40:43|2026-07-30T01:44:42|239|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:38:32|2026-07-30T01:41:45|2026-07-30T01:44:39|174|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:44:38|2026-07-30T01:46:51|2026-07-30T01:50:53|242|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:44:41|2026-07-30T01:46:51|2026-07-30T01:56:11|560|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:45:28|2026-07-30T01:51:59|2026-07-30T01:55:48|229|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:45:32|2026-07-30T01:51:59|2026-07-30T02:11:17|1158|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:45:53|2026-07-30T01:54:32|2026-07-30T02:06:13|701|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:51:45|2026-07-30T01:54:32|2026-07-30T02:06:13|701|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:56:13|2026-07-30T01:59:38|2026-07-30T02:06:13|395|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T01:56:54|2026-07-30T02:00:09|2026-07-30T02:06:13|364|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:07:04|2026-07-30T02:09:20|2026-07-30T02:38:25|1745|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:07:04|2026-07-30T02:09:20|2026-07-30T02:38:25|1745|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:07:04|2026-07-30T02:09:50|2026-07-30T02:38:27|1717|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:07:04|2026-07-30T02:09:50|2026-07-30T02:38:47|1737|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:12:09|2026-07-30T02:14:26|2026-07-30T02:38:27|1441|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:38:29|2026-07-30T02:40:48|2026-07-30T02:49:04|496|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:39:19|2026-07-30T02:41:59|2026-07-30T02:47:47|348|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:39:19|2026-07-30T02:41:59|2026-07-30T02:47:47|348|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:39:21|2026-07-30T02:42:29|2026-07-30T02:44:13|104|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:40:10|2026-07-30T02:42:29|2026-07-30T02:44:28|119|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:44:15|2026-07-30T02:46:34|2026-07-30T02:59:42|788|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:45:18|2026-07-30T02:48:49|2026-07-30T02:59:44|655|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:47:50|2026-07-30T02:50:08|2026-07-30T02:59:42|574|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:47:50|2026-07-30T02:50:08|2026-07-30T02:59:44|576|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:49:54|2026-07-30T02:52:41|2026-07-30T02:59:48|427|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T02:59:44|2026-07-30T03:01:52|2026-07-30T03:10:39|527|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:00:32|2026-07-30T03:03:24|2026-07-30T03:10:42|438|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:00:33|2026-07-30T03:03:54|2026-07-30T03:11:22|448|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:00:40|2026-07-30T03:03:54|2026-07-30T03:10:42|408|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:00:42|2026-07-30T03:03:54|2026-07-30T03:10:42|408|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:11:30|2026-07-30T03:20:47|2026-07-30T03:21:24|37|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:11:33|2026-07-30T03:21:18|2026-07-30T03:21:49|31|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:11:33|2026-07-30T03:22:50|2026-07-30T03:32:36|586|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:11:34|2026-07-30T03:22:50|2026-07-30T03:32:03|553|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:12:11|2026-07-30T03:23:51|2026-07-30T03:29:23|332|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:22:20|2026-07-30T03:25:54|2026-07-30T03:32:05|371|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:22:39|2026-07-30T03:26:25|2026-07-30T03:29:50|205|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:30:33|2026-07-30T03:33:02|2026-07-30T03:42:46|584|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:30:40|2026-07-30T03:33:02|2026-07-30T03:42:46|584|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:32:53|2026-07-30T03:35:04|2026-07-30T03:43:11|487|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:32:55|2026-07-30T03:35:35|2026-07-30T03:35:49|14|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:33:28|2026-07-30T03:36:05|2026-07-30T03:42:46|401|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:35:52|2026-07-30T03:38:08|2026-07-30T03:42:44|276|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:43:33|2026-07-30T03:45:46|2026-07-30T03:53:44|478|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:43:38|2026-07-30T03:45:46|2026-07-30T03:53:40|474|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:43:40|2026-07-30T03:45:46|2026-07-30T03:53:44|478|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:43:43|2026-07-30T03:45:46|2026-07-30T04:26:42|2456|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:44:00|2026-07-30T03:47:23|2026-07-30T03:53:40|377|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:54:31|2026-07-30T03:58:38|2026-07-30T04:15:14|996|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:54:31|2026-07-30T03:59:40|2026-07-30T04:15:17|937|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:54:34|2026-07-30T03:59:40|2026-07-30T04:00:41|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T03:54:34|2026-07-30T03:59:40|2026-07-30T04:15:55|975|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:01:47|2026-07-30T04:04:15|2026-07-30T04:15:55|700|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:15:57|2026-07-30T04:18:02|2026-07-30T04:26:42|520|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:16:04|2026-07-30T04:18:32|2026-07-30T04:26:39|487|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:16:09|2026-07-30T04:19:33|2026-07-30T04:26:51|438|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:16:45|2026-07-30T04:20:04|2026-07-30T04:26:51|407|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:27:29|2026-07-30T04:29:43|2026-07-30T04:38:01|498|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:27:34|2026-07-30T04:30:44|2026-07-30T04:38:01|437|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:27:38|2026-07-30T04:33:47|2026-07-30T05:00:18|1591|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:27:42|2026-07-30T04:35:49|2026-07-30T04:59:45|1436|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:27:48|2026-07-30T04:36:19|2026-07-30T04:38:04|105|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:38:03|2026-07-30T04:40:55|2026-07-30T04:50:49|594|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:38:50|2026-07-30T04:41:23|2026-07-30T04:42:24|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:38:53|2026-07-30T04:41:43|2026-07-30T04:49:00|437|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:43:13|2026-07-30T04:45:57|2026-07-30T04:49:03|186|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:49:05|2026-07-30T04:53:02|2026-07-30T07:34:51|9709|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:49:51|2026-07-30T04:53:02|2026-07-30T07:18:44|8742|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:51:55|2026-07-30T04:55:04|2026-07-30T04:59:45|281|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:59:47|2026-07-30T05:02:40|2026-07-30T06:07:33|3893|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T04:59:48|2026-07-30T05:03:11|2026-07-30T05:28:14|1503|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T05:01:10|2026-07-30T05:03:41|2026-07-30T06:07:56|3855|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T05:29:04|2026-07-30T05:31:31|2026-07-30T06:28:44|3433|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T06:08:23|2026-07-30T06:10:56|2026-07-30T06:24:06|790|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T06:08:45|2026-07-30T06:10:56|2026-07-30T06:24:06|790|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T06:24:08|2026-07-30T06:26:12|2026-07-30T07:47:05|4853|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T06:24:08|2026-07-30T06:26:12|2026-07-30T06:47:56|1304|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T06:28:47|2026-07-30T06:31:16|2026-07-30T06:37:56|400|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T06:38:46|2026-07-30T06:41:24|2026-07-30T07:18:20|2216|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T06:49:02|2026-07-30T06:52:32|2026-07-30T07:47:05|3273|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37923168|low_floor_extract|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-30T06:58:30|2026-07-30T06:58:36|2026-07-30T07:02:55|259|billing=8,cpu=8,gres/gpu:l40=1,gres/gpu=1,mem=48G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:19:12|2026-07-30T07:21:22|2026-07-30T07:27:57|395|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:19:36|2026-07-30T07:25:55|2026-07-30T07:34:31|516|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:28:48|2026-07-30T07:30:57|2026-07-30T07:36:14|317|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:35:22|2026-07-30T07:37:32|2026-07-30T07:40:05|153|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:35:41|2026-07-30T07:38:33|2026-07-30T07:46:38|485|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:37:05|2026-07-30T07:41:34|2026-07-30T07:48:09|395|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:40:56|2026-07-30T07:43:06|2026-07-30T07:48:39|333|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:47:45|2026-07-30T07:49:57|2026-07-30T08:16:39|1602|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:47:54|2026-07-30T07:50:40|2026-07-30T08:01:43|663|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:48:00|2026-07-30T07:50:48|2026-07-30T08:01:23|635|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:48:58|2026-07-30T07:50:59|2026-07-30T08:01:23|624|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:49:29|2026-07-30T07:51:59|2026-07-30T07:58:59|420|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T07:59:48|2026-07-30T08:02:47|2026-07-30T08:30:54|1687|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:02:12|2026-07-30T08:04:18|2026-07-30T08:11:50|452|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:02:13|2026-07-30T08:04:59|2026-07-30T08:11:06|367|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:03:07|2026-07-30T08:05:18|2026-07-30T08:16:59|701|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:11:56|2026-07-30T08:15:24|2026-07-30T08:19:57|273|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:12:46|2026-07-30T08:16:25|2026-07-30T09:06:42|3017|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:17:45|2026-07-30T08:20:58|2026-07-30T08:45:02|1444|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:18:05|2026-07-30T08:20:58|2026-07-30T09:09:58|2940|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:20:49|2026-07-30T08:23:30|2026-07-30T08:26:00|150|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:26:50|2026-07-30T08:30:34|2026-07-30T08:36:37|363|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:32:17|2026-07-30T08:34:30|2026-07-30T09:53:49|4759|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:37:28|2026-07-30T08:39:39|2026-07-30T08:44:24|285|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:45:05|2026-07-30T08:48:44|2026-07-30T08:54:17|333|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:45:14|2026-07-30T08:49:03|2026-07-30T08:54:05|302|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:54:56|2026-07-30T08:57:05|2026-07-30T08:58:05|60|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:55:09|2026-07-30T08:57:20|2026-07-30T08:58:05|45|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:58:54|2026-07-30T09:01:05|2026-07-30T09:06:06|301|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T08:58:54|2026-07-30T09:01:05|2026-07-30T09:06:25|320|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T09:06:55|2026-07-30T09:08:57|2026-07-30T09:53:49|2692|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T09:07:19|2026-07-30T09:09:27|2026-07-30T09:53:51|2664|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T09:07:32|2026-07-30T09:09:58|2026-07-30T09:53:51|2633|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T09:10:51|2026-07-30T09:13:59|2026-07-30T09:15:09|70|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T09:15:59|2026-07-30T09:19:37|2026-07-30T09:53:51|2054|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T09:54:39|2026-07-30T09:56:41|2026-07-30T10:11:17|876|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T09:54:42|2026-07-30T09:57:42|2026-07-30T10:07:49|607|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T09:54:42|2026-07-30T09:57:55|2026-07-30T10:08:18|623|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T09:54:44|2026-07-30T09:58:42|2026-07-30T10:07:36|534|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T09:54:49|2026-07-30T10:01:14|2026-07-30T10:07:49|395|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37925450|open_curb_ramp_compare|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-30T09:59:47|2026-07-30T10:01:44|2026-07-30T10:14:39|775|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37925451|open_curb_ramp_compare|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-30T09:59:47|2026-07-30T10:01:44|2026-07-30T10:03:32|108|billing=8,cpu=8,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37925452|qwen_curb_ramp_compare|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-30T09:59:47|2026-07-30T10:03:46|2026-07-30T10:19:08|922|billing=8,cpu=8,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37925453|qwen_curb_ramp_compare|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-30T09:59:48|2026-07-30T10:03:15|2026-07-30T10:28:44|1529|billing=8,cpu=8,gres/gpu:l40s=2,gres/gpu=2,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:07:52|2026-07-30T10:10:02|2026-07-30T10:12:52|170|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:08:29|2026-07-30T10:10:51|2026-07-30T10:16:46|355|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:08:41|2026-07-30T10:13:09|2026-07-30T10:16:46|217|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:09:07|2026-07-30T10:13:21|2026-07-30T10:14:18|57|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:12:25|2026-07-30T10:15:53|2026-07-30T10:16:24|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:12:54|2026-07-30T10:16:09|2026-07-30T10:32:03|954|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37925554|open_curb_ramp_compare|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-30T10:14:17|2026-07-30T10:16:09|2026-07-30T10:48:11|1922|billing=8,cpu=8,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:15:07|2026-07-30T10:17:17|2026-07-30T10:35:56|1119|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:17:14|2026-07-30T10:19:56|2026-07-30T10:34:04|848|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:17:34|2026-07-30T10:20:26|2026-07-30T10:35:05|879|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:17:52|2026-07-30T10:22:27|2026-07-30T10:36:00|813|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:32:55|2026-07-30T10:35:14|2026-07-30T10:40:16|302|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:34:07|2026-07-30T10:36:19|2026-07-30T10:45:24|545|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:35:56|2026-07-30T10:38:04|2026-07-30T10:40:02|118|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:36:47|2026-07-30T10:39:08|2026-07-30T10:40:08|60|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:36:50|2026-07-30T10:39:08|2026-07-30T10:40:39|91|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:40:53|2026-07-30T10:44:27|2026-07-30T10:45:46|79|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:40:59|2026-07-30T10:44:27|2026-07-30T10:47:12|165|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:41:06|2026-07-30T10:44:27|2026-07-30T10:46:49|142|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:41:45|2026-07-30T10:44:27|2026-07-30T11:01:19|1012|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:46:14|2026-07-30T10:48:18|2026-07-30T10:48:42|24|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:46:37|2026-07-30T10:48:39|2026-07-30T10:49:18|39|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:47:44|2026-07-30T10:50:45|2026-07-30T10:56:06|321|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:48:04|2026-07-30T10:50:45|2026-07-30T11:00:59|614|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:49:41|2026-07-30T10:53:18|2026-07-30T10:55:41|143|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:50:15|2026-07-30T10:53:18|2026-07-30T10:57:01|223|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:56:30|2026-07-30T10:58:46|2026-07-30T11:01:14|148|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:56:56|2026-07-30T10:59:31|2026-07-30T11:03:20|229|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T10:57:52|2026-07-30T11:00:19|2026-07-30T11:17:32|1033|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:02:05|2026-07-30T11:04:20|2026-07-30T11:04:54|34|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:02:08|2026-07-30T11:04:20|2026-07-30T11:05:19|59|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:02:20|2026-07-30T11:04:25|2026-07-30T11:06:56|151|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:04:12|2026-07-30T11:06:20|2026-07-30T11:12:20|360|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:06:01|2026-07-30T11:08:20|2026-07-30T11:16:20|480|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:06:26|2026-07-30T11:08:27|2026-07-30T11:17:12|525|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:08:01|2026-07-30T11:10:59|2026-07-30T11:17:47|408|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:13:09|2026-07-30T11:15:20|2026-07-30T11:17:29|129|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:17:12|2026-07-30T11:19:17|2026-07-30T11:32:13|776|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:18:17|2026-07-30T11:20:35|2026-07-30T11:29:18|523|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:18:22|2026-07-30T11:20:35|2026-07-30T11:21:24|49|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:18:29|2026-07-30T11:20:35|2026-07-30T11:29:13|518|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:18:39|2026-07-30T11:21:06|2026-07-30T11:29:41|515|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:21:26|2026-07-30T11:24:04|2026-07-30T11:26:07|123|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:27:01|2026-07-30T11:29:11|2026-07-30T12:19:25|3014|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:29:14|2026-07-30T11:33:14|2026-07-30T12:21:22|2888|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:29:19|2026-07-30T11:33:14|2026-07-30T11:38:53|339|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:30:34|2026-07-30T11:33:14|2026-07-30T11:38:53|339|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:33:04|2026-07-30T11:35:16|2026-07-30T12:11:57|2201|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:38:55|2026-07-30T11:41:20|2026-07-30T11:45:23|243|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:38:55|2026-07-30T11:41:20|2026-07-30T11:41:27|7|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:42:23|2026-07-30T11:45:48|2026-07-30T12:47:48|3720|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T11:46:16|2026-07-30T11:48:51|2026-07-30T12:22:20|2009|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:12:46|2026-07-30T12:16:15|2026-07-30T12:18:49|154|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:19:46|2026-07-30T12:23:21|2026-07-30T12:28:28|307|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:20:15|2026-07-30T12:23:21|2026-07-30T12:47:51|1470|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:22:14|2026-07-30T12:24:22|2026-07-30T12:25:23|61|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:22:23|2026-07-30T12:25:22|2026-07-30T12:47:54|1352|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:26:12|2026-07-30T12:28:24|2026-07-30T12:31:24|180|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:28:31|2026-07-30T12:30:56|2026-07-30T12:47:48|1012|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:32:18|2026-07-30T12:35:19|2026-07-30T12:47:48|749|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:47:49|2026-07-30T12:50:25|2026-07-30T12:58:58|513|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:47:50|2026-07-30T12:50:25|2026-07-30T12:58:56|511|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:48:37|2026-07-30T12:50:44|2026-07-30T12:58:58|494|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:48:41|2026-07-30T12:50:44|2026-07-30T12:53:25|161|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:48:43|2026-07-30T12:50:44|2026-07-30T12:53:25|161|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:54:15|2026-07-30T12:57:20|2026-07-30T12:58:56|96|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:54:32|2026-07-30T12:57:40|2026-07-30T12:57:45|5|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:58:36|2026-07-30T13:00:49|2026-07-30T13:35:07|2058|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:59:45|2026-07-30T13:01:54|2026-07-30T13:13:49|715|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:59:46|2026-07-30T13:01:56|2026-07-30T13:17:17|921|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:59:48|2026-07-30T13:01:56|2026-07-30T13:17:53|957|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T12:59:49|2026-07-30T13:02:25|2026-07-30T13:14:22|717|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:14:38|2026-07-30T13:18:59|2026-07-30T13:21:40|161|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:15:13|2026-07-30T13:19:25|2026-07-30T13:23:00|215|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:17:19|2026-07-30T13:19:42|2026-07-30T13:22:26|164|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:18:43|2026-07-30T13:21:18|2026-07-30T13:30:21|543|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:22:28|2026-07-30T13:24:48|2026-07-30T13:29:47|299|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:22:30|2026-07-30T13:24:48|2026-07-30T13:29:26|278|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:23:49|2026-07-30T13:26:13|2026-07-30T13:26:33|20|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:27:25|2026-07-30T13:29:47|2026-07-30T13:30:48|61|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:30:17|2026-07-30T13:32:19|2026-07-30T13:36:54|275|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:30:42|2026-07-30T13:32:49|2026-07-30T13:37:07|258|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:31:25|2026-07-30T13:35:02|2026-07-30T13:37:30|148|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:31:37|2026-07-30T13:35:27|2026-07-30T13:37:50|143|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:35:56|2026-07-30T13:38:02|2026-07-30T13:41:34|212|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:36:57|2026-07-30T13:38:59|2026-07-30T13:40:14|75|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:37:57|2026-07-30T13:40:12|2026-07-30T13:41:26|74|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:38:20|2026-07-30T13:40:27|2026-07-30T13:42:39|132|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:38:39|2026-07-30T13:41:26|2026-07-30T13:42:04|38|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:41:05|2026-07-30T13:43:26|2026-07-30T13:50:51|445|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:42:16|2026-07-30T13:44:26|2026-07-30T13:45:10|44|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:42:40|2026-07-30T13:44:57|2026-07-30T13:45:18|21|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:43:10|2026-07-30T13:45:57|2026-07-30T13:48:41|164|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:43:28|2026-07-30T13:45:57|2026-07-30T13:47:40|103|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:45:12|2026-07-30T13:48:06|2026-07-30T13:52:08|242|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:46:08|2026-07-30T13:48:27|2026-07-30T13:51:24|177|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:47:42|2026-07-30T13:49:57|2026-07-30T13:52:08|131|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:49:31|2026-07-30T13:51:40|2026-07-30T13:52:33|53|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:51:44|2026-07-30T13:53:47|2026-07-30T13:54:42|55|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:52:31|2026-07-30T13:54:33|2026-07-30T14:00:52|379|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:52:58|2026-07-30T13:55:12|2026-07-30T14:00:30|318|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:52:58|2026-07-30T13:55:26|2026-07-30T13:55:58|32|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:53:25|2026-07-30T13:55:26|2026-07-30T14:03:19|473|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:55:32|2026-07-30T13:57:34|2026-07-30T13:58:46|72|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:56:00|2026-07-30T13:58:15|2026-07-30T13:59:26|71|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T13:59:36|2026-07-30T14:01:39|2026-07-30T14:02:53|74|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:00:16|2026-07-30T14:02:18|2026-07-30T14:05:24|186|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:01:38|2026-07-30T14:04:19|2026-07-30T14:04:21|2|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:01:45|2026-07-30T14:04:19|2026-07-30T14:05:55|96|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:03:43|2026-07-30T14:06:21|2026-07-30T14:06:39|18|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:04:09|2026-07-30T14:06:21|2026-07-30T14:12:17|356|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:05:10|2026-07-30T14:07:22|2026-07-30T14:08:17|55|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:06:14|2026-07-30T14:09:24|2026-07-30T14:12:27|183|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:06:48|2026-07-30T14:09:24|2026-07-30T14:11:52|148|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:07:31|2026-07-30T14:09:54|2026-07-30T14:10:39|45|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:09:14|2026-07-30T14:11:26|2026-07-30T14:13:50|144|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:11:30|2026-07-30T14:14:59|2026-07-30T14:22:36|457|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:12:41|2026-07-30T14:14:59|2026-07-30T14:15:25|26|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:13:06|2026-07-30T14:15:30|2026-07-30T14:23:13|463|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:13:16|2026-07-30T14:16:00|2026-07-30T14:22:52|412|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:14:41|2026-07-30T14:17:01|2026-07-30T14:24:53|472|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:16:15|2026-07-30T14:18:33|2026-07-30T14:24:56|383|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:23:28|2026-07-30T14:26:09|2026-07-30T14:27:47|98|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:23:41|2026-07-30T14:26:09|2026-07-30T14:28:11|122|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:24:04|2026-07-30T14:26:09|2026-07-30T14:38:20|731|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:25:42|2026-07-30T14:28:41|2026-07-30T14:35:05|384|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:25:46|2026-07-30T14:30:12|2026-07-30T14:34:10|238|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:28:37|2026-07-30T14:30:43|2026-07-30T14:33:16|153|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:29:03|2026-07-30T14:31:14|2026-07-30T14:35:20|246|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:34:05|2026-07-30T14:36:18|2026-07-30T14:37:36|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:35:01|2026-07-30T14:37:19|2026-07-30T14:38:25|66|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:35:55|2026-07-30T14:38:25|2026-07-30T14:50:13|708|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:36:17|2026-07-30T14:38:25|2026-07-30T14:50:33|728|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:38:27|2026-07-30T14:40:30|2026-07-30T14:42:25|115|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:39:09|2026-07-30T14:41:12|2026-07-30T14:42:38|86|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:39:14|2026-07-30T14:42:38|2026-07-30T14:51:24|526|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:43:14|2026-07-30T14:48:00|2026-07-30T14:51:24|204|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:43:28|2026-07-30T14:48:00|2026-07-30T14:48:13|13|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:49:10|2026-07-30T14:52:26|2026-07-30T14:57:27|301|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:51:24|2026-07-30T14:53:27|2026-07-30T14:59:05|338|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:51:41|2026-07-30T14:53:52|2026-07-30T14:56:38|166|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:52:14|2026-07-30T14:54:26|2026-07-30T14:55:37|71|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:52:32|2026-07-30T14:54:36|2026-07-30T15:00:01|325|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:55:40|2026-07-30T14:57:50|2026-07-30T15:00:26|156|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:57:28|2026-07-30T14:59:33|2026-07-30T15:36:05|2192|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:58:16|2026-07-30T15:00:26|2026-07-30T16:36:50|5784|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T14:59:54|2026-07-30T15:02:26|2026-07-30T15:05:26|180|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:01:00|2026-07-30T15:03:06|2026-07-30T15:09:50|404|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:01:15|2026-07-30T15:03:19|2026-07-30T15:35:26|1927|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:06:16|2026-07-30T15:08:19|2026-07-30T15:16:27|488|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:10:42|2026-07-30T15:13:25|2026-07-30T15:16:44|199|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:17:19|2026-07-30T15:19:26|2026-07-30T15:23:05|219|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:17:34|2026-07-30T15:20:02|2026-07-30T15:21:21|79|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:22:15|2026-07-30T15:24:26|2026-07-30T15:25:27|61|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:23:54|2026-07-30T15:26:08|2026-07-30T15:27:39|91|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:26:17|2026-07-30T15:28:27|2026-07-30T15:30:02|95|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:28:28|2026-07-30T15:30:42|2026-07-30T15:32:26|104|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:30:51|2026-07-30T15:33:15|2026-07-30T15:34:47|92|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:33:15|2026-07-30T15:35:48|2026-07-30T15:56:14|1226|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:35:37|2026-07-30T15:37:50|2026-07-30T15:38:18|28|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:36:07|2026-07-30T15:39:07|2026-07-30T15:41:24|137|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:36:17|2026-07-30T15:39:07|2026-07-30T15:51:10|723|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:39:12|2026-07-30T15:42:10|2026-07-30T15:43:39|89|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:42:20|2026-07-30T15:44:27|2026-07-30T16:32:33|2886|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:44:27|2026-07-30T15:46:28|2026-07-30T15:47:23|55|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:48:15|2026-07-30T15:50:19|2026-07-30T16:33:57|2618|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:51:13|2026-07-30T15:53:25|2026-07-30T17:21:33|5288|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T15:57:04|2026-07-30T15:59:09|2026-07-30T15:59:26|17|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:00:15|2026-07-30T16:02:20|2026-07-30T16:14:51|751|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:15:41|2026-07-30T16:17:48|2026-07-30T16:18:59|71|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:19:49|2026-07-30T16:21:59|2026-07-30T16:22:43|44|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:23:33|2026-07-30T16:25:36|2026-07-30T16:31:24|348|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:32:15|2026-07-30T16:35:15|2026-07-30T16:38:32|197|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:33:23|2026-07-30T16:35:32|2026-07-30T16:55:10|1178|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:33:59|2026-07-30T16:36:11|2026-07-30T16:36:50|39|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:37:44|2026-07-30T16:39:51|2026-07-30T16:47:55|484|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:37:59|2026-07-30T16:40:18|2026-07-30T16:48:10|472|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:39:27|2026-07-30T16:41:33|2026-07-30T16:47:55|382|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:47:56|2026-07-30T16:50:04|2026-07-30T16:51:12|68|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:48:54|2026-07-30T16:51:05|2026-07-30T19:43:06|10321|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:49:01|2026-07-30T16:51:05|2026-07-30T16:59:54|529|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:52:02|2026-07-30T16:54:09|2026-07-30T16:54:40|31|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:54:43|2026-07-30T16:57:00|2026-07-30T16:59:33|153|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T16:56:04|2026-07-30T16:58:14|2026-07-30T18:55:51|7057|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T17:00:22|2026-07-30T17:02:31|2026-07-30T19:42:26|9595|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T17:00:45|2026-07-30T17:02:50|2026-07-30T19:42:26|9576|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T17:22:41|2026-07-30T17:25:12|2026-07-30T17:56:28|1876|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T17:57:18|2026-07-30T17:59:32|2026-07-30T18:55:51|3379|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37940649|yolo_pack|klone|ckpt|ckpt|COMPLETED|2026-07-30T18:09:13|2026-07-30T18:09:24|2026-07-30T20:47:17|9473|billing=8,cpu=8,mem=32G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T18:55:52|2026-07-30T18:58:07|2026-07-30T19:05:45|458|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T18:56:44|2026-07-30T18:59:02|2026-07-30T19:06:41|459|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T19:06:36|2026-07-30T19:08:39|2026-07-30T19:59:54|3075|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T19:07:48|2026-07-30T19:09:53|2026-07-30T19:59:56|3003|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T19:43:19|2026-07-30T19:45:22|2026-07-30T19:51:12|350|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T19:43:23|2026-07-30T19:45:31|2026-07-30T19:51:09|338|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T19:44:02|2026-07-30T19:46:18|2026-07-30T19:51:17|299|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T19:51:11|2026-07-30T19:53:23|2026-07-30T19:53:35|12|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T19:51:14|2026-07-30T19:53:23|2026-07-30T19:53:38|15|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T19:52:07|2026-07-30T19:54:54|2026-07-30T19:59:54|300|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T19:53:37|2026-07-30T19:55:41|2026-07-30T20:00:22|281|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T19:54:28|2026-07-30T19:56:30|2026-07-30T19:56:52|22|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T19:57:42|2026-07-30T19:59:46|2026-07-30T20:00:17|31|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:00:46|2026-07-30T20:02:47|2026-07-30T20:03:02|15|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:00:53|2026-07-30T20:03:00|2026-07-30T20:05:18|138|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:01:03|2026-07-30T20:03:07|2026-07-30T20:51:24|2897|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:01:07|2026-07-30T20:03:20|2026-07-30T20:51:48|2908|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:01:11|2026-07-30T20:03:23|2026-07-30T20:05:18|115|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:03:51|2026-07-30T20:06:33|2026-07-30T20:07:11|38|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:06:07|2026-07-30T20:08:45|2026-07-30T20:22:10|805|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:06:10|2026-07-30T20:08:45|2026-07-30T20:22:13|808|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:08:01|2026-07-30T20:10:07|2026-07-30T20:22:07|720|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:22:11|2026-07-30T20:24:18|2026-07-30T20:32:36|498|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:22:56|2026-07-30T20:25:14|2026-07-30T20:32:32|438|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:23:03|2026-07-30T20:25:14|2026-07-30T20:32:58|464|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:32:34|2026-07-30T20:34:49|2026-07-30T20:37:20|151|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:33:25|2026-07-30T20:35:26|2026-07-30T20:37:20|114|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:33:49|2026-07-30T20:35:57|2026-07-30T20:37:20|83|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:38:09|2026-07-30T20:41:19|2026-07-30T20:42:50|91|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:38:09|2026-07-30T20:41:19|2026-07-30T20:44:04|165|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:38:15|2026-07-30T20:41:19|2026-07-30T20:48:37|438|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:42:52|2026-07-30T20:45:36|2026-07-30T20:48:37|181|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:44:07|2026-07-30T20:46:37|2026-07-30T20:49:25|168|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:49:27|2026-07-30T20:51:41|2026-07-30T20:53:45|124|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:49:30|2026-07-30T20:51:41|2026-07-30T20:56:04|263|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:50:14|2026-07-30T20:53:30|2026-07-30T20:54:55|85|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:52:19|2026-07-30T20:54:43|2026-07-30T20:56:01|78|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:52:59|2026-07-30T20:55:05|2026-07-30T20:55:49|44|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:54:34|2026-07-30T20:56:45|2026-07-30T20:58:16|91|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:56:02|2026-07-30T20:58:16|2026-07-30T21:04:17|361|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:56:39|2026-07-30T20:58:46|2026-07-30T21:04:47|361|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:56:50|2026-07-30T20:58:51|2026-07-30T21:07:02|491|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:56:54|2026-07-30T20:59:01|2026-07-30T21:21:27|1346|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T20:59:06|2026-07-30T21:01:19|2026-07-30T21:03:20|121|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:04:12|2026-07-30T21:06:24|2026-07-30T21:07:55|91|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:05:09|2026-07-30T21:07:55|2026-07-30T21:28:47|1252|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:05:40|2026-07-30T21:08:56|2026-07-30T21:28:47|1191|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:07:05|2026-07-30T21:09:26|2026-07-30T21:28:47|1161|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:08:45|2026-07-30T21:10:58|2026-07-30T21:13:30|152|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:14:26|2026-07-30T21:16:32|2026-07-30T21:28:47|735|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:22:40|2026-07-30T21:24:51|2026-07-30T21:28:47|236|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:29:35|2026-07-30T21:31:45|2026-07-30T21:50:44|1139|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:29:37|2026-07-30T21:31:45|2026-07-30T21:37:25|340|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:29:37|2026-07-30T21:31:45|2026-07-30T21:33:16|91|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:29:39|2026-07-30T21:31:45|2026-07-30T21:33:52|127|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:29:48|2026-07-30T21:31:56|2026-07-30T21:57:00|1504|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:34:06|2026-07-30T21:36:18|2026-07-30T23:09:55|5617|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:34:42|2026-07-30T21:36:49|2026-07-30T21:50:46|837|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:38:16|2026-07-30T21:40:22|2026-07-30T22:39:31|3549|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:51:33|2026-07-30T21:54:00|2026-07-30T23:10:03|4563|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-30T21:51:36|2026-07-30T21:54:00|2026-07-31T06:00:02|29162|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T21:57:54|2026-07-30T21:59:58|2026-07-30T23:56:19|6981|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T22:40:23|2026-07-30T22:42:32|2026-07-30T23:02:48|1216|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T23:03:41|2026-07-30T23:05:46|2026-07-30T23:08:30|164|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T23:08:31|2026-07-30T23:10:32|2026-07-30T23:21:56|684|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T23:09:57|2026-07-30T23:12:04|2026-07-30T23:56:32|2668|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T23:10:54|2026-07-30T23:13:12|2026-07-31T00:04:50|3098|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T23:22:58|2026-07-30T23:24:59|2026-07-30T23:53:58|1739|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T23:54:50|2026-07-30T23:57:18|2026-07-31T00:00:51|213|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T23:57:17|2026-07-30T23:59:24|2026-07-31T00:04:52|328|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-30T23:57:22|2026-07-30T23:59:34|2026-07-31T00:01:19|105|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T00:01:22|2026-07-31T00:03:27|2026-07-31T00:05:18|111|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T00:01:41|2026-07-31T00:03:54|2026-07-31T00:04:18|24|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-31T00:05:11|2026-07-31T00:07:19|2026-07-31T08:15:02|29263|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T00:05:40|2026-07-31T00:07:59|2026-07-31T00:11:19|200|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T00:05:47|2026-07-31T00:07:59|2026-07-31T00:10:50|171|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-31T00:06:07|2026-07-31T00:08:18|2026-07-31T08:15:02|29204|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-31T00:11:40|2026-07-31T00:13:41|2026-07-31T08:15:02|28881|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-07-31T00:12:08|2026-07-31T00:14:19|2026-07-31T08:15:02|28843|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T06:00:05|2026-07-31T06:02:08|2026-07-31T13:48:42|27994|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T08:15:54|2026-07-31T08:18:02|2026-07-31T09:15:00|3418|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T08:15:55|2026-07-31T08:18:02|2026-07-31T09:15:00|3418|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T08:15:59|2026-07-31T08:18:02|2026-07-31T13:48:05|19803|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T08:16:06|2026-07-31T08:18:29|2026-07-31T13:43:46|19517|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T09:15:03|2026-07-31T09:17:19|2026-07-31T13:43:31|15972|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T09:16:23|2026-07-31T09:18:29|2026-07-31T13:43:38|15909|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37965593|sal-sao-paulo|klone|ckpt-g2|ckpt-gpu|FAILED|2026-07-31T12:56:26|2026-07-31T12:56:30|2026-07-31T12:57:19|49|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37965881|sal-sao-paulo|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-31T13:13:04|2026-07-31T13:13:13|2026-07-31T15:52:44|9571|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T13:43:32|2026-07-31T13:46:10|2026-07-31T13:53:17|427|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T13:43:51|2026-07-31T13:46:41|2026-07-31T14:54:10|4049|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T13:44:29|2026-07-31T13:48:12|2026-07-31T13:55:21|429|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T13:48:57|2026-07-31T13:51:03|2026-07-31T13:51:24|21|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T13:49:32|2026-07-31T13:51:45|2026-07-31T13:55:42|237|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T13:52:13|2026-07-31T13:54:15|2026-07-31T14:09:21|906|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T13:53:18|2026-07-31T13:55:21|2026-07-31T13:59:52|271|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T13:56:12|2026-07-31T13:58:14|2026-07-31T14:05:49|455|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T13:56:31|2026-07-31T13:58:52|2026-07-31T15:58:42|7190|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T13:59:55|2026-07-31T14:02:25|2026-07-31T14:03:13|48|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T14:04:05|2026-07-31T14:06:29|2026-07-31T14:07:25|56|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T14:05:52|2026-07-31T14:07:53|2026-07-31T14:09:01|68|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T14:08:14|2026-07-31T14:10:18|2026-07-31T14:24:34|856|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T14:09:49|2026-07-31T14:12:01|2026-07-31T14:25:09|788|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T14:10:12|2026-07-31T14:13:37|2026-07-31T15:14:17|3640|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T14:25:25|2026-07-31T14:27:48|2026-07-31T14:32:34|286|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T14:26:00|2026-07-31T14:28:06|2026-07-31T15:10:11|2525|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T14:33:23|2026-07-31T14:35:28|2026-07-31T14:36:12|44|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T14:37:03|2026-07-31T14:39:07|2026-07-31T15:33:30|3263|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T14:55:02|2026-07-31T14:57:09|2026-07-31T15:27:34|1825|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:11:02|2026-07-31T15:13:18|2026-07-31T15:27:05|827|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:15:09|2026-07-31T15:17:11|2026-07-31T15:37:42|1231|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:27:55|2026-07-31T15:30:02|2026-07-31T15:34:15|253|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:28:30|2026-07-31T15:30:45|2026-07-31T15:37:24|399|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:34:20|2026-07-31T15:37:27|2026-07-31T15:37:42|15|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:35:05|2026-07-31T15:38:37|2026-07-31T15:46:28|471|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:37:26|2026-07-31T15:39:30|2026-07-31T15:46:59|449|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:38:34|2026-07-31T15:40:42|2026-07-31T15:42:47|125|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:38:39|2026-07-31T15:40:42|2026-07-31T15:50:09|567|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:42:49|2026-07-31T15:47:32|2026-07-31T15:49:43|131|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:47:02|2026-07-31T15:49:07|2026-07-31T16:18:30|1763|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:47:19|2026-07-31T15:50:41|2026-07-31T15:58:20|459|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:50:31|2026-07-31T15:54:22|2026-07-31T16:35:29|2467|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:51:01|2026-07-31T15:56:28|2026-07-31T16:33:49|2241|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37971663|sal-sao-paulo|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-07-31T15:58:19|2026-07-31T16:04:21|2026-07-31T16:09:12|291|billing=16,cpu=16,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:59:11|2026-07-31T16:03:49|2026-07-31T16:35:29|1900|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T15:59:36|2026-07-31T16:04:53|2026-07-31T16:41:03|2170|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T16:19:23|2026-07-31T16:30:15|2026-07-31T16:44:52|877|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T16:33:51|2026-07-31T16:36:31|2026-07-31T17:12:42|2171|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T16:35:33|2026-07-31T16:40:36|2026-07-31T16:46:49|373|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T16:37:19|2026-07-31T16:42:09|2026-07-31T17:06:38|1469|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T16:42:05|2026-07-31T16:45:47|2026-07-31T17:01:52|965|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T16:44:55|2026-07-31T16:49:09|2026-07-31T17:12:42|1413|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T16:47:51|2026-07-31T16:50:59|2026-07-31T17:15:16|1457|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T17:02:47|2026-07-31T17:04:54|2026-08-01T00:43:41|27527|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T17:07:27|2026-07-31T17:09:38|2026-07-31T17:14:15|277|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T17:12:43|2026-07-31T17:15:11|2026-08-01T00:43:38|26907|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T17:13:33|2026-07-31T17:17:19|2026-07-31T20:25:19|11280|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T17:15:18|2026-07-31T17:19:42|2026-07-31T17:50:11|1829|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T17:16:49|2026-07-31T17:21:24|2026-07-31T18:29:15|4071|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T17:50:14|2026-07-31T17:52:41|2026-07-31T18:15:18|1357|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T18:16:07|2026-07-31T18:18:22|2026-07-31T18:38:30|1208|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T18:30:05|2026-07-31T18:33:44|2026-07-31T18:51:00|1036|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T18:39:25|2026-07-31T18:43:18|2026-07-31T18:43:51|33|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T18:44:44|2026-07-31T18:47:55|2026-07-31T18:49:37|102|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T18:51:52|2026-07-31T18:54:39|2026-07-31T18:56:46|127|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T18:57:37|2026-07-31T18:59:52|2026-07-31T19:01:24|92|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T18:59:48|2026-07-31T19:02:26|2026-07-31T19:03:23|57|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T19:02:15|2026-07-31T19:04:20|2026-08-01T00:43:38|20358|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T19:04:14|2026-07-31T19:07:04|2026-07-31T19:09:15|131|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T19:10:08|2026-07-31T19:12:24|2026-07-31T19:57:32|2708|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T19:57:38|2026-07-31T19:59:46|2026-08-01T00:43:38|17032|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-07-31T20:26:56|2026-07-31T20:28:58|2026-08-01T00:43:38|15280|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T00:43:39|2026-08-01T00:45:41|2026-08-01T00:54:38|537|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T00:44:26|2026-08-01T00:46:51|2026-08-01T00:54:30|459|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T00:44:27|2026-08-01T00:46:51|2026-08-01T00:54:30|459|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T00:44:29|2026-08-01T00:46:51|2026-08-01T00:54:38|467|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T00:44:34|2026-08-01T00:47:03|2026-08-01T00:47:24|21|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T00:48:18|2026-08-01T00:52:50|2026-08-01T00:54:30|100|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T00:54:32|2026-08-01T00:56:40|2026-08-01T01:14:54|1094|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T00:54:32|2026-08-01T00:56:40|2026-08-01T00:57:50|70|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T00:55:27|2026-08-01T00:57:41|2026-08-01T01:09:30|709|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T00:55:29|2026-08-01T00:57:50|2026-08-01T01:08:50|660|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T00:55:30|2026-08-01T00:57:50|2026-08-01T01:08:19|629|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T00:58:42|2026-08-01T01:02:15|2026-08-01T01:02:51|36|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:03:52|2026-08-01T01:09:21|2026-08-01T01:09:30|9|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:08:21|2026-08-01T01:10:22|2026-08-01T01:14:56|274|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:09:41|2026-08-01T01:11:51|2026-08-01T01:14:54|183|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:10:18|2026-08-01T01:12:23|2026-08-01T01:14:54|151|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:10:19|2026-08-01T01:12:23|2026-08-01T01:14:56|153|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:14:56|2026-08-01T01:16:58|2026-08-01T01:32:49|951|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:15:44|2026-08-01T01:17:46|2026-08-01T01:38:51|1265|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:15:45|2026-08-01T01:22:50|2026-08-01T01:38:55|965|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:15:46|2026-08-01T01:22:50|2026-08-01T01:31:55|545|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:15:59|2026-08-01T01:22:50|2026-08-01T01:38:55|965|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:31:57|2026-08-01T01:34:22|2026-08-01T01:47:50|808|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:33:40|2026-08-01T01:35:52|2026-08-01T01:47:50|718|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:38:57|2026-08-01T01:41:27|2026-08-01T01:45:51|264|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:38:57|2026-08-01T01:41:27|2026-08-01T02:02:48|1281|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:39:46|2026-08-01T01:41:52|2026-08-01T01:47:50|358|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:46:43|2026-08-01T01:48:51|2026-08-01T02:02:48|837|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:47:52|2026-08-01T01:50:36|2026-08-01T02:02:50|734|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:48:40|2026-08-01T01:51:06|2026-08-01T02:00:24|558|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T01:48:44|2026-08-01T01:51:06|2026-08-01T02:00:51|585|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:00:26|2026-08-01T02:02:35|2026-08-01T02:02:48|13|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:00:53|2026-08-01T02:03:07|2026-08-01T02:17:08|841|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:03:37|2026-08-01T02:07:13|2026-08-01T02:17:51|638|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:03:38|2026-08-01T02:09:51|2026-08-01T02:17:51|480|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:03:40|2026-08-01T02:10:23|2026-08-01T02:32:49|1346|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:03:49|2026-08-01T02:10:23|2026-08-01T02:17:51|448|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:17:53|2026-08-01T02:20:31|2026-08-01T02:23:03|152|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:18:00|2026-08-01T02:20:52|2026-08-01T02:36:40|948|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:18:41|2026-08-01T02:20:52|2026-08-01T02:36:10|918|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:18:45|2026-08-01T02:21:02|2026-08-01T02:21:18|16|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:22:10|2026-08-01T02:25:05|2026-08-01T02:32:51|466|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:23:53|2026-08-01T02:26:06|2026-08-01T02:33:36|450|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:33:42|2026-08-01T02:37:15|2026-08-01T03:02:50|1535|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:33:47|2026-08-01T02:37:15|2026-08-01T02:37:46|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:34:37|2026-08-01T02:37:55|2026-08-01T02:41:10|195|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:37:01|2026-08-01T02:39:12|2026-08-01T02:47:52|520|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:37:32|2026-08-01T02:39:48|2026-08-01T03:02:50|1382|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:38:47|2026-08-01T02:41:49|2026-08-01T02:47:52|363|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:42:01|2026-08-01T02:44:07|2026-08-01T02:47:52|225|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:47:55|2026-08-01T02:50:05|2026-08-01T03:44:03|3238|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:48:43|2026-08-01T02:50:53|2026-08-01T03:04:11|798|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:48:43|2026-08-01T02:50:56|2026-08-01T02:56:55|359|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T02:57:49|2026-08-01T02:59:55|2026-08-01T03:17:51|1076|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T03:02:51|2026-08-01T03:05:07|2026-08-01T03:05:38|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T03:03:43|2026-08-01T03:06:39|2026-08-01T03:17:51|672|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T03:05:00|2026-08-01T03:07:09|2026-08-01T03:07:56|47|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T03:06:32|2026-08-01T03:08:56|2026-08-01T09:49:17|24021|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T03:08:53|2026-08-01T03:10:57|2026-08-01T03:17:51|414|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T03:18:41|2026-08-01T03:20:50|2026-08-01T03:32:51|721|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T03:18:41|2026-08-01T03:20:50|2026-08-01T03:32:58|728|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T03:18:48|2026-08-01T03:20:50|2026-08-01T03:33:01|731|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T03:32:54|2026-08-01T03:34:58|2026-08-01T09:25:49|21051|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T03:33:50|2026-08-01T03:35:58|2026-08-01T09:46:59|22261|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-01T03:33:51|2026-08-01T03:35:58|2026-08-01T11:45:02|29344|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T03:44:53|2026-08-01T03:46:59|2026-08-01T09:24:05|20226|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37998087|qwen_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-08-01T08:12:52|2026-08-01T08:12:53|2026-08-01T08:29:13|980|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37998088|qwen_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-08-01T08:12:52|2026-08-01T14:11:19|2026-08-01T14:35:33|1454|billing=8,cpu=8,gres/gpu:l40s=2,gres/gpu=2,mem=64G,node=1|1|0:0 +37998089|open_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-08-01T08:12:52|2026-08-01T08:29:15|2026-08-01T08:41:08|713|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37998090|open_curb_ramp_compare|klone|gpu-l40s|normal|COMPLETED|2026-08-01T08:12:52|2026-08-01T08:41:10|2026-08-01T09:05:54|1484|billing=8,cpu=8,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T09:24:56|2026-08-01T09:27:16|2026-08-01T09:45:51|1115|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T09:26:44|2026-08-01T09:28:46|2026-08-01T10:53:16|5070|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T09:45:53|2026-08-01T09:48:00|2026-08-01T09:49:17|77|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T09:47:53|2026-08-01T09:50:16|2026-08-01T12:55:49|11133|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T09:49:18|2026-08-01T09:52:03|2026-08-01T10:04:28|745|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T09:50:08|2026-08-01T09:52:16|2026-08-01T09:53:06|50|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T09:53:56|2026-08-01T09:57:37|2026-08-01T10:34:44|2227|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T10:04:30|2026-08-01T10:07:06|2026-08-01T12:31:14|8648|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T10:35:48|2026-08-01T10:38:22|2026-08-01T10:52:41|859|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T10:53:31|2026-08-01T10:56:55|2026-08-01T11:58:40|3705|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T10:54:05|2026-08-01T11:12:09|2026-08-01T11:59:17|2828|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T11:45:04|2026-08-01T11:59:44|2026-08-01T18:43:11|24207|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T11:59:30|2026-08-01T12:01:45|2026-08-01T16:03:03|14478|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T12:00:05|2026-08-01T12:02:16|2026-08-01T18:21:38|22762|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T12:32:06|2026-08-01T12:34:17|2026-08-01T18:21:16|20819|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T12:56:47|2026-08-01T12:58:54|2026-08-01T18:43:11|20657|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T16:03:55|2026-08-01T16:06:05|2026-08-01T16:06:11|6|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T16:07:01|2026-08-01T16:09:20|2026-08-01T18:20:54|7894|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T18:21:40|2026-08-01T18:24:02|2026-08-01T18:43:11|1149|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T18:21:44|2026-08-01T18:24:02|2026-08-01T18:30:11|369|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T18:22:19|2026-08-01T18:24:32|2026-08-01T18:43:11|1119|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T18:30:13|2026-08-01T18:33:09|2026-08-01T18:43:11|602|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T18:44:01|2026-08-01T18:46:16|2026-08-01T19:14:19|1683|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T18:44:03|2026-08-01T18:46:16|2026-08-01T18:53:35|439|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T18:44:09|2026-08-01T18:46:16|2026-08-01T19:38:43|3147|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T18:44:10|2026-08-01T18:46:16|2026-08-01T19:36:55|3039|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T18:44:16|2026-08-01T18:46:47|2026-08-01T19:36:34|2987|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T18:54:27|2026-08-01T18:56:52|2026-08-01T19:36:03|2351|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:15:10|2026-08-01T19:17:33|2026-08-01T19:44:07|1594|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:36:55|2026-08-01T19:39:19|2026-08-01T19:44:07|288|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:36:57|2026-08-01T19:39:50|2026-08-02T00:39:19|17969|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:37:26|2026-08-01T19:39:50|2026-08-01T22:06:08|8778|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:39:45|2026-08-01T19:41:54|2026-08-01T19:43:40|106|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:44:33|2026-08-01T19:46:40|2026-08-01T19:47:08|28|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:44:58|2026-08-01T19:48:15|2026-08-01T19:55:10|415|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:45:04|2026-08-01T19:48:15|2026-08-01T19:55:50|455|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:48:06|2026-08-01T19:50:20|2026-08-01T19:55:10|290|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:55:14|2026-08-01T19:57:36|2026-08-01T19:58:46|70|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:56:02|2026-08-01T19:58:06|2026-08-01T20:06:05|479|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:56:43|2026-08-01T19:59:07|2026-08-02T00:31:03|16316|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T19:59:41|2026-08-01T20:02:09|2026-08-01T20:05:47|218|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T20:05:50|2026-08-01T20:08:14|2026-08-01T23:34:03|12349|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T20:06:59|2026-08-01T20:09:14|2026-08-02T00:31:03|15709|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T22:06:09|2026-08-01T22:08:29|2026-08-01T23:34:24|5155|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T23:34:53|2026-08-02T00:10:42|2026-08-02T00:31:03|1221|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-01T23:35:14|2026-08-02T00:15:46|2026-08-02T00:20:27|281|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T00:21:17|2026-08-02T00:24:23|2026-08-02T00:35:55|692|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T00:31:51|2026-08-02T00:34:00|2026-08-02T01:00:21|1581|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T00:31:52|2026-08-02T00:40:36|2026-08-02T00:51:02|626|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T00:31:54|2026-08-02T00:40:36|2026-08-02T00:50:05|569|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T00:36:45|2026-08-02T00:40:36|2026-08-02T00:50:05|569|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T00:40:13|2026-08-02T00:46:41|2026-08-02T00:50:05|204|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T00:50:07|2026-08-02T00:52:46|2026-08-02T01:00:21|455|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T00:50:54|2026-08-02T00:59:21|2026-08-02T01:00:24|63|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T00:50:54|2026-08-02T00:59:21|2026-08-02T01:00:48|87|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T00:51:52|2026-08-02T00:59:21|2026-08-02T01:00:24|63|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:00:26|2026-08-02T01:02:54|2026-08-02T01:06:32|218|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:01:11|2026-08-02T01:03:54|2026-08-02T01:06:32|158|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:01:13|2026-08-02T01:03:54|2026-08-02T01:10:39|405|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:01:15|2026-08-02T01:07:28|2026-08-02T01:10:39|191|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:01:38|2026-08-02T01:07:28|2026-08-02T01:10:39|191|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:07:22|2026-08-02T01:09:29|2026-08-02T01:10:39|70|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:07:22|2026-08-02T01:09:29|2026-08-02T01:11:09|100|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:10:41|2026-08-02T01:17:05|2026-08-02T01:20:57|232|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:11:32|2026-08-02T01:17:36|2026-08-02T01:21:16|220|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:11:35|2026-08-02T01:20:38|2026-08-02T01:21:00|22|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:11:44|2026-08-02T01:20:38|2026-08-02T01:20:57|19|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:11:59|2026-08-02T01:22:09|2026-08-02T01:36:28|859|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:20:59|2026-08-02T01:23:41|2026-08-02T01:36:00|739|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:21:02|2026-08-02T01:24:42|2026-08-02T01:31:20|398|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:21:59|2026-08-02T01:25:43|2026-08-02T01:36:00|617|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:22:05|2026-08-02T01:25:43|2026-08-02T01:31:18|335|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:32:09|2026-08-02T01:34:51|2026-08-02T01:36:00|69|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:32:10|2026-08-02T01:37:24|2026-08-02T01:41:38|254|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:36:03|2026-08-02T01:38:24|2026-08-02T01:41:38|194|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:36:49|2026-08-02T01:39:56|2026-08-02T01:42:06|130|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:36:50|2026-08-02T01:39:56|2026-08-02T01:41:38|102|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:37:20|2026-08-02T01:39:56|2026-08-02T01:41:38|102|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:42:27|2026-08-02T01:50:35|2026-08-02T01:55:23|288|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:42:28|2026-08-02T01:50:35|2026-08-02T01:51:03|28|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:42:29|2026-08-02T01:52:36|2026-08-02T01:55:23|167|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:42:30|2026-08-02T01:53:07|2026-08-02T01:59:42|395|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:43:01|2026-08-02T01:53:07|2026-08-02T01:59:42|395|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:51:06|2026-08-02T01:54:07|2026-08-02T01:59:45|338|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:56:13|2026-08-02T01:58:41|2026-08-02T01:59:45|64|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T01:56:19|2026-08-02T01:59:11|2026-08-02T01:59:42|31|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:00:31|2026-08-02T02:03:15|2026-08-02T02:04:06|51|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:00:31|2026-08-02T02:03:15|2026-08-02T02:04:33|78|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:00:33|2026-08-02T02:05:16|2026-08-02T02:08:27|191|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:00:35|2026-08-02T02:05:16|2026-08-02T02:08:27|191|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:00:38|2026-08-02T02:05:46|2026-08-02T02:08:27|161|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:04:08|2026-08-02T02:06:47|2026-08-02T02:08:27|100|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:05:22|2026-08-02T02:07:48|2026-08-02T02:08:50|62|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:09:16|2026-08-02T02:11:20|2026-08-02T02:13:37|137|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:09:16|2026-08-02T02:11:20|2026-08-02T02:38:40|1640|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:09:17|2026-08-02T02:11:20|2026-08-02T02:12:41|81|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:09:18|2026-08-02T02:12:21|2026-08-02T02:16:59|278|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:09:40|2026-08-02T02:14:53|2026-08-02T02:16:59|126|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:12:43|2026-08-02T02:15:53|2026-08-02T02:16:59|66|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:13:39|2026-08-02T02:15:53|2026-08-02T02:17:24|91|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:17:01|2026-08-02T02:19:26|2026-08-02T02:21:19|113|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:17:48|2026-08-02T02:20:57|2026-08-02T02:21:55|58|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:17:49|2026-08-02T02:22:29|2026-08-02T02:25:38|189|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:18:13|2026-08-02T02:22:59|2026-08-02T02:25:40|161|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:21:21|2026-08-02T02:23:29|2026-08-02T02:25:40|131|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:22:45|2026-08-02T02:25:31|2026-08-02T02:25:38|7|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:26:27|2026-08-02T02:29:04|2026-08-02T02:30:00|56|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:26:28|2026-08-02T02:29:34|2026-08-02T02:30:00|26|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:26:30|2026-08-02T02:31:05|2026-08-02T02:34:20|195|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:26:33|2026-08-02T02:31:05|2026-08-02T02:34:20|195|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:30:50|2026-08-02T02:34:07|2026-08-02T02:34:20|13|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:30:50|2026-08-02T02:35:39|2026-08-02T02:38:40|181|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:35:09|2026-08-02T02:37:40|2026-08-02T02:38:40|60|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:35:10|2026-08-02T02:37:40|2026-08-02T02:38:40|60|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:35:11|2026-08-02T02:38:10|2026-08-02T02:38:40|30|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:39:29|2026-08-02T02:41:43|2026-08-02T02:43:40|117|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:39:30|2026-08-02T02:41:43|2026-08-02T02:42:58|75|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:39:32|2026-08-02T02:44:15|2026-08-02T02:47:39|204|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:39:33|2026-08-02T02:44:15|2026-08-02T02:47:18|183|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:39:44|2026-08-02T02:44:45|2026-08-02T02:47:18|153|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:43:00|2026-08-02T02:45:16|2026-08-02T02:47:18|122|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:44:30|2026-08-02T02:47:48|2026-08-02T02:51:38|230|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:48:08|2026-08-02T02:53:24|2026-08-02T02:56:01|157|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:48:10|2026-08-02T02:53:54|2026-08-02T02:56:01|127|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:48:18|2026-08-02T02:53:54|2026-08-02T02:55:57|123|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:48:28|2026-08-02T02:53:54|2026-08-02T02:56:01|127|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:52:30|2026-08-02T02:55:26|2026-08-02T02:56:40|74|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:56:00|2026-08-02T02:58:29|2026-08-02T03:00:18|109|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:56:03|2026-08-02T02:58:59|2026-08-02T03:00:18|79|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:56:54|2026-08-02T02:58:59|2026-08-02T03:00:21|82|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:56:57|2026-08-02T02:59:29|2026-08-02T03:00:21|52|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T02:57:29|2026-08-02T03:00:00|2026-08-02T03:00:21|21|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:00:20|2026-08-02T03:02:32|2026-08-02T03:13:22|650|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:01:07|2026-08-02T03:03:33|2026-08-02T03:04:39|66|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:01:11|2026-08-02T03:05:35|2026-08-02T03:17:41|726|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:01:11|2026-08-02T03:10:40|2026-08-02T03:17:41|421|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:01:17|2026-08-02T03:10:40|2026-08-02T03:13:42|182|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:05:32|2026-08-02T03:10:40|2026-08-02T03:13:19|159|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:13:21|2026-08-02T03:15:44|2026-08-02T03:17:41|117|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:13:24|2026-08-02T03:16:45|2026-08-02T03:22:03|318|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:13:44|2026-08-02T03:16:45|2026-08-02T03:17:41|56|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:18:30|2026-08-02T03:20:49|2026-08-02T03:22:03|74|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:18:31|2026-08-02T03:21:19|2026-08-02T03:22:03|44|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:18:33|2026-08-02T03:21:50|2026-08-02T03:22:03|13|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:18:34|2026-08-02T03:21:50|2026-08-02T03:22:03|13|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:22:52|2026-08-02T03:25:54|2026-08-02T03:26:23|29|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:22:53|2026-08-02T03:27:56|2026-08-02T03:30:47|171|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:22:53|2026-08-02T03:28:26|2026-08-02T04:01:12|1966|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:22:54|2026-08-02T03:28:26|2026-08-02T04:01:15|1969|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:22:54|2026-08-02T03:29:57|2026-08-02T03:30:47|50|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:27:13|2026-08-02T03:30:28|2026-08-02T03:30:47|19|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:31:37|2026-08-02T03:35:03|2026-08-02T03:39:27|264|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:31:38|2026-08-02T03:35:03|2026-08-02T03:35:05|2|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:31:43|2026-08-02T03:35:03|2026-08-02T03:35:05|2|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:35:08|2026-08-02T03:37:35|2026-08-02T03:39:27|112|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:36:05|2026-08-02T03:39:06|2026-08-02T03:39:27|21|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:40:17|2026-08-02T03:43:40|2026-08-02T03:43:51|11|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:40:18|2026-08-02T03:45:11|2026-08-02T03:48:09|178|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:40:19|2026-08-02T03:45:42|2026-08-02T03:48:09|147|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:44:42|2026-08-02T03:46:43|2026-08-02T03:48:07|84|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:48:56|2026-08-02T03:53:19|2026-08-02T03:56:50|211|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:49:00|2026-08-02T03:53:50|2026-08-02T03:56:50|180|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:49:00|2026-08-02T03:53:50|2026-08-02T03:56:50|180|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:57:40|2026-08-02T03:59:57|2026-08-02T04:13:52|835|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:57:40|2026-08-02T03:59:57|2026-08-02T05:06:45|4008|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T03:57:41|2026-08-02T04:00:27|2026-08-02T04:14:04|817|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T04:01:14|2026-08-02T04:03:30|2026-08-02T05:10:16|4006|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T04:02:07|2026-08-02T04:04:31|2026-08-02T05:10:24|3953|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T04:13:56|2026-08-02T04:16:11|2026-08-02T12:28:39|29548|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-02T04:14:55|2026-08-02T04:17:12|2026-08-02T12:30:04|29572|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T05:07:35|2026-08-02T05:09:49|2026-08-02T05:41:56|1927|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T05:10:19|2026-08-02T05:12:21|2026-08-02T12:28:39|26178|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T05:11:15|2026-08-02T05:13:22|2026-08-02T12:29:02|26140|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T05:42:44|2026-08-02T05:45:12|2026-08-02T12:31:24|24372|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38016766|yolo_cpu_probe|klone|gpu-l40s|normal|COMPLETED|2026-08-02T07:41:40|2026-08-02T07:41:41|2026-08-02T07:59:43|1082|billing=32,cpu=32,gres/gpu:l40s=1,gres/gpu=1,mem=96G,node=1|1|0:0 +38017333|yolo_io_probe|klone|gpu-l40s|normal|COMPLETED|2026-08-02T09:36:59|2026-08-02T09:37:53|2026-08-02T09:43:11|318|billing=32,cpu=32,gres/gpu:l40s=1,gres/gpu=1,mem=96G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T12:28:42|2026-08-02T12:31:02|2026-08-02T12:36:43|341|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T12:29:03|2026-08-02T12:32:34|2026-08-02T13:05:17|1963|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T12:29:33|2026-08-02T12:32:34|2026-08-02T12:57:46|1512|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T12:30:58|2026-08-02T12:33:36|2026-08-02T13:38:41|3905|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T12:32:14|2026-08-02T12:42:00|2026-08-02T13:19:15|2235|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T12:37:38|2026-08-02T12:59:03|2026-08-02T13:04:56|353|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T12:57:47|2026-08-02T13:04:11|2026-08-02T13:19:15|904|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:05:46|2026-08-02T13:08:48|2026-08-02T13:25:08|980|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:06:10|2026-08-02T13:08:48|2026-08-02T13:30:33|1305|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:20:08|2026-08-02T13:24:17|2026-08-02T13:36:36|739|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:20:22|2026-08-02T13:24:17|2026-08-02T13:38:09|832|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:25:10|2026-08-02T13:27:20|2026-08-02T13:36:11|531|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:31:30|2026-08-02T13:33:32|2026-08-02T13:37:39|247|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:37:03|2026-08-02T13:41:19|2026-08-02T13:45:00|221|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:37:34|2026-08-02T13:42:54|2026-08-02T13:44:29|95|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:38:31|2026-08-02T13:46:37|2026-08-02T13:47:20|43|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:39:00|2026-08-02T13:49:14|2026-08-02T13:58:56|582|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:39:34|2026-08-02T13:57:12|2026-08-02T14:02:23|311|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:45:22|2026-08-02T13:57:12|2026-08-02T13:58:02|50|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:45:52|2026-08-02T13:57:12|2026-08-02T13:58:25|73|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:48:10|2026-08-02T14:01:24|2026-08-02T14:06:46|322|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:58:04|2026-08-02T14:01:24|2026-08-02T14:02:23|59|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:58:28|2026-08-02T14:02:29|2026-08-02T14:08:11|342|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T13:58:58|2026-08-02T14:04:03|2026-08-02T14:08:43|280|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:03:13|2026-08-02T14:05:37|2026-08-02T14:09:15|218|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:03:16|2026-08-02T14:05:37|2026-08-02T14:07:09|92|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:07:39|2026-08-02T14:09:47|2026-08-02T14:15:28|341|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:08:02|2026-08-02T14:11:51|2026-08-02T14:15:28|217|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:09:07|2026-08-02T14:11:51|2026-08-02T14:15:58|247|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:09:35|2026-08-02T14:11:51|2026-08-02T14:18:40|409|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:10:06|2026-08-02T14:12:22|2026-08-02T14:15:29|187|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:15:30|2026-08-02T14:17:32|2026-08-02T14:18:18|46|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:16:00|2026-08-02T14:19:36|2026-08-02T14:19:43|7|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:16:21|2026-08-02T14:19:36|2026-08-02T14:19:43|7|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:16:24|2026-08-02T14:19:36|2026-08-02T14:19:46|10|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:19:10|2026-08-02T14:21:41|2026-08-02T14:24:01|140|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:19:33|2026-08-02T14:22:45|2026-08-02T14:36:46|841|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:19:45|2026-08-02T14:23:16|2026-08-02T14:24:01|45|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:20:35|2026-08-02T14:23:47|2026-08-02T14:28:07|260|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:20:36|2026-08-02T14:23:47|2026-08-02T14:34:09|622|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:24:53|2026-08-02T14:27:55|2026-08-02T14:33:38|343|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:24:57|2026-08-02T14:27:55|2026-08-02T14:35:11|436|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:29:01|2026-08-02T14:31:35|2026-08-02T14:37:52|377|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:34:36|2026-08-02T14:37:52|2026-08-02T14:41:17|205|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:35:01|2026-08-02T14:38:23|2026-08-02T14:41:17|174|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:36:04|2026-08-02T14:38:54|2026-08-02T14:45:37|403|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:37:41|2026-08-02T14:40:59|2026-08-02T14:41:30|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:38:46|2026-08-02T14:42:32|2026-08-02T14:48:42|370|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:42:07|2026-08-02T14:44:36|2026-08-02T14:45:37|61|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:42:11|2026-08-02T14:44:36|2026-08-02T14:45:59|83|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:42:22|2026-08-02T14:44:36|2026-08-02T14:46:20|104|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:45:40|2026-08-02T14:48:12|2026-08-02T14:48:42|30|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:46:28|2026-08-02T14:49:15|2026-08-02T14:54:24|309|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:46:50|2026-08-02T14:50:16|2026-08-02T14:51:18|62|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:47:09|2026-08-02T14:50:16|2026-08-02T14:56:28|372|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:49:34|2026-08-02T14:51:49|2026-08-02T14:54:10|141|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:49:35|2026-08-02T14:51:49|2026-08-02T14:57:30|341|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:51:20|2026-08-02T14:53:22|2026-08-02T14:54:10|48|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:54:27|2026-08-02T14:56:59|2026-08-02T14:59:18|139|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:55:00|2026-08-02T14:57:30|2026-08-02T14:58:48|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:55:02|2026-08-02T14:58:01|2026-08-02T14:58:27|26|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:57:22|2026-08-02T14:59:34|2026-08-02T15:03:22|228|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:58:22|2026-08-02T15:00:36|2026-08-02T15:03:22|166|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:58:30|2026-08-02T15:01:08|2026-08-02T15:02:45|97|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T14:58:52|2026-08-02T15:01:38|2026-08-02T15:03:11|93|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:00:14|2026-08-02T15:02:40|2026-08-02T15:02:45|5|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:03:42|2026-08-02T15:05:45|2026-08-02T15:11:49|364|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:03:45|2026-08-02T15:06:15|2026-08-02T15:11:27|312|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:04:08|2026-08-02T15:06:15|2026-08-02T15:11:27|312|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:04:16|2026-08-02T15:06:46|2026-08-02T15:07:47|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:04:23|2026-08-02T15:07:17|2026-08-02T15:11:27|250|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:08:39|2026-08-02T15:12:23|2026-08-02T15:15:43|200|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:12:19|2026-08-02T15:14:25|2026-08-02T15:15:43|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:12:22|2026-08-02T15:14:25|2026-08-02T15:15:43|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:12:22|2026-08-02T15:14:25|2026-08-02T15:15:43|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:12:40|2026-08-02T15:16:59|2026-08-02T15:18:31|92|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:16:32|2026-08-02T15:19:32|2026-08-02T15:21:19|107|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:16:34|2026-08-02T15:22:05|2026-08-02T15:23:40|95|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:16:35|2026-08-02T15:22:36|2026-08-02T15:23:40|64|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:16:35|2026-08-02T15:22:36|2026-08-02T15:23:40|64|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:19:21|2026-08-02T15:22:36|2026-08-02T15:23:40|64|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:22:08|2026-08-02T15:24:38|2026-08-02T15:25:34|56|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:24:29|2026-08-02T15:26:40|2026-08-02T15:27:57|77|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:24:31|2026-08-02T15:29:45|2026-08-02T15:36:55|430|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:24:32|2026-08-02T15:29:45|2026-08-02T15:36:28|403|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:24:32|2026-08-02T15:30:15|2026-08-02T15:38:24|489|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:26:29|2026-08-02T15:30:46|2026-08-02T15:36:55|369|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:28:50|2026-08-02T15:32:18|2026-08-02T15:36:28|250|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:37:18|2026-08-02T15:39:26|2026-08-02T15:40:47|81|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:37:26|2026-08-02T15:39:57|2026-08-02T15:41:28|91|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:37:47|2026-08-02T15:39:57|2026-08-02T15:45:27|330|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:37:47|2026-08-02T15:39:57|2026-08-02T15:40:47|50|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:39:20|2026-08-02T15:41:28|2026-08-02T15:45:04|216|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:40:49|2026-08-02T15:43:30|2026-08-02T15:45:04|94|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:41:39|2026-08-02T15:44:32|2026-08-02T15:46:19|107|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:42:22|2026-08-02T15:45:02|2026-08-02T15:45:04|2|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:45:07|2026-08-02T15:48:05|2026-08-02T15:53:38|333|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:45:30|2026-08-02T15:48:05|2026-08-02T15:54:13|368|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:45:55|2026-08-02T15:48:05|2026-08-02T15:57:58|593|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:46:02|2026-08-02T15:50:08|2026-08-02T15:52:41|153|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:47:12|2026-08-02T15:50:08|2026-08-02T15:53:38|210|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:53:42|2026-08-02T15:55:44|2026-08-02T15:57:58|134|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:54:29|2026-08-02T15:56:45|2026-08-02T15:58:17|92|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:54:32|2026-08-02T15:56:45|2026-08-02T15:57:58|73|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:55:05|2026-08-02T15:57:16|2026-08-02T15:59:18|122|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:58:49|2026-08-02T16:01:20|2026-08-02T16:06:34|314|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:58:49|2026-08-02T16:01:20|2026-08-02T16:07:05|345|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:58:50|2026-08-02T16:01:20|2026-08-02T16:06:34|314|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T15:59:14|2026-08-02T16:01:20|2026-08-02T16:06:34|314|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:00:09|2026-08-02T16:02:21|2026-08-02T16:06:34|253|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:06:37|2026-08-02T16:08:58|2026-08-02T16:10:49|111|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:07:24|2026-08-02T16:09:28|2026-08-02T16:11:00|92|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:07:25|2026-08-02T16:09:28|2026-08-02T16:11:24|116|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:07:27|2026-08-02T16:09:28|2026-08-02T16:10:49|81|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:07:57|2026-08-02T16:09:59|2026-08-02T16:10:49|50|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:10:51|2026-08-02T16:14:35|2026-08-02T16:15:05|30|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:11:45|2026-08-02T16:14:35|2026-08-02T16:15:05|30|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:11:49|2026-08-02T16:16:06|2026-08-02T16:18:34|148|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:12:15|2026-08-02T16:16:06|2026-08-02T16:19:41|215|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:12:15|2026-08-02T16:16:06|2026-08-02T16:20:11|245|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:15:56|2026-08-02T16:18:09|2026-08-02T16:18:34|25|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:15:57|2026-08-02T16:18:09|2026-08-02T16:18:34|25|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:19:24|2026-08-02T16:21:43|2026-08-02T16:24:16|153|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:19:26|2026-08-02T16:21:43|2026-08-02T16:24:01|138|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:19:27|2026-08-02T16:22:14|2026-08-02T16:23:37|83|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:19:44|2026-08-02T16:23:15|2026-08-02T16:24:46|91|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:21:09|2026-08-02T16:24:16|2026-08-02T16:27:55|219|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:24:36|2026-08-02T16:26:50|2026-08-02T16:32:29|339|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:24:53|2026-08-02T16:27:20|2026-08-02T16:27:55|35|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:25:08|2026-08-02T16:27:20|2026-08-02T16:27:55|35|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:25:48|2026-08-02T16:27:51|2026-08-02T16:32:26|275|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:27:58|2026-08-02T16:30:24|2026-08-02T16:32:11|107|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:28:45|2026-08-02T16:31:25|2026-08-02T16:33:27|122|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:28:47|2026-08-02T16:31:25|2026-08-02T16:32:57|92|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:32:30|2026-08-02T16:35:30|2026-08-02T16:41:08|338|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:33:01|2026-08-02T16:35:30|2026-08-02T16:36:28|58|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:33:01|2026-08-02T16:35:30|2026-08-02T16:42:09|399|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:33:23|2026-08-02T16:36:01|2026-08-02T16:36:28|27|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:34:27|2026-08-02T16:37:33|2026-08-02T16:40:46|193|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:37:18|2026-08-02T16:39:36|2026-08-02T16:40:46|70|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:37:18|2026-08-02T16:39:36|2026-08-02T16:41:08|92|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:40:49|2026-08-02T16:43:11|2026-08-02T16:45:03|112|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:41:37|2026-08-02T16:43:42|2026-08-02T16:49:20|338|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:41:57|2026-08-02T16:44:13|2026-08-02T16:45:45|92|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:42:07|2026-08-02T16:46:16|2026-08-02T16:52:24|368|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:43:08|2026-08-02T16:46:16|2026-08-02T16:52:47|391|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:45:59|2026-08-02T16:48:49|2026-08-02T16:49:20|31|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:46:38|2026-08-02T16:50:52|2026-08-02T16:52:26|94|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:50:11|2026-08-02T16:52:24|2026-08-02T16:53:55|91|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:50:11|2026-08-02T16:53:25|2026-08-02T16:53:40|15|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:53:16|2026-08-02T16:55:27|2026-08-02T16:57:25|118|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:53:21|2026-08-02T16:55:27|2026-08-02T17:02:32|425|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:53:38|2026-08-02T16:55:58|2026-08-02T16:57:29|91|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:54:31|2026-08-02T16:58:30|2026-08-02T17:08:11|581|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:54:48|2026-08-02T16:58:30|2026-08-02T17:02:12|222|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:58:17|2026-08-02T17:01:34|2026-08-02T17:02:35|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T16:58:22|2026-08-02T17:02:04|2026-08-02T17:02:12|8|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:02:16|2026-08-02T17:04:37|2026-08-02T17:06:39|122|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:03:05|2026-08-02T17:06:09|2026-08-02T17:10:51|282|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:03:28|2026-08-02T17:06:09|2026-08-02T17:06:30|21|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:03:28|2026-08-02T17:06:09|2026-08-02T17:06:55|46|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:06:32|2026-08-02T17:09:12|2026-08-02T17:10:51|99|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:07:32|2026-08-02T17:09:43|2026-08-02T17:11:14|91|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:07:53|2026-08-02T17:10:13|2026-08-02T17:16:22|369|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:09:00|2026-08-02T17:12:46|2026-08-02T17:18:58|372|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:11:41|2026-08-02T17:13:48|2026-08-02T17:26:32|764|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:11:44|2026-08-02T17:14:19|2026-08-02T17:15:08|49|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:12:04|2026-08-02T17:14:19|2026-08-02T17:15:20|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:16:02|2026-08-02T17:18:28|2026-08-02T17:21:18|170|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:16:14|2026-08-02T17:20:02|2026-08-02T17:21:18|76|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:16:25|2026-08-02T17:20:02|2026-08-02T17:21:18|76|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:19:54|2026-08-02T17:22:40|2026-08-02T17:23:49|69|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:22:22|2026-08-02T17:24:47|2026-08-02T17:25:41|54|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:22:24|2026-08-02T17:25:19|2026-08-02T17:25:41|22|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:22:25|2026-08-02T17:25:19|2026-08-02T17:25:41|22|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:24:43|2026-08-02T17:26:55|2026-08-02T17:28:31|96|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:26:34|2026-08-02T17:29:37|2026-08-02T17:37:02|445|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:26:37|2026-08-02T17:29:37|2026-08-02T17:41:55|738|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:26:42|2026-08-02T17:29:37|2026-08-02T17:33:42|245|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:27:24|2026-08-02T17:29:37|2026-08-02T17:34:03|266|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:29:27|2026-08-02T17:31:47|2026-08-02T17:32:51|64|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:33:49|2026-08-02T17:38:08|2026-08-02T17:45:47|459|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:34:37|2026-08-02T17:38:08|2026-08-02T17:38:40|32|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:34:57|2026-08-02T17:38:40|2026-08-02T17:41:25|165|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:37:59|2026-08-02T17:40:45|2026-08-02T17:45:54|309|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:39:35|2026-08-02T17:42:49|2026-08-02T17:43:19|30|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:42:16|2026-08-02T17:44:53|2026-08-02T17:45:47|54|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:42:57|2026-08-02T17:45:55|2026-08-02T17:47:55|120|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:43:24|2026-08-02T17:45:55|2026-08-02T17:47:16|81|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:46:42|2026-08-02T17:49:00|2026-08-02T17:50:07|67|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:46:43|2026-08-02T17:49:00|2026-08-02T17:50:07|67|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:47:13|2026-08-02T17:50:02|2026-08-02T17:50:33|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:47:19|2026-08-02T17:51:04|2026-08-02T17:55:53|289|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:48:46|2026-08-02T17:52:36|2026-08-02T17:56:25|229|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:50:57|2026-08-02T17:53:07|2026-08-02T17:56:12|185|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:50:58|2026-08-02T17:53:07|2026-08-02T17:56:25|198|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:51:27|2026-08-02T17:53:38|2026-08-02T17:55:53|135|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:56:53|2026-08-02T17:59:18|2026-08-02T18:00:20|62|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:56:56|2026-08-02T17:59:18|2026-08-02T18:01:54|156|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:57:16|2026-08-02T17:59:18|2026-08-02T18:01:23|125|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:57:35|2026-08-02T17:59:49|2026-08-02T18:00:13|24|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T17:57:37|2026-08-02T18:01:23|2026-08-02T18:04:42|199|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:01:07|2026-08-02T18:03:33|2026-08-02T18:05:41|128|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:01:11|2026-08-02T18:03:33|2026-08-02T18:05:09|96|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:01:27|2026-08-02T18:03:33|2026-08-02T18:03:36|3|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:02:46|2026-08-02T18:05:41|2026-08-02T18:09:03|202|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:04:26|2026-08-02T18:06:46|2026-08-02T18:09:00|134|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:05:12|2026-08-02T18:07:49|2026-08-02T18:12:14|265|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:05:36|2026-08-02T18:08:52|2026-08-02T18:09:03|11|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:06:37|2026-08-02T18:09:24|2026-08-02T18:25:42|978|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:09:56|2026-08-02T18:13:17|2026-08-02T18:17:20|243|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:09:56|2026-08-02T18:14:20|2026-08-02T18:17:20|180|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:09:58|2026-08-02T18:15:22|2026-08-02T18:18:28|186|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:13:04|2026-08-02T18:15:53|2026-08-02T18:17:26|93|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:18:13|2026-08-02T18:20:34|2026-08-02T18:25:42|308|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:18:13|2026-08-02T18:21:05|2026-08-02T18:25:42|277|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:18:34|2026-08-02T18:21:05|2026-08-02T18:25:42|277|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:19:18|2026-08-02T18:22:07|2026-08-02T18:25:42|215|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:26:55|2026-08-02T18:29:58|2026-08-02T18:33:44|226|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:26:55|2026-08-02T18:31:01|2026-08-02T18:34:05|184|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:26:55|2026-08-02T18:31:32|2026-08-02T18:34:09|157|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:26:56|2026-08-02T18:32:04|2026-08-02T18:34:09|125|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:26:59|2026-08-02T18:32:04|2026-08-02T18:34:09|125|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:34:35|2026-08-02T18:36:47|2026-08-02T18:40:11|204|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:35:00|2026-08-02T18:37:50|2026-08-02T18:40:14|144|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:35:00|2026-08-02T18:38:23|2026-08-02T18:40:14|111|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:35:00|2026-08-02T18:39:26|2026-08-02T18:40:14|48|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:35:07|2026-08-02T18:39:58|2026-08-02T18:40:14|16|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:41:05|2026-08-02T18:44:14|2026-08-02T18:44:34|20|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:41:07|2026-08-02T18:45:17|2026-08-02T18:46:32|75|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:41:08|2026-08-02T18:45:17|2026-08-02T18:48:52|215|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:41:08|2026-08-02T18:45:48|2026-08-02T18:49:08|200|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:41:09|2026-08-02T18:45:48|2026-08-02T18:48:48|180|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:45:24|2026-08-02T18:47:52|2026-08-02T18:48:48|56|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:46:35|2026-08-02T18:49:56|2026-08-02T18:53:25|209|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:49:46|2026-08-02T18:52:00|2026-08-02T18:53:25|85|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:49:48|2026-08-02T18:52:31|2026-08-02T18:53:25|54|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:49:54|2026-08-02T18:52:31|2026-08-02T18:53:25|54|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:50:01|2026-08-02T18:52:31|2026-08-02T18:54:08|97|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:53:28|2026-08-02T18:56:08|2026-08-02T18:57:47|99|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:54:17|2026-08-02T18:56:39|2026-08-02T18:57:50|71|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:54:17|2026-08-02T18:56:39|2026-08-02T19:02:08|329|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:54:18|2026-08-02T18:57:10|2026-08-02T18:57:47|37|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:55:00|2026-08-02T18:58:44|2026-08-02T19:10:53|729|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:57:48|2026-08-02T19:00:17|2026-08-02T19:11:42|685|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:58:36|2026-08-02T19:00:47|2026-08-02T19:10:53|606|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T18:58:45|2026-08-02T19:00:47|2026-08-02T19:02:08|81|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:03:07|2026-08-02T19:05:26|2026-08-02T19:10:02|276|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:03:12|2026-08-02T19:05:26|2026-08-02T19:10:53|327|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:10:04|2026-08-02T19:12:06|2026-08-02T19:15:15|189|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:10:57|2026-08-02T19:13:07|2026-08-02T19:15:19|132|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:11:44|2026-08-02T19:14:08|2026-08-02T19:15:44|96|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:11:47|2026-08-02T19:14:08|2026-08-02T19:15:15|67|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:12:31|2026-08-02T19:14:39|2026-08-02T19:15:19|40|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:15:23|2026-08-02T19:17:42|2026-08-02T19:19:38|116|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:16:04|2026-08-02T19:18:13|2026-08-02T19:19:38|85|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:16:06|2026-08-02T19:18:13|2026-08-02T19:18:47|34|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:16:12|2026-08-02T19:18:13|2026-08-02T19:19:38|85|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:16:42|2026-08-02T19:18:44|2026-08-02T19:19:38|54|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:18:50|2026-08-02T19:21:16|2026-08-02T19:21:57|41|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:20:27|2026-08-02T19:23:18|2026-08-02T19:23:42|24|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:20:28|2026-08-02T19:23:49|2026-08-02T19:27:59|250|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:20:32|2026-08-02T19:23:49|2026-08-02T19:28:26|277|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:20:33|2026-08-02T19:24:20|2026-08-02T19:27:59|219|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:22:50|2026-08-02T19:25:21|2026-08-02T19:27:59|158|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:24:35|2026-08-02T19:27:23|2026-08-02T19:27:59|36|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:28:02|2026-08-02T19:30:58|2026-08-02T19:32:05|67|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:28:48|2026-08-02T19:30:58|2026-08-02T19:32:05|67|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:28:50|2026-08-02T19:31:28|2026-08-02T19:32:05|37|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:28:53|2026-08-02T19:33:00|2026-08-02T19:41:24|504|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:29:17|2026-08-02T19:33:00|2026-08-02T19:36:34|214|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:32:54|2026-08-02T19:35:03|2026-08-02T19:36:34|91|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:32:54|2026-08-02T19:35:03|2026-08-02T19:41:27|384|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:32:55|2026-08-02T19:35:03|2026-08-02T19:37:26|143|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:36:38|2026-08-02T19:39:39|2026-08-02T19:41:24|105|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:37:24|2026-08-02T19:39:39|2026-08-02T19:41:24|105|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:38:16|2026-08-02T19:40:41|2026-08-02T19:41:03|22|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:41:53|2026-08-02T19:44:15|2026-08-02T19:45:14|59|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:42:13|2026-08-02T19:44:15|2026-08-02T19:44:34|19|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:42:17|2026-08-02T19:44:45|2026-08-02T19:45:46|61|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:42:17|2026-08-02T19:46:47|2026-08-02T19:50:07|200|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:42:25|2026-08-02T19:46:47|2026-08-02T19:50:29|222|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:45:28|2026-08-02T19:47:49|2026-08-02T19:50:10|141|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:46:06|2026-08-02T19:48:19|2026-08-02T19:50:10|111|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:46:41|2026-08-02T19:48:50|2026-08-02T19:50:07|77|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:50:57|2026-08-02T19:54:26|2026-08-02T19:56:00|94|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:50:58|2026-08-02T19:54:26|2026-08-02T19:54:28|2|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:51:06|2026-08-02T19:54:26|2026-08-02T19:56:21|115|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:51:16|2026-08-02T19:54:26|2026-08-02T19:54:28|2|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:51:20|2026-08-02T19:54:57|2026-08-02T19:56:47|110|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:55:23|2026-08-02T19:58:00|2026-08-02T20:00:50|170|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:55:25|2026-08-02T19:58:00|2026-08-02T19:58:49|49|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:56:50|2026-08-02T19:59:32|2026-08-02T20:01:10|98|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:57:12|2026-08-02T19:59:32|2026-08-02T20:01:10|98|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:57:37|2026-08-02T20:00:02|2026-08-02T20:01:10|68|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T19:59:42|2026-08-02T20:02:35|2026-08-02T20:03:08|33|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:01:41|2026-08-02T20:04:07|2026-08-02T20:05:28|81|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:02:01|2026-08-02T20:04:37|2026-08-02T20:09:47|310|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:02:03|2026-08-02T20:04:37|2026-08-02T20:09:47|310|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:02:08|2026-08-02T20:04:37|2026-08-02T20:05:28|51|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:03:58|2026-08-02T20:06:40|2026-08-02T20:07:54|74|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:05:31|2026-08-02T20:07:41|2026-08-02T20:09:49|128|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:06:25|2026-08-02T20:08:42|2026-08-02T20:09:47|65|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:08:46|2026-08-02T20:11:15|2026-08-02T20:11:52|37|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:10:39|2026-08-02T20:13:17|2026-08-02T20:16:11|174|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:10:39|2026-08-02T20:13:17|2026-08-02T20:13:57|40|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:10:40|2026-08-02T20:13:17|2026-08-02T20:13:57|40|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:10:45|2026-08-02T20:13:17|2026-08-02T20:14:13|56|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:12:43|2026-08-02T20:15:20|2026-08-02T20:16:11|51|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:14:00|2026-08-02T20:17:52|2026-08-02T20:24:51|419|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:14:52|2026-08-02T20:17:52|2026-08-02T20:20:33|161|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:15:03|2026-08-02T20:17:52|2026-08-02T20:20:56|184|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:17:01|2026-08-02T20:19:24|2026-08-02T20:20:27|63|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:17:01|2026-08-02T20:20:25|2026-08-02T20:20:33|8|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:21:19|2026-08-02T20:23:29|2026-08-02T20:24:51|82|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:21:28|2026-08-02T20:23:29|2026-08-02T20:24:51|82|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:21:28|2026-08-02T20:23:29|2026-08-02T20:26:08|159|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:21:48|2026-08-02T20:24:00|2026-08-02T20:24:51|51|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:25:40|2026-08-02T20:28:05|2026-08-02T20:29:12|67|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:25:41|2026-08-02T20:28:05|2026-08-02T20:33:33|328|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:25:42|2026-08-02T20:30:07|2026-08-02T20:32:06|119|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:25:43|2026-08-02T20:30:07|2026-08-02T20:32:03|116|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:27:00|2026-08-02T20:30:38|2026-08-02T20:32:06|88|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:30:05|2026-08-02T20:33:11|2026-08-02T20:37:52|281|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:32:54|2026-08-02T20:35:13|2026-08-02T20:37:52|159|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:32:56|2026-08-02T20:35:44|2026-08-02T20:38:47|183|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:32:57|2026-08-02T20:35:44|2026-08-02T20:37:52|128|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:34:26|2026-08-02T20:36:45|2026-08-02T20:37:52|67|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:38:42|2026-08-02T20:40:51|2026-08-02T20:42:12|81|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:38:43|2026-08-02T20:40:51|2026-08-02T20:42:15|84|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:38:44|2026-08-02T20:40:51|2026-08-02T20:42:48|117|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:38:49|2026-08-02T20:40:51|2026-08-02T20:42:12|81|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:39:39|2026-08-02T20:42:53|2026-08-02T20:46:35|222|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:42:14|2026-08-02T20:44:55|2026-08-02T20:46:35|100|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:42:15|2026-08-02T20:44:55|2026-08-02T20:47:07|132|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:43:05|2026-08-02T20:45:27|2026-08-02T20:46:35|68|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:43:39|2026-08-02T20:45:58|2026-08-02T20:46:35|37|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:46:37|2026-08-02T20:49:01|2026-08-02T20:55:19|378|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:47:24|2026-08-02T20:49:32|2026-08-02T20:50:55|83|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:47:25|2026-08-02T20:50:02|2026-08-02T20:50:55|53|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:47:27|2026-08-02T20:50:33|2026-08-02T20:50:55|22|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:47:57|2026-08-02T20:51:04|2026-08-02T20:53:37|153|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:51:45|2026-08-02T20:54:08|2026-08-02T20:55:19|71|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:51:50|2026-08-02T20:57:11|2026-08-02T20:59:48|157|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:51:51|2026-08-02T20:57:11|2026-08-02T20:59:37|146|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:54:26|2026-08-02T20:57:11|2026-08-02T20:59:37|146|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:56:10|2026-08-02T20:58:43|2026-08-02T20:59:41|58|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:56:13|2026-08-02T20:58:43|2026-08-02T21:04:36|353|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:59:43|2026-08-02T21:01:46|2026-08-02T21:02:00|14|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T20:59:50|2026-08-02T21:02:47|2026-08-02T21:04:36|109|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:00:28|2026-08-02T21:03:18|2026-08-02T21:03:59|41|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:00:31|2026-08-02T21:03:18|2026-08-02T21:03:59|41|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:02:49|2026-08-02T21:05:20|2026-08-02T21:08:20|180|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:04:48|2026-08-02T21:06:52|2026-08-02T21:08:20|88|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:04:55|2026-08-02T21:08:55|2026-08-02T21:09:03|8|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:05:26|2026-08-02T21:09:25|2026-08-02T21:13:18|233|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:05:27|2026-08-02T21:09:56|2026-08-02T21:12:42|166|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:09:13|2026-08-02T21:11:28|2026-08-02T21:12:42|74|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:09:15|2026-08-02T21:11:28|2026-08-02T21:17:03|335|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:10:02|2026-08-02T21:12:29|2026-08-02T21:12:42|13|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:13:32|2026-08-02T21:16:03|2026-08-02T21:17:03|60|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:13:33|2026-08-02T21:16:34|2026-08-02T21:17:10|36|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:13:35|2026-08-02T21:18:05|2026-08-02T21:25:43|458|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:14:09|2026-08-02T21:18:05|2026-08-02T21:26:06|481|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:17:05|2026-08-02T21:20:08|2026-08-02T21:21:23|75|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:17:57|2026-08-02T21:20:38|2026-08-02T21:21:23|45|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:18:04|2026-08-02T21:22:41|2026-08-02T21:25:43|182|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:22:13|2026-08-02T21:24:44|2026-08-02T21:25:43|59|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:22:15|2026-08-02T21:24:44|2026-08-02T21:25:43|59|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:26:33|2026-08-02T21:28:49|2026-08-02T21:30:06|77|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:26:34|2026-08-02T21:29:50|2026-08-02T21:30:06|16|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:26:36|2026-08-02T21:29:50|2026-08-02T21:30:06|16|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:26:45|2026-08-02T21:29:50|2026-08-02T21:30:06|16|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:26:58|2026-08-02T21:29:50|2026-08-02T21:30:23|33|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:30:09|2026-08-02T21:32:24|2026-08-02T21:33:09|45|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:30:56|2026-08-02T21:33:25|2026-08-02T21:34:26|61|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:30:56|2026-08-02T21:33:25|2026-08-02T21:34:26|61|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:31:02|2026-08-02T21:33:25|2026-08-02T21:34:56|91|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:31:14|2026-08-02T21:33:25|2026-08-02T21:34:26|61|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:33:59|2026-08-02T21:36:30|2026-08-02T21:38:52|142|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:34:29|2026-08-02T21:37:00|2026-08-02T21:38:42|102|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:35:18|2026-08-02T21:37:31|2026-08-02T21:38:42|71|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:35:20|2026-08-02T21:38:02|2026-08-02T21:38:52|50|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:35:47|2026-08-02T21:38:33|2026-08-02T21:38:52|19|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:39:35|2026-08-02T21:43:40|2026-08-02T21:46:56|196|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:39:35|2026-08-02T21:44:11|2026-08-02T21:51:36|445|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:39:41|2026-08-02T21:44:11|2026-08-02T21:51:36|445|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:39:43|2026-08-02T21:44:11|2026-08-02T21:51:36|445|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:39:43|2026-08-02T21:44:41|2026-08-02T21:51:36|415|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:46:58|2026-08-02T21:49:17|2026-08-02T21:51:36|139|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:52:26|2026-08-02T21:54:55|2026-08-02T22:17:26|1351|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:52:30|2026-08-02T21:54:55|2026-08-02T21:55:51|56|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:52:30|2026-08-02T21:54:55|2026-08-02T21:55:51|56|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:52:30|2026-08-02T21:55:25|2026-08-02T21:55:58|33|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:52:30|2026-08-02T21:55:25|2026-08-02T22:04:55|570|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:55:54|2026-08-02T21:57:59|2026-08-02T22:04:32|393|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:56:00|2026-08-02T22:00:02|2026-08-02T22:04:55|293|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T21:56:43|2026-08-02T22:01:34|2026-08-02T22:17:31|957|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:05:23|2026-08-02T22:07:43|2026-08-02T22:16:56|553|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:05:50|2026-08-02T22:08:14|2026-08-02T22:17:33|559|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:05:51|2026-08-02T22:08:14|2026-08-02T22:20:43|749|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:16:59|2026-08-02T22:19:27|2026-08-02T22:20:43|76|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:17:29|2026-08-02T22:19:57|2026-08-02T22:20:43|46|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:18:24|2026-08-02T22:20:28|2026-08-02T22:20:43|15|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:18:29|2026-08-02T22:22:00|2026-08-02T22:28:09|369|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:21:36|2026-08-02T22:24:03|2026-08-02T22:26:09|126|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:21:36|2026-08-02T22:24:03|2026-08-02T22:27:38|215|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:21:36|2026-08-02T22:24:03|2026-08-02T22:30:38|395|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:21:37|2026-08-02T22:24:33|2026-08-02T22:27:07|154|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:27:02|2026-08-02T22:29:10|2026-08-02T22:30:38|88|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:27:58|2026-08-02T22:31:44|2026-08-02T22:34:59|195|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:28:31|2026-08-02T22:31:44|2026-08-02T22:35:26|222|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:28:59|2026-08-02T22:32:14|2026-08-02T22:35:56|222|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:31:27|2026-08-02T22:33:47|2026-08-02T22:34:59|72|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:31:30|2026-08-02T22:33:47|2026-08-02T22:34:59|72|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:35:02|2026-08-02T22:37:22|2026-08-02T22:39:15|113|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:35:51|2026-08-02T22:38:24|2026-08-02T22:39:18|54|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:35:57|2026-08-02T22:38:24|2026-08-02T22:41:38|194|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:36:17|2026-08-02T22:38:24|2026-08-02T22:43:35|311|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:36:48|2026-08-02T22:38:54|2026-08-02T22:39:15|21|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:40:06|2026-08-02T22:42:29|2026-08-02T22:43:56|87|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:40:09|2026-08-02T22:43:00|2026-08-02T22:44:56|116|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:40:16|2026-08-02T22:43:00|2026-08-02T22:45:26|146|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:42:27|2026-08-02T22:44:31|2026-08-02T22:50:07|336|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:44:23|2026-08-02T22:46:33|2026-08-02T22:47:12|39|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:44:45|2026-08-02T22:47:35|2026-08-02T22:48:05|30|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:45:50|2026-08-02T22:48:05|2026-08-02T22:50:53|168|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:46:15|2026-08-02T22:48:36|2026-08-02T22:50:08|92|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:48:03|2026-08-02T22:50:38|2026-08-02T22:52:14|96|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:48:56|2026-08-02T22:51:08|2026-08-02T22:52:14|66|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:50:10|2026-08-02T22:53:11|2026-08-02T22:54:23|72|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:50:58|2026-08-02T22:53:11|2026-08-02T22:56:32|201|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:51:43|2026-08-02T22:54:12|2026-08-02T22:54:45|33|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:53:05|2026-08-02T22:55:43|2026-08-02T22:56:32|49|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:53:07|2026-08-02T22:55:43|2026-08-02T22:56:56|73|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:54:25|2026-08-02T22:57:46|2026-08-02T23:00:56|190|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:54:47|2026-08-02T22:57:46|2026-08-02T23:00:56|190|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:56:35|2026-08-02T22:58:47|2026-08-02T23:02:26|219|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:57:25|2026-08-02T22:59:48|2026-08-02T23:02:57|189|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T22:57:48|2026-08-02T23:00:19|2026-08-02T23:02:09|110|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:00:59|2026-08-02T23:03:22|2026-08-02T23:05:38|136|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:01:46|2026-08-02T23:03:53|2026-08-02T23:05:15|82|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:02:59|2026-08-02T23:05:24|2026-08-02T23:06:52|88|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:03:18|2026-08-02T23:06:56|2026-08-02T23:09:33|157|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:03:48|2026-08-02T23:07:27|2026-08-02T23:10:06|159|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:06:06|2026-08-02T23:08:28|2026-08-02T23:09:33|65|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:06:35|2026-08-02T23:08:59|2026-08-02T23:09:33|34|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:07:46|2026-08-02T23:11:01|2026-08-02T23:27:46|1005|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:09:36|2026-08-02T23:12:02|2026-08-02T23:15:29|207|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:10:23|2026-08-02T23:12:33|2026-08-02T23:15:57|204|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:10:27|2026-08-02T23:12:33|2026-08-02T23:15:29|176|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:10:59|2026-08-02T23:13:03|2026-08-02T23:28:10|907|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:16:18|2026-08-02T23:18:39|2026-08-02T23:27:46|547|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:16:20|2026-08-02T23:18:39|2026-08-02T23:27:46|547|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:16:47|2026-08-02T23:19:10|2026-08-02T23:27:46|516|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:27:49|2026-08-02T23:29:51|2026-08-02T23:32:05|134|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:28:36|2026-08-02T23:30:52|2026-08-02T23:32:42|110|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:28:41|2026-08-02T23:30:52|2026-08-03T01:06:56|5764|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:28:46|2026-08-02T23:30:52|2026-08-03T01:06:56|5764|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:29:01|2026-08-02T23:31:22|2026-08-03T01:06:56|5734|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:32:45|2026-08-02T23:34:56|2026-08-03T01:07:16|5540|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-02T23:32:58|2026-08-02T23:35:26|2026-08-03T01:06:56|5490|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T01:07:02|2026-08-03T01:09:06|2026-08-03T01:21:05|719|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T01:07:53|2026-08-03T01:10:11|2026-08-03T01:25:27|916|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T01:07:53|2026-08-03T01:10:11|2026-08-03T01:11:21|70|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T01:07:56|2026-08-03T01:10:11|2026-08-03T02:25:00|4489|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T01:08:09|2026-08-03T01:10:45|2026-08-03T01:19:17|512|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T01:12:15|2026-08-03T01:14:40|2026-08-03T02:16:27|3707|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T01:20:11|2026-08-03T01:22:27|2026-08-03T01:23:07|40|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T01:21:59|2026-08-03T01:24:23|2026-08-03T01:25:06|43|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T01:23:59|2026-08-03T01:26:05|2026-08-03T06:07:34|16889|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T01:25:59|2026-08-03T01:28:17|2026-08-03T06:01:48|16411|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T01:26:22|2026-08-03T01:28:50|2026-08-03T08:39:06|25816|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T02:17:36|2026-08-03T02:19:48|2026-08-03T06:01:48|13320|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T02:25:51|2026-08-03T02:28:03|2026-08-03T02:31:05|182|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T02:32:03|2026-08-03T02:34:11|2026-08-03T06:01:48|12457|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T06:01:51|2026-08-03T06:04:06|2026-08-03T06:07:06|180|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T06:02:36|2026-08-03T06:04:37|2026-08-03T06:07:06|149|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T06:02:37|2026-08-03T06:05:07|2026-08-03T06:07:34|147|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T06:07:57|2026-08-03T06:10:11|2026-08-03T08:17:39|7648|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T06:08:01|2026-08-03T06:10:11|2026-08-03T09:40:32|12621|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T06:08:24|2026-08-03T06:10:41|2026-08-03T09:43:44|12783|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T06:08:24|2026-08-03T06:10:41|2026-08-03T09:33:24|12163|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38063462|yolo_curb_ramp_train|klone|gpu-l40s|normal|CANCELLED by 197096|2026-08-03T06:41:42|None|2026-08-03T06:43:34|0||1|0:0 +38063486|yolo_curb_ramp_train|klone|gpu-l40s|normal|CANCELLED by 197096|2026-08-03T06:46:51|None|2026-08-03T06:49:11|0||1|0:0 +38063498|yolo_curb_ramp_train|klone|gpu-l40s|normal|TIMEOUT|2026-08-03T06:49:14|2026-08-03T06:49:15|2026-08-10T06:49:30|604815|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T08:18:29|2026-08-03T08:20:59|2026-08-03T09:29:43|4124|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T08:39:57|2026-08-03T08:42:13|2026-08-03T09:28:56|2803|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T09:29:44|2026-08-03T09:33:51|2026-08-03T10:56:47|4976|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T09:29:47|2026-08-03T09:33:51|2026-08-03T10:56:13|4942|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T09:34:22|2026-08-03T09:48:13|2026-08-03T10:19:18|1865|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T09:41:23|2026-08-03T09:48:13|2026-08-03T10:05:03|1010|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T09:44:37|2026-08-03T09:48:13|2026-08-03T10:05:13|1020|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:05:05|2026-08-03T10:08:12|2026-08-03T10:13:09|297|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:05:14|2026-08-03T10:10:46|2026-08-03T10:18:58|492|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:13:12|2026-08-03T10:15:54|2026-08-03T10:17:43|109|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:18:33|2026-08-03T10:21:03|2026-08-03T10:35:28|865|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:19:56|2026-08-03T10:22:04|2026-08-03T10:30:02|478|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:20:11|2026-08-03T10:22:34|2026-08-03T10:31:45|551|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:30:55|2026-08-03T10:33:12|2026-08-03T10:55:55|1363|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:32:51|2026-08-03T10:36:28|2026-08-03T10:36:54|26|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:36:22|2026-08-03T10:42:11|2026-08-03T10:42:47|36|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:37:44|2026-08-03T10:43:13|2026-08-03T11:46:46|3813|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:43:43|2026-08-03T10:47:26|2026-08-03T12:17:08|5382|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:56:15|2026-08-03T10:58:24|2026-08-03T11:23:58|1534|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:56:46|2026-08-03T10:58:55|2026-08-03T11:03:34|279|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T10:57:44|2026-08-03T11:02:03|2026-08-03T11:32:06|1803|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T11:04:28|2026-08-03T11:06:44|2026-08-03T11:09:05|141|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T11:09:08|2026-08-03T11:11:27|2026-08-03T11:40:16|1729|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T11:24:47|2026-08-03T11:26:48|2026-08-03T11:32:46|358|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T11:32:57|2026-08-03T11:35:35|2026-08-03T11:49:46|851|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T11:33:34|2026-08-03T11:36:37|2026-08-03T11:49:24|767|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T11:40:19|2026-08-03T11:42:50|2026-08-03T11:46:14|204|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T11:47:05|2026-08-03T11:50:34|2026-08-03T12:48:02|3448|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T11:47:35|2026-08-03T11:50:34|2026-08-03T12:48:50|3496|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T11:50:13|2026-08-03T11:53:41|2026-08-03T12:22:10|1709|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T11:50:36|2026-08-03T11:53:41|2026-08-03T12:22:10|1709|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:18:35|2026-08-03T12:20:55|2026-08-03T12:46:43|1548|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:22:12|2026-08-03T12:25:02|2026-08-03T12:35:36|634|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:23:04|2026-08-03T12:25:33|2026-08-03T12:36:07|634|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:36:28|2026-08-03T12:38:29|2026-08-03T12:38:31|2|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:36:59|2026-08-03T12:39:31|2026-08-03T12:43:49|258|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:39:21|2026-08-03T12:45:15|2026-08-03T12:46:38|83|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:44:40|2026-08-03T12:47:49|2026-08-03T12:54:08|379|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:46:46|2026-08-03T12:48:51|2026-08-03T12:53:35|284|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:47:30|2026-08-03T12:49:52|2026-08-03T12:50:41|49|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:49:04|2026-08-03T12:51:56|2026-08-03T13:01:20|564|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:49:41|2026-08-03T12:52:27|2026-08-03T13:04:48|741|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:51:31|2026-08-03T12:55:33|2026-08-03T13:01:38|365|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:54:26|2026-08-03T12:58:38|2026-08-03T13:01:06|148|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T12:55:04|2026-08-03T12:59:08|2026-08-03T13:01:50|162|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T13:01:57|2026-08-03T13:05:50|2026-08-03T14:33:41|5271|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T13:02:11|2026-08-03T13:05:50|2026-08-03T15:40:59|9309|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T13:02:31|2026-08-03T13:05:50|2026-08-03T13:07:20|90|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T13:02:41|2026-08-03T13:06:20|2026-08-03T13:15:27|547|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T13:05:41|2026-08-03T13:08:23|2026-08-03T13:20:02|699|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T13:08:09|2026-08-03T13:14:38|2026-08-03T13:14:47|9|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T13:15:38|2026-08-03T13:21:18|2026-08-03T13:27:10|352|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T13:16:19|2026-08-03T13:21:49|2026-08-03T13:28:09|380|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T13:20:51|2026-08-03T13:29:32|2026-08-03T13:34:19|287|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T13:28:03|2026-08-03T13:30:34|2026-08-03T15:27:59|7045|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T13:29:07|2026-08-03T13:32:37|2026-08-03T15:27:46|6909|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T13:35:11|2026-08-03T14:01:30|2026-08-03T14:08:12|402|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T14:09:08|2026-08-03T14:11:15|2026-08-03T14:24:49|814|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T14:25:42|2026-08-03T14:34:34|2026-08-03T14:38:40|246|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T14:33:44|2026-08-03T14:37:39|2026-08-03T14:38:10|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T14:38:13|2026-08-03T14:41:14|2026-08-03T14:54:39|805|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T14:39:32|2026-08-03T14:43:17|2026-08-03T15:27:59|2682|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T14:54:42|2026-08-03T14:59:18|2026-08-03T15:15:23|965|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:16:15|2026-08-03T15:19:04|2026-08-03T15:27:46|522|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38076893|rescue_rampnet|klone|ckpt-all|ckpt|COMPLETED|2026-08-03T15:26:27|2026-08-03T15:26:29|2026-08-03T15:41:13|884|billing=4,cpu=4,mem=8G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:27:49|2026-08-03T15:30:42|2026-08-03T15:40:59|617|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:28:40|2026-08-03T15:30:42|2026-08-03T15:37:56|434|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:28:57|2026-08-03T15:37:42|2026-08-03T15:41:02|200|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:29:05|2026-08-03T15:37:42|2026-08-03T15:38:01|19|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:38:54|2026-08-03T15:42:18|2026-08-03T15:51:40|562|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:41:51|2026-08-03T15:47:24|2026-08-03T15:51:14|230|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:41:51|2026-08-03T15:47:24|2026-08-03T15:51:17|233|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:47:00|2026-08-03T15:52:34|2026-08-03T15:57:29|295|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:47:11|2026-08-03T15:52:34|2026-08-03T15:56:09|215|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:51:16|2026-08-03T15:53:35|2026-08-03T15:55:39|124|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:52:08|2026-08-03T15:54:38|2026-08-03T15:55:40|62|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:52:34|2026-08-03T15:56:42|2026-08-03T15:57:29|47|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:56:11|2026-08-03T15:58:47|2026-08-03T16:06:43|476|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:56:28|2026-08-03T15:58:47|2026-08-03T16:06:43|476|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:56:31|2026-08-03T15:58:47|2026-08-03T16:06:43|476|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:58:21|2026-08-03T16:04:37|2026-08-03T16:06:43|126|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T15:58:22|2026-08-03T16:04:37|2026-08-03T16:06:46|129|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:06:45|2026-08-03T16:11:53|2026-08-03T16:38:12|1579|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:07:32|2026-08-03T16:11:53|2026-08-03T16:38:16|1583|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:07:33|2026-08-03T16:11:53|2026-08-03T16:33:13|1280|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:07:34|2026-08-03T16:11:53|2026-08-03T16:38:12|1579|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:07:38|2026-08-03T16:11:53|2026-08-03T16:38:16|1583|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:33:15|2026-08-03T16:36:22|2026-08-03T16:38:09|107|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:38:13|2026-08-03T16:40:30|2026-08-03T16:45:56|326|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:38:14|2026-08-03T16:40:30|2026-08-03T16:45:56|326|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:39:00|2026-08-03T16:41:01|2026-08-03T16:45:56|295|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:39:06|2026-08-03T16:42:35|2026-08-03T16:45:35|180|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:39:08|2026-08-03T16:47:13|2026-08-03T16:50:50|217|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:45:58|2026-08-03T16:48:15|2026-08-03T16:49:50|95|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:45:58|2026-08-03T16:50:50|2026-08-03T16:52:27|97|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:46:28|2026-08-03T16:50:50|2026-08-03T16:52:27|97|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:46:47|2026-08-03T16:50:50|2026-08-03T16:58:20|450|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:50:41|2026-08-03T16:52:54|2026-08-03T16:59:53|419|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:51:42|2026-08-03T16:54:27|2026-08-03T16:59:53|326|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:52:29|2026-08-03T16:56:30|2026-08-03T17:02:14|344|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:52:29|2026-08-03T16:59:07|2026-08-03T17:00:57|110|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T16:59:13|2026-08-03T17:03:13|2026-08-03T17:14:49|696|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:00:45|2026-08-03T17:03:13|2026-08-03T17:14:49|696|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:00:46|2026-08-03T17:03:13|2026-08-03T17:14:46|693|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:01:46|2026-08-03T17:04:15|2026-08-03T17:14:49|634|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:03:04|2026-08-03T17:05:17|2026-08-03T17:14:46|569|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:15:36|2026-08-03T17:17:38|2026-08-03T17:22:58|320|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:15:38|2026-08-03T17:18:09|2026-08-03T17:22:58|289|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:15:40|2026-08-03T17:18:09|2026-08-03T17:33:24|915|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:15:41|2026-08-03T17:18:09|2026-08-03T17:22:58|289|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:15:42|2026-08-03T17:18:09|2026-08-03T17:33:24|915|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:23:00|2026-08-03T17:25:51|2026-08-03T17:33:24|453|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:23:49|2026-08-03T17:25:51|2026-08-03T17:33:19|448|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:23:49|2026-08-03T17:26:22|2026-08-03T17:33:24|422|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:34:10|2026-08-03T17:36:12|2026-08-03T17:36:55|43|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:34:14|2026-08-03T17:36:43|2026-08-03T17:40:46|243|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:34:15|2026-08-03T17:36:43|2026-08-03T17:40:42|239|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:34:16|2026-08-03T17:38:48|2026-08-03T18:10:27|1899|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:34:16|2026-08-03T18:05:14|2026-08-03T18:10:12|298|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:37:47|2026-08-03T18:08:59|2026-08-03T18:10:00|61|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:40:45|2026-08-03T18:08:59|2026-08-03T18:10:19|80|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T17:41:37|2026-08-03T18:08:59|2026-08-03T18:10:23|84|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:10:22|2026-08-03T18:12:40|2026-08-03T18:35:26|1366|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:10:50|2026-08-03T18:13:11|2026-08-03T18:34:33|1282|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:11:03|2026-08-03T18:13:11|2026-08-03T18:35:00|1309|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:11:14|2026-08-03T18:14:47|2026-08-03T18:19:59|312|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:11:19|2026-08-03T18:15:19|2026-08-03T18:19:10|231|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:20:03|2026-08-03T18:23:26|2026-08-03T18:28:36|310|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:20:50|2026-08-03T18:25:33|2026-08-03T18:29:00|207|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:29:27|2026-08-03T18:31:57|2026-08-03T19:19:19|2842|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:29:51|2026-08-03T18:33:01|2026-08-03T19:37:38|3877|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:35:25|2026-08-03T18:38:19|2026-08-03T18:44:24|365|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:35:53|2026-08-03T18:40:29|2026-08-03T18:44:24|235|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:36:19|2026-08-03T18:45:21|2026-08-03T18:45:23|2|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:44:26|2026-08-03T18:47:28|2026-08-03T19:06:09|1121|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:45:14|2026-08-03T18:47:28|2026-08-03T19:06:11|1123|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T18:46:12|2026-08-03T18:49:05|2026-08-03T19:06:22|1037|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:06:11|2026-08-03T19:08:29|2026-08-03T19:32:29|1440|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:06:14|2026-08-03T19:08:29|2026-08-03T19:20:31|722|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:07:18|2026-08-03T19:21:02|2026-08-03T19:33:03|721|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:19:22|2026-08-03T19:21:33|2026-08-03T19:30:13|520|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:21:38|2026-08-03T19:24:10|2026-08-03T19:31:03|413|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:31:03|2026-08-03T19:38:42|2026-08-03T19:49:18|636|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:31:57|2026-08-03T19:41:54|2026-08-03T19:49:41|467|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:33:20|2026-08-03T19:44:06|2026-08-03T19:51:17|431|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:33:52|2026-08-03T19:45:12|2026-08-03T19:52:21|429|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:38:32|2026-08-03T19:48:29|2026-08-03T20:04:58|989|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:49:44|2026-08-03T19:52:16|2026-08-03T19:52:21|5|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:50:15|2026-08-03T19:53:19|2026-08-03T20:11:58|1119|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:52:07|2026-08-03T19:54:20|2026-08-03T20:14:59|1239|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:53:10|2026-08-03T19:59:05|2026-08-03T20:14:59|954|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T19:53:17|2026-08-03T20:01:10|2026-08-03T20:15:09|839|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:05:52|2026-08-03T20:08:28|2026-08-03T20:08:44|16|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:09:35|2026-08-03T20:11:38|2026-08-03T20:16:59|321|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:12:50|2026-08-03T20:15:17|2026-08-03T20:15:21|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:15:49|2026-08-03T20:17:53|2026-08-03T20:26:18|505|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:15:49|2026-08-03T20:17:53|2026-08-03T20:27:24|571|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:16:02|2026-08-03T20:18:55|2026-08-03T20:32:18|803|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:16:12|2026-08-03T20:19:28|2026-08-03T20:25:49|381|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:17:50|2026-08-03T20:20:30|2026-08-03T20:40:10|1180|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:26:42|2026-08-03T20:30:57|2026-08-03T20:32:15|78|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:27:08|2026-08-03T20:31:28|2026-08-03T20:32:18|50|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:28:16|2026-08-03T20:34:04|2026-08-03T20:40:10|366|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:33:07|2026-08-03T20:36:40|2026-08-03T20:40:10|210|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:33:08|2026-08-03T20:37:41|2026-08-03T20:40:10|149|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:33:10|2026-08-03T20:37:41|2026-08-03T20:47:18|577|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:40:58|2026-08-03T20:44:25|2026-08-03T20:53:39|554|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:41:00|2026-08-03T20:45:59|2026-08-03T20:47:18|79|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:41:01|2026-08-03T20:46:31|2026-08-03T20:48:34|123|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:41:01|2026-08-03T20:47:02|2026-08-03T20:48:04|62|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:48:10|2026-08-03T20:50:38|2026-08-03T20:53:39|181|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:48:15|2026-08-03T20:50:38|2026-08-03T20:53:39|181|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:48:37|2026-08-03T20:50:38|2026-08-03T20:53:39|181|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:48:58|2026-08-03T20:51:10|2026-08-03T20:53:49|159|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:54:29|2026-08-03T20:58:09|2026-08-03T21:04:47|398|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:54:31|2026-08-03T20:58:42|2026-08-03T21:03:56|314|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:54:32|2026-08-03T20:59:48|2026-08-03T21:03:56|248|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:54:32|2026-08-03T21:02:00|2026-08-03T21:37:21|2121|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T20:54:42|2026-08-03T21:02:34|2026-08-03T21:03:56|82|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:04:48|2026-08-03T21:06:56|2026-08-03T21:13:37|401|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:04:52|2026-08-03T21:06:56|2026-08-03T21:13:40|404|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:04:53|2026-08-03T21:06:56|2026-08-03T21:13:37|401|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:05:37|2026-08-03T21:08:33|2026-08-03T21:28:42|1209|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:14:28|2026-08-03T21:16:35|2026-08-03T21:37:01|1226|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:14:30|2026-08-03T21:16:35|2026-08-03T21:19:12|157|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:14:35|2026-08-03T21:17:08|2026-08-03T21:23:38|390|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:20:04|2026-08-03T21:22:56|2026-08-03T21:23:35|39|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:24:24|2026-08-03T21:27:07|2026-08-03T21:28:09|62|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:24:27|2026-08-03T21:27:07|2026-08-03T21:28:09|62|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:29:01|2026-08-03T21:32:55|2026-08-03T21:34:22|87|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:29:07|2026-08-03T21:32:55|2026-08-03T21:33:43|48|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:29:32|2026-08-03T21:33:26|2026-08-03T21:33:43|17|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:33:49|2026-08-03T21:36:40|2026-08-03T21:36:53|13|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:34:36|2026-08-03T21:38:20|2026-08-03T21:42:19|239|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:35:13|2026-08-03T21:38:20|2026-08-03T21:48:14|594|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:36:58|2026-08-03T21:40:42|2026-08-03T21:42:17|95|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:37:05|2026-08-03T21:43:30|2026-08-03T21:48:14|284|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:38:15|2026-08-03T21:43:30|2026-08-03T21:48:14|284|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:42:23|2026-08-03T21:45:47|2026-08-03T21:48:10|143|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:43:14|2026-08-03T21:49:14|2026-08-03T21:50:29|75|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:49:02|2026-08-03T21:51:34|2026-08-03T22:00:48|554|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:49:05|2026-08-03T21:54:33|2026-08-03T22:01:13|400|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:49:05|2026-08-03T21:57:26|2026-08-03T22:04:04|398|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:49:06|2026-08-03T22:00:13|2026-08-03T22:31:15|1862|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T21:51:20|2026-08-03T22:01:55|2026-08-03T22:02:27|32|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:01:41|2026-08-03T22:04:37|2026-08-03T22:08:12|215|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:02:02|2026-08-03T22:06:22|2026-08-03T22:09:51|209|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:02:31|2026-08-03T22:06:22|2026-08-03T22:08:12|110|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:04:58|2026-08-03T22:07:33|2026-08-03T22:08:12|39|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:08:17|2026-08-03T22:10:24|2026-08-03T22:17:25|421|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:09:03|2026-08-03T22:13:57|2026-08-03T22:21:00|423|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:09:09|2026-08-03T22:13:57|2026-08-03T22:16:09|132|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:10:44|2026-08-03T22:18:00|2026-08-03T22:21:27|207|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:17:02|2026-08-03T22:20:12|2026-08-03T22:21:00|48|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:17:31|2026-08-03T22:20:12|2026-08-03T22:20:36|24|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:20:39|2026-08-03T22:22:55|2026-08-03T22:29:03|368|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:21:52|2026-08-03T22:30:13|2026-08-03T22:42:40|747|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:21:52|2026-08-03T22:30:46|2026-08-03T22:43:41|775|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:22:19|2026-08-03T22:30:46|2026-08-03T22:43:01|735|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:29:58|2026-08-03T22:41:54|2026-08-03T22:55:32|818|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:32:04|2026-08-03T22:41:54|2026-08-03T23:05:12|1398|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:43:32|2026-08-03T22:47:27|2026-08-03T23:03:49|982|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:43:55|2026-08-03T22:50:42|2026-08-03T23:03:43|781|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:44:34|2026-08-03T22:50:42|2026-08-03T23:04:59|857|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T22:55:35|2026-08-03T23:04:28|2026-08-03T23:04:32|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T23:03:46|2026-08-03T23:06:01|2026-08-03T23:11:44|343|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T23:04:41|2026-08-03T23:09:10|2026-08-03T23:45:26|2176|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T23:05:22|2026-08-03T23:09:10|2026-08-03T23:45:20|2170|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T23:05:50|2026-08-03T23:09:10|2026-08-03T23:46:01|2211|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T23:06:03|2026-08-03T23:10:44|2026-08-03T23:48:37|2273|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T23:12:37|2026-08-03T23:15:56|2026-08-04T00:00:46|2690|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T23:45:22|2026-08-03T23:49:52|2026-08-03T23:58:06|494|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T23:46:21|2026-08-03T23:50:22|2026-08-03T23:58:06|464|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T23:46:54|2026-08-03T23:50:54|2026-08-04T00:01:15|621|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T23:49:29|2026-08-03T23:54:32|2026-08-04T00:54:44|3612|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T23:59:08|2026-08-04T00:02:22|2026-08-04T00:16:54|872|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-03T23:59:37|2026-08-04T00:02:52|2026-08-04T00:34:05|1873|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:01:35|2026-08-04T00:08:06|2026-08-04T00:26:50|1124|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:02:08|2026-08-04T00:10:11|2026-08-04T00:54:18|2647|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:17:45|2026-08-04T00:27:20|2026-08-04T00:36:28|548|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:27:45|2026-08-04T00:29:56|2026-08-04T00:36:32|396|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:34:58|2026-08-04T00:37:46|2026-08-04T00:38:52|66|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:36:35|2026-08-04T00:39:55|2026-08-04T00:54:18|863|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:37:21|2026-08-04T00:46:24|2026-08-04T00:53:39|435|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:39:44|2026-08-04T00:46:24|2026-08-04T00:47:10|46|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:48:00|2026-08-04T00:50:31|2026-08-04T00:51:35|64|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:52:26|2026-08-04T00:55:41|2026-08-04T00:58:06|145|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:54:32|2026-08-04T00:57:47|2026-08-04T00:58:06|19|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:55:11|2026-08-04T00:58:18|2026-08-04T00:59:23|65|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:55:14|2026-08-04T00:59:20|2026-08-04T01:03:47|267|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:55:34|2026-08-04T00:59:20|2026-08-04T01:03:49|269|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:58:56|2026-08-04T01:01:25|2026-08-04T01:03:47|142|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T00:58:56|2026-08-04T01:01:25|2026-08-04T01:03:47|142|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T01:00:14|2026-08-04T01:03:30|2026-08-04T01:03:49|19|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T01:04:36|2026-08-04T01:08:09|2026-08-04T02:11:24|3795|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T01:04:38|2026-08-04T01:08:09|2026-08-04T01:35:08|1619|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T01:04:40|2026-08-04T01:08:09|2026-08-04T02:29:31|4882|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T01:04:45|2026-08-04T01:09:10|2026-08-04T01:25:16|966|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T01:04:45|2026-08-04T01:10:44|2026-08-04T01:52:51|2527|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T01:26:09|2026-08-04T01:33:35|2026-08-04T01:43:47|612|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T01:35:11|2026-08-04T01:37:44|2026-08-04T01:44:27|403|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T01:44:37|2026-08-04T01:49:07|2026-08-04T01:52:45|218|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T01:45:17|2026-08-04T01:53:47|2026-08-04T02:00:03|376|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T01:53:40|2026-08-04T01:58:27|2026-08-04T02:00:35|128|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T01:53:43|2026-08-04T01:58:59|2026-08-04T02:00:01|62|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:00:55|2026-08-04T02:04:40|2026-08-04T02:05:29|49|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:00:59|2026-08-04T02:05:11|2026-08-04T02:05:51|40|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:01:27|2026-08-04T02:06:44|2026-08-04T02:16:21|577|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:05:32|2026-08-04T02:08:16|2026-08-04T02:10:55|159|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:06:47|2026-08-04T02:09:17|2026-08-04T02:11:52|155|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:11:47|2026-08-04T02:15:28|2026-08-04T02:17:51|143|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:12:18|2026-08-04T02:15:59|2026-08-04T02:16:51|52|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:12:45|2026-08-04T02:17:01|2026-08-04T02:27:16|615|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:17:13|2026-08-04T02:21:08|2026-08-04T02:27:12|364|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:17:49|2026-08-04T02:21:40|2026-08-04T02:27:53|373|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:17:54|2026-08-04T02:22:11|2026-08-04T02:22:12|1|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:23:08|2026-08-04T02:26:20|2026-08-04T02:32:02|342|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:28:08|2026-08-04T02:30:28|2026-08-04T02:33:16|168|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:28:09|2026-08-04T02:32:33|2026-08-04T02:32:38|5|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:28:43|2026-08-04T02:34:37|2026-08-04T02:50:58|981|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:30:25|2026-08-04T02:34:37|2026-08-04T02:38:04|207|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:32:55|2026-08-04T02:35:08|2026-08-04T02:38:04|176|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:33:36|2026-08-04T02:36:42|2026-08-04T02:43:31|409|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:34:08|2026-08-04T02:37:45|2026-08-04T02:43:53|368|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:38:58|2026-08-04T02:41:53|2026-08-04T02:42:12|19|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:38:58|2026-08-04T02:43:27|2026-08-04T02:51:26|479|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:43:07|2026-08-04T02:50:13|2026-08-04T02:53:54|221|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:43:55|2026-08-04T02:50:13|2026-08-04T02:54:17|244|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:44:22|2026-08-04T02:52:17|2026-08-04T02:54:17|120|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:51:51|2026-08-04T02:55:22|2026-08-04T03:05:46|624|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:52:20|2026-08-04T02:55:22|2026-08-04T03:04:59|577|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:54:46|2026-08-04T02:58:58|2026-08-04T02:59:39|41|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:55:08|2026-08-04T02:58:58|2026-08-04T02:59:39|41|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T02:55:10|2026-08-04T02:59:30|2026-08-04T03:04:59|329|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:00:30|2026-08-04T03:02:36|2026-08-04T03:04:59|143|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:00:30|2026-08-04T03:04:09|2026-08-04T03:04:59|50|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:05:51|2026-08-04T03:08:16|2026-08-04T03:10:19|123|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:05:52|2026-08-04T03:09:49|2026-08-04T03:20:56|667|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:05:54|2026-08-04T03:09:49|2026-08-04T03:12:55|186|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:05:55|2026-08-04T03:09:49|2026-08-04T03:10:19|30|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:06:39|2026-08-04T03:11:21|2026-08-04T03:15:40|259|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:11:08|2026-08-04T03:13:25|2026-08-04T03:19:37|372|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:11:12|2026-08-04T03:13:25|2026-08-04T03:15:40|135|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:12:58|2026-08-04T03:15:29|2026-08-04T03:15:40|11|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:15:43|2026-08-04T03:18:05|2026-08-04T03:20:56|171|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:16:30|2026-08-04T03:19:37|2026-08-04T03:20:56|79|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:16:33|2026-08-04T03:20:08|2026-08-04T03:21:18|70|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:20:28|2026-08-04T03:22:41|2026-08-04T03:26:11|210|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:20:59|2026-08-04T03:23:12|2026-08-04T03:26:11|179|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:21:46|2026-08-04T03:24:14|2026-08-04T03:26:56|162|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:21:47|2026-08-04T03:25:15|2026-08-04T03:26:11|56|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:22:11|2026-08-04T03:27:19|2026-08-04T03:41:55|876|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:26:14|2026-08-04T03:28:20|2026-08-04T03:31:25|185|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:26:59|2026-08-04T03:30:55|2026-08-04T03:41:55|660|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:27:05|2026-08-04T03:30:55|2026-08-04T03:41:57|662|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:27:06|2026-08-04T03:31:25|2026-08-04T03:36:40|315|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:32:17|2026-08-04T03:35:32|2026-08-04T03:36:40|68|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:36:42|2026-08-04T03:39:37|2026-08-04T03:41:55|138|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:37:31|2026-08-04T03:39:37|2026-08-04T03:41:55|138|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:42:44|2026-08-04T03:45:15|2026-08-04T03:47:11|116|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:42:45|2026-08-04T03:45:15|2026-08-04T03:47:11|116|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:42:48|2026-08-04T03:45:45|2026-08-04T03:47:11|86|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:42:49|2026-08-04T03:47:49|2026-08-04T03:51:58|249|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:42:51|2026-08-04T03:47:49|2026-08-04T03:57:30|581|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:48:02|2026-08-04T03:50:53|2026-08-04T03:51:58|65|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:48:02|2026-08-04T03:51:24|2026-08-04T03:51:58|34|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:48:03|2026-08-04T03:51:55|2026-08-04T03:51:58|3|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:52:01|2026-08-04T03:54:29|2026-08-04T03:55:30|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:52:49|2026-08-04T03:54:59|2026-08-04T03:57:30|151|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:52:51|2026-08-04T03:54:59|2026-08-04T03:57:40|161|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:52:57|2026-08-04T03:54:59|2026-08-04T03:58:00|181|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:56:25|2026-08-04T03:58:35|2026-08-04T04:01:55|200|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:57:33|2026-08-04T04:00:07|2026-08-04T04:01:55|108|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:57:42|2026-08-04T04:00:07|2026-08-04T04:01:55|108|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:58:20|2026-08-04T04:03:42|2026-08-04T04:08:11|269|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T03:58:54|2026-08-04T04:05:46|2026-08-04T04:11:57|371|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:01:58|2026-08-04T04:07:19|2026-08-04T04:11:57|278|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:02:50|2026-08-04T04:07:19|2026-08-04T04:08:11|52|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:02:52|2026-08-04T04:08:51|2026-08-04T04:11:59|188|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:09:03|2026-08-04T04:13:28|2026-08-04T04:18:40|312|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:09:08|2026-08-04T04:13:59|2026-08-04T04:18:40|281|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:12:47|2026-08-04T04:15:31|2026-08-04T04:18:40|189|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:12:48|2026-08-04T04:16:01|2026-08-04T04:18:40|159|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:12:50|2026-08-04T04:16:01|2026-08-04T04:18:42|161|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:19:31|2026-08-04T04:22:42|2026-08-04T04:24:01|79|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:19:32|2026-08-04T04:23:13|2026-08-04T04:24:01|48|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:19:34|2026-08-04T04:23:43|2026-08-04T04:31:00|437|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:19:35|2026-08-04T04:23:43|2026-08-04T04:24:01|18|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:19:36|2026-08-04T04:23:43|2026-08-04T04:29:15|332|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:24:04|2026-08-04T04:30:24|2026-08-04T04:37:04|400|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:24:04|2026-08-04T04:31:56|2026-08-04T06:56:37|8681|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:24:50|2026-08-04T04:31:56|2026-08-04T06:56:37|8681|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:30:08|2026-08-04T04:32:27|2026-08-04T06:56:37|8650|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:31:50|2026-08-04T04:33:59|2026-08-04T06:56:37|8558|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:37:56|2026-08-04T04:41:10|2026-08-04T04:44:08|178|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:44:11|2026-08-04T04:47:50|2026-08-04T04:49:52|122|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T04:50:42|2026-08-04T04:53:27|2026-08-04T06:06:12|4365|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T06:07:03|2026-08-04T06:10:52|2026-08-04T06:56:37|2745|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T06:57:26|2026-08-04T07:00:05|2026-08-04T07:44:40|2675|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T06:57:28|2026-08-04T07:00:36|2026-08-04T08:56:07|6931|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T06:57:28|2026-08-04T07:01:37|2026-08-04T09:15:15|8018|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T06:57:29|2026-08-04T07:01:37|2026-08-04T07:44:57|2600|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T06:57:29|2026-08-04T07:01:37|2026-08-04T08:43:34|6117|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T07:45:34|2026-08-04T07:49:47|2026-08-04T07:53:22|215|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T07:45:47|2026-08-04T07:49:47|2026-08-04T08:00:26|639|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T07:53:25|2026-08-04T08:02:36|2026-08-04T08:43:30|2454|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T08:00:29|2026-08-04T08:06:41|2026-08-04T08:53:14|2793|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T08:44:24|2026-08-04T08:50:41|2026-08-04T08:55:31|290|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T08:44:28|2026-08-04T08:54:16|2026-08-04T09:33:26|2350|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T08:54:05|2026-08-04T08:56:50|2026-08-04T09:29:56|1986|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T08:56:24|2026-08-04T09:00:27|2026-08-04T09:14:36|849|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T08:56:58|2026-08-04T09:00:27|2026-08-04T09:14:53|866|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T09:15:29|2026-08-04T09:26:17|2026-08-04T09:46:10|1193|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T09:15:46|2026-08-04T09:27:51|2026-08-04T09:30:02|131|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T09:16:09|2026-08-04T09:30:59|2026-08-04T11:02:45|5506|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T09:30:48|2026-08-04T09:35:43|2026-08-04T09:41:29|346|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T09:30:53|2026-08-04T09:37:50|2026-08-04T11:06:52|5342|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T09:34:18|2026-08-04T09:43:03|2026-08-04T09:44:25|82|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T09:42:22|2026-08-04T09:47:13|2026-08-04T10:50:29|3796|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T09:45:16|2026-08-04T09:51:52|2026-08-04T10:50:39|3527|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T09:46:12|2026-08-04T09:52:55|2026-08-04T10:35:49|2574|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T10:36:40|2026-08-04T10:43:13|2026-08-04T10:49:58|405|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T10:50:52|2026-08-04T10:54:41|2026-08-04T11:02:45|484|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T10:51:22|2026-08-04T10:57:19|2026-08-04T11:00:24|185|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T10:51:31|2026-08-04T10:59:57|2026-08-04T11:02:45|168|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T11:00:30|2026-08-04T11:02:32|2026-08-04T11:56:47|3255|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T11:02:48|2026-08-04T11:05:40|2026-08-04T11:09:07|207|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T11:03:35|2026-08-04T11:07:14|2026-08-04T11:09:27|133|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T11:03:40|2026-08-04T11:07:14|2026-08-04T11:10:29|195|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T11:07:43|2026-08-04T11:10:23|2026-08-04T12:10:50|3627|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T11:09:59|2026-08-04T11:17:40|2026-08-04T11:38:41|1261|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T11:10:19|2026-08-04T11:18:11|2026-08-04T11:56:47|2316|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T11:11:25|2026-08-04T11:19:43|2026-08-04T11:20:44|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T11:21:43|2026-08-04T11:29:05|2026-08-04T12:11:12|2527|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T11:38:44|2026-08-04T11:53:29|2026-08-04T12:01:12|463|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T11:57:38|2026-08-04T12:02:20|2026-08-04T12:17:33|913|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T11:57:41|2026-08-04T12:03:26|2026-08-04T12:17:33|847|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T12:01:16|2026-08-04T12:12:16|2026-08-04T12:30:00|1064|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T12:11:45|2026-08-04T12:59:37|2026-08-04T13:29:52|1815|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T12:12:05|2026-08-04T13:00:43|2026-08-04T13:26:46|1563|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T12:18:24|2026-08-04T13:01:14|2026-08-04T13:20:38|1164|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T12:18:27|2026-08-04T13:01:14|2026-08-04T13:26:46|1532|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T12:30:54|2026-08-04T13:01:46|2026-08-04T13:08:57|431|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:09:00|2026-08-04T13:11:16|2026-08-04T13:20:19|543|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:21:13|2026-08-04T13:23:28|2026-08-04T13:26:46|198|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:21:31|2026-08-04T13:23:59|2026-08-04T13:26:46|167|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:26:51|2026-08-04T13:30:48|2026-08-04T13:34:27|219|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:27:38|2026-08-04T13:30:48|2026-08-04T13:35:08|260|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:27:40|2026-08-04T13:31:51|2026-08-04T13:36:44|293|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:27:41|2026-08-04T13:35:32|2026-08-04T13:36:44|72|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:30:44|2026-08-04T13:35:32|2026-08-04T13:36:44|72|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:35:20|2026-08-04T13:37:45|2026-08-04T13:42:32|287|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:36:01|2026-08-04T13:38:18|2026-08-04T13:46:50|512|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:37:37|2026-08-04T13:41:02|2026-08-04T14:38:10|3428|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:37:38|2026-08-04T13:41:35|2026-08-04T13:56:51|916|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:37:39|2026-08-04T13:42:05|2026-08-04T13:56:51|886|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:42:35|2026-08-04T13:44:43|2026-08-04T13:56:51|728|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:47:44|2026-08-04T13:50:36|2026-08-04T13:56:54|378|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:56:55|2026-08-04T13:59:05|2026-08-04T14:37:46|2321|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:57:42|2026-08-04T14:00:09|2026-08-04T14:27:31|1642|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:57:42|2026-08-04T14:00:09|2026-08-04T14:46:42|2793|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T13:57:49|2026-08-04T14:00:09|2026-08-04T14:37:34|2245|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38137571|tar_round1_crops|klone|ckpt-all|ckpt|COMPLETED|2026-08-04T14:10:50|2026-08-04T14:11:06|2026-08-04T15:15:34|3868|billing=4,cpu=4,mem=8G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:28:23|2026-08-04T14:31:14|2026-08-04T14:34:00|166|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:34:50|2026-08-04T14:38:59|2026-08-04T14:40:46|107|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:38:30|2026-08-04T14:40:43|2026-08-04T14:40:46|3|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:38:41|2026-08-04T14:41:51|2026-08-04T14:46:17|266|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:39:06|2026-08-04T14:41:51|2026-08-04T14:46:38|287|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:41:39|2026-08-04T14:47:04|2026-08-04T14:48:53|109|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:41:40|2026-08-04T14:47:36|2026-08-04T14:48:42|66|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:47:07|2026-08-04T14:49:53|2026-08-04T14:50:55|62|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:47:30|2026-08-04T14:49:53|2026-08-04T14:51:18|85|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:47:32|2026-08-04T14:50:28|2026-08-04T14:52:20|112|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:49:34|2026-08-04T14:52:11|2026-08-04T14:52:20|9|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:49:43|2026-08-04T14:53:19|2026-08-04T14:54:26|67|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:51:45|2026-08-04T14:53:52|2026-08-04T15:26:52|1980|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:52:10|2026-08-04T14:55:32|2026-08-04T14:56:44|72|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:53:12|2026-08-04T14:56:38|2026-08-04T14:56:44|6|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:53:14|2026-08-04T14:56:38|2026-08-04T15:26:52|1814|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:55:18|2026-08-04T14:57:44|2026-08-04T14:58:47|63|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:57:33|2026-08-04T15:00:01|2026-08-04T15:01:07|66|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:57:34|2026-08-04T15:00:01|2026-08-04T15:01:22|81|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T14:59:41|2026-08-04T15:02:17|2026-08-04T15:03:35|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:01:58|2026-08-04T15:04:40|2026-08-04T15:06:49|129|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:02:12|2026-08-04T15:04:40|2026-08-04T15:06:49|129|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:04:27|2026-08-04T15:08:09|2026-08-04T15:16:54|525|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:07:40|2026-08-04T15:10:32|2026-08-04T15:14:58|266|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:07:41|2026-08-04T15:11:07|2026-08-04T15:26:52|945|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:15:49|2026-08-04T15:18:15|2026-08-04T15:26:49|514|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:17:46|2026-08-04T15:25:09|2026-08-04T15:26:52|103|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:27:40|2026-08-04T15:30:07|2026-08-04T15:36:47|400|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:27:45|2026-08-04T15:30:39|2026-08-04T15:36:47|368|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:27:45|2026-08-04T15:32:12|2026-08-04T15:36:47|275|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:27:45|2026-08-04T15:32:12|2026-08-04T15:35:25|193|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:27:49|2026-08-04T15:33:48|2026-08-04T15:36:47|179|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:36:22|2026-08-04T15:38:38|2026-08-04T16:17:42|2344|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:37:39|2026-08-04T15:39:49|2026-08-04T16:18:33|2324|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:37:39|2026-08-04T15:39:49|2026-08-04T16:56:58|4629|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:37:40|2026-08-04T15:40:56|2026-08-04T16:19:05|2289|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T15:37:44|2026-08-04T15:41:28|2026-08-04T16:17:42|2174|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:18:35|2026-08-04T16:20:57|2026-08-04T16:22:19|82|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:18:36|2026-08-04T16:20:57|2026-08-04T16:54:02|1985|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:19:26|2026-08-04T16:23:31|2026-08-04T16:33:20|589|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:19:57|2026-08-04T16:23:31|2026-08-04T16:40:29|1018|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:23:10|2026-08-04T16:27:38|2026-08-04T16:27:42|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:28:31|2026-08-04T16:31:14|2026-08-04T16:38:58|464|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:33:22|2026-08-04T16:37:53|2026-08-04T16:38:28|35|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:39:20|2026-08-04T16:41:28|2026-08-04T16:48:19|411|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:39:50|2026-08-04T16:44:02|2026-08-04T16:48:42|280|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:41:24|2026-08-04T16:44:33|2026-08-04T16:53:41|548|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:49:08|2026-08-04T16:51:12|2026-08-04T16:56:48|336|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:49:41|2026-08-04T16:52:14|2026-08-04T16:56:48|274|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:54:37|2026-08-04T16:58:54|2026-08-04T17:55:28|3394|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:54:54|2026-08-04T16:58:54|2026-08-04T17:59:59|3665|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:56:51|2026-08-04T17:36:30|2026-08-04T18:05:53|1763|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:57:40|2026-08-04T17:36:30|2026-08-04T17:47:49|679|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T16:57:53|2026-08-04T17:36:30|2026-08-04T17:47:49|679|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T17:47:52|2026-08-04T17:51:02|2026-08-04T17:53:47|165|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T17:48:40|2026-08-04T17:51:02|2026-08-04T18:02:45|703|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T17:54:40|2026-08-04T17:56:45|2026-08-04T17:57:32|47|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T17:56:21|2026-08-04T17:59:50|2026-08-04T17:59:59|9|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T17:58:23|2026-08-04T18:00:52|2026-08-04T18:00:53|1|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:00:50|2026-08-04T18:03:27|2026-08-04T18:04:57|90|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:00:52|2026-08-04T18:03:27|2026-08-04T18:04:57|90|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:01:42|2026-08-04T18:03:58|2026-08-04T18:08:19|261|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:03:40|2026-08-04T18:07:06|2026-08-04T19:48:15|6069|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:04:59|2026-08-04T18:07:37|2026-08-04T18:45:58|2301|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:05:49|2026-08-04T18:10:13|2026-08-04T18:23:09|776|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:06:48|2026-08-04T18:10:44|2026-08-04T18:10:46|2|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:09:14|2026-08-04T18:11:15|2026-08-04T18:23:04|709|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:10:48|2026-08-04T18:13:50|2026-08-04T18:21:40|470|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:22:30|2026-08-04T18:24:37|2026-08-04T18:39:58|921|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:23:12|2026-08-04T18:25:39|2026-08-04T18:48:05|1346|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:23:55|2026-08-04T18:26:10|2026-08-04T18:28:52|162|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:29:41|2026-08-04T18:33:55|2026-08-04T18:39:32|337|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:40:22|2026-08-04T18:46:53|2026-08-04T18:56:46|593|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:40:48|2026-08-04T18:49:28|2026-08-04T19:48:38|3550|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:46:50|2026-08-04T18:58:19|2026-08-04T19:48:15|2996|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:49:02|2026-08-04T18:58:19|2026-08-04T19:02:09|230|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T18:57:40|2026-08-04T19:00:23|2026-08-04T19:15:31|908|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T19:03:01|2026-08-04T19:07:13|2026-08-04T19:07:41|28|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T19:08:32|2026-08-04T19:14:30|2026-08-04T19:20:42|372|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T19:16:30|2026-08-04T19:21:45|2026-08-04T19:22:57|72|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T19:21:37|2026-08-04T19:24:52|2026-08-04T19:29:00|248|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T19:23:48|2026-08-04T19:25:53|2026-08-04T19:28:50|177|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T19:29:41|2026-08-04T19:34:42|2026-08-04T20:27:50|3188|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T19:29:51|2026-08-04T19:34:42|2026-08-04T21:07:03|5541|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T19:49:06|2026-08-04T19:56:19|2026-08-04T20:00:26|247|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T19:49:09|2026-08-04T19:57:52|2026-08-04T21:07:13|4161|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T19:49:35|2026-08-04T19:57:52|2026-08-04T21:06:49|4137|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T20:01:19|2026-08-04T20:04:03|2026-08-04T21:07:13|3790|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T20:27:52|2026-08-04T20:38:38|2026-08-04T21:06:49|1691|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:07:43|2026-08-04T21:18:51|2026-08-04T21:19:06|15|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:07:43|2026-08-04T21:18:51|2026-08-04T21:20:06|75|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:07:55|2026-08-04T21:18:51|2026-08-04T21:20:21|90|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:08:04|2026-08-04T21:18:51|2026-08-04T21:19:17|26|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:08:07|2026-08-04T21:23:27|2026-08-04T21:25:40|133|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:19:08|2026-08-04T21:23:27|2026-08-04T21:24:44|77|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:20:07|2026-08-04T21:23:27|2026-08-04T21:26:06|159|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:20:08|2026-08-04T21:23:27|2026-08-04T21:23:37|10|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:21:11|2026-08-04T21:25:30|2026-08-04T21:25:37|7|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:24:27|2026-08-04T21:27:33|2026-08-04T21:28:48|75|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:24:47|2026-08-04T21:27:33|2026-08-04T21:28:24|51|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:25:43|2026-08-04T21:28:04|2026-08-04T21:28:09|5|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:26:26|2026-08-04T21:28:35|2026-08-04T21:30:06|91|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:26:56|2026-08-04T21:29:05|2026-08-04T21:33:26|261|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:28:26|2026-08-04T21:30:37|2026-08-04T21:32:35|118|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:28:59|2026-08-04T21:31:38|2026-08-04T21:32:43|65|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:29:37|2026-08-04T21:32:09|2026-08-04T21:32:39|30|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:30:58|2026-08-04T21:34:12|2026-08-04T21:35:37|85|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:32:38|2026-08-04T21:34:42|2026-08-04T21:34:56|14|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:33:31|2026-08-04T21:37:16|2026-08-04T21:39:18|122|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:33:33|2026-08-04T21:37:16|2026-08-04T21:38:07|51|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:34:17|2026-08-04T21:37:16|2026-08-04T21:38:35|79|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:35:47|2026-08-04T21:38:18|2026-08-04T21:41:52|214|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:36:27|2026-08-04T21:38:49|2026-08-04T21:40:27|98|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:38:09|2026-08-04T21:40:21|2026-08-04T21:40:48|27|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:39:25|2026-08-04T21:41:53|2026-08-04T21:44:07|134|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:40:10|2026-08-04T21:43:25|2026-08-04T21:44:00|35|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:41:17|2026-08-04T21:44:26|2026-08-04T21:45:07|41|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:41:40|2026-08-04T21:44:26|2026-08-04T21:45:13|47|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:42:43|2026-08-04T21:44:57|2026-08-04T22:06:19|1282|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:44:51|2026-08-04T21:46:59|2026-08-04T22:06:26|1167|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:45:01|2026-08-04T21:47:30|2026-08-04T22:07:06|1176|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:45:59|2026-08-04T21:48:01|2026-08-04T21:48:31|30|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:46:03|2026-08-04T21:49:32|2026-08-04T22:06:36|1024|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T21:49:21|2026-08-04T21:51:35|2026-08-05T00:13:36|8521|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:06:22|2026-08-04T22:13:33|2026-08-04T22:14:39|66|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:06:28|2026-08-04T22:13:33|2026-08-04T22:13:46|13|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:07:32|2026-08-04T22:13:33|2026-08-04T22:14:51|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:07:58|2026-08-04T22:13:33|2026-08-04T22:13:56|23|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:14:37|2026-08-04T22:19:09|2026-08-04T23:13:51|3282|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:14:47|2026-08-04T22:19:09|2026-08-05T00:14:17|6908|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:15:30|2026-08-04T22:19:09|2026-08-04T22:27:18|489|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:15:41|2026-08-04T22:21:41|2026-08-04T22:21:45|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:22:35|2026-08-04T22:24:45|2026-08-04T22:40:05|920|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:27:21|2026-08-04T22:30:22|2026-08-04T22:42:38|736|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:41:00|2026-08-04T22:46:45|2026-08-04T22:58:17|692|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:42:41|2026-08-04T22:48:47|2026-08-04T22:54:54|367|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:54:57|2026-08-04T23:01:03|2026-08-04T23:09:15|492|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T22:59:11|2026-08-04T23:01:34|2026-08-04T23:09:46|492|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T23:10:07|2026-08-04T23:14:52|2026-08-04T23:15:06|14|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T23:10:40|2026-08-04T23:17:26|2026-08-04T23:38:13|1247|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T23:13:53|2026-08-04T23:17:26|2026-08-04T23:23:05|339|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T23:15:56|2026-08-04T23:19:29|2026-08-04T23:20:31|62|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T23:20:35|2026-08-04T23:23:37|2026-08-04T23:45:55|1338|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T23:23:09|2026-08-04T23:26:14|2026-08-04T23:37:42|688|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T23:37:45|2026-08-04T23:40:47|2026-08-05T00:08:47|1680|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T23:39:05|2026-08-04T23:42:19|2026-08-05T00:09:16|1617|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-04T23:46:48|2026-08-04T23:50:03|2026-08-05T00:06:04|961|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:07:02|2026-08-05T00:10:13|2026-08-05T00:15:58|345|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:09:41|2026-08-05T00:11:46|2026-08-05T00:14:19|153|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:10:11|2026-08-05T00:14:50|2026-08-05T00:28:44|834|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:14:29|2026-08-05T00:16:54|2026-08-05T01:31:16|4462|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:15:11|2026-08-05T00:17:56|2026-08-05T00:27:43|587|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:15:12|2026-08-05T00:19:28|2026-08-05T00:29:58|630|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:16:51|2026-08-05T00:19:28|2026-08-05T00:29:58|630|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:28:35|2026-08-05T00:33:21|2026-08-05T01:26:52|3211|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:29:36|2026-08-05T00:38:30|2026-08-05T00:40:34|124|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:29:59|2026-08-05T00:38:30|2026-08-05T00:40:54|144|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:30:50|2026-08-05T00:40:02|2026-08-05T00:42:22|140|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:40:36|2026-08-05T00:44:08|2026-08-05T00:47:19|191|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:41:44|2026-08-05T00:54:25|2026-08-05T00:58:16|231|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:43:14|2026-08-05T00:54:25|2026-08-05T00:57:37|192|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:48:10|2026-08-05T00:59:34|2026-08-05T01:14:11|877|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:58:27|2026-08-05T01:04:12|2026-08-05T01:14:02|590|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T00:59:07|2026-08-05T01:04:12|2026-08-05T02:53:05|6533|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T01:14:05|2026-08-05T01:17:07|2026-08-05T01:23:13|366|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T01:15:03|2026-08-05T01:18:39|2026-08-05T01:54:16|2137|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T01:24:04|2026-08-05T01:27:23|2026-08-05T01:30:43|200|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T01:27:46|2026-08-05T01:32:32|2026-08-05T01:53:29|1257|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T01:31:33|2026-08-05T01:34:36|2026-08-05T02:14:17|2381|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T01:32:09|2026-08-05T01:35:07|2026-08-05T01:56:14|1267|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T01:54:23|2026-08-05T01:57:11|2026-08-05T02:01:09|238|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T01:55:07|2026-08-05T01:57:11|2026-08-05T02:14:22|1031|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T01:57:06|2026-08-05T02:00:17|2026-08-05T02:01:35|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:02:01|2026-08-05T02:08:35|2026-08-05T02:12:48|253|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:02:27|2026-08-05T02:15:19|2026-08-05T03:20:53|3934|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:13:40|2026-08-05T02:16:21|2026-08-05T02:42:15|1554|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:14:19|2026-08-05T02:18:56|2026-08-05T02:22:47|231|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:15:14|2026-08-05T02:28:47|2026-08-05T02:31:01|134|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:23:39|2026-08-05T02:35:31|2026-08-05T02:39:12|221|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:31:53|2026-08-05T02:41:44|2026-08-05T04:18:37|5813|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:40:05|2026-08-05T02:44:18|2026-08-05T02:49:28|310|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:43:07|2026-08-05T02:46:22|2026-08-05T02:50:05|223|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:50:20|2026-08-05T02:53:05|2026-08-05T02:54:23|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:50:55|2026-08-05T02:55:39|2026-08-05T03:13:10|1051|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:53:58|2026-08-05T02:56:41|2026-08-05T03:20:53|1452|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T02:55:13|2026-08-05T03:02:55|2026-08-05T03:08:37|342|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T03:09:30|2026-08-05T03:14:17|2026-08-05T03:43:23|1746|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T03:14:03|2026-08-05T03:18:24|2026-08-05T03:48:16|1792|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T03:21:44|2026-08-05T03:27:10|2026-08-05T03:30:16|186|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T03:21:45|2026-08-05T03:28:12|2026-08-05T03:31:17|185|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T03:31:07|2026-08-05T03:33:20|2026-08-05T04:01:14|1674|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T03:32:09|2026-08-05T03:36:56|2026-08-05T04:02:15|1519|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T03:44:17|2026-08-05T04:05:22|2026-08-05T04:18:47|805|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T03:48:19|2026-08-05T04:05:22|2026-08-05T04:06:39|77|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:02:11|2026-08-05T04:07:59|2026-08-05T04:14:21|382|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:03:13|2026-08-05T04:10:03|2026-08-05T04:19:48|585|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:07:29|2026-08-05T04:10:33|2026-08-05T04:13:52|199|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:14:43|2026-08-05T04:17:45|2026-08-05T04:18:35|50|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:15:12|2026-08-05T04:19:48|2026-08-05T04:42:29|1361|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:19:26|2026-08-05T04:23:53|2026-08-05T04:24:50|57|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:19:31|2026-08-05T04:25:56|2026-08-05T04:28:12|136|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:19:44|2026-08-05T04:29:02|2026-08-05T04:36:13|431|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:20:42|2026-08-05T04:30:03|2026-08-05T04:55:21|1518|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:25:40|2026-08-05T04:30:03|2026-08-05T04:38:57|534|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:29:04|2026-08-05T04:34:42|2026-08-05T04:39:25|283|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:36:15|2026-08-05T04:39:21|2026-08-05T04:42:29|188|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:39:49|2026-08-05T04:41:55|2026-08-05T04:49:40|465|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:40:17|2026-08-05T04:42:26|2026-08-05T04:48:19|353|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:43:19|2026-08-05T04:45:31|2026-08-05T04:48:39|188|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:43:22|2026-08-05T04:46:02|2026-08-05T04:54:20|498|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:49:11|2026-08-05T04:51:13|2026-08-05T04:54:27|194|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:49:32|2026-08-05T04:51:43|2026-08-05T04:54:19|156|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:50:31|2026-08-05T04:52:45|2026-08-05T04:54:21|96|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:55:11|2026-08-05T04:58:28|2026-08-05T05:06:41|493|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:55:13|2026-08-05T04:58:59|2026-08-05T05:24:35|1536|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:55:14|2026-08-05T04:58:59|2026-08-05T05:30:40|1901|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:55:20|2026-08-05T05:01:02|2026-08-05T05:25:40|1478|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T04:56:17|2026-08-05T05:03:05|2026-08-05T06:18:37|4532|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:07:33|2026-08-05T05:11:50|2026-08-05T05:12:52|62|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:13:42|2026-08-05T05:19:01|2026-08-05T05:24:39|338|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:24:37|2026-08-05T05:26:42|2026-08-05T05:30:27|225|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:25:31|2026-08-05T05:28:14|2026-08-05T05:30:49|155|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:26:32|2026-08-05T05:29:47|2026-08-05T05:31:50|123|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:31:19|2026-08-05T05:34:23|2026-08-05T05:36:25|122|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:31:39|2026-08-05T05:34:23|2026-08-05T06:06:42|1939|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:31:39|2026-08-05T05:35:56|2026-08-05T05:42:36|400|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:32:42|2026-08-05T05:36:27|2026-08-05T05:54:57|1110|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:37:15|2026-08-05T05:41:03|2026-08-05T05:42:35|92|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:43:27|2026-08-05T05:49:47|2026-08-05T05:54:34|287|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:43:28|2026-08-05T05:49:47|2026-08-05T05:54:37|290|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:55:25|2026-08-05T05:59:04|2026-08-05T06:06:36|452|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:55:30|2026-08-05T05:59:35|2026-08-05T06:56:00|3385|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T05:55:50|2026-08-05T05:59:35|2026-08-05T06:21:00|1285|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:06:43|2026-08-05T06:08:50|2026-08-05T06:12:57|247|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:07:29|2026-08-05T06:09:52|2026-08-05T06:12:41|169|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:12:44|2026-08-05T06:16:34|2026-08-05T06:48:50|1936|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:13:48|2026-08-05T06:18:07|2026-08-05T06:18:36|29|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:18:40|2026-08-05T06:24:15|2026-08-05T06:24:37|22|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:19:30|2026-08-05T06:25:16|2026-08-05T06:30:54|338|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:21:58|2026-08-05T06:25:16|2026-08-05T07:12:54|2858|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:25:26|2026-08-05T06:29:22|2026-08-05T06:30:36|74|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:30:57|2026-08-05T06:35:31|2026-08-05T06:36:38|67|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:31:25|2026-08-05T06:37:34|2026-08-05T07:19:02|2488|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:37:28|2026-08-05T06:39:36|2026-08-05T06:42:41|185|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:43:31|2026-08-05T06:45:46|2026-08-05T06:48:41|175|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:49:32|2026-08-05T06:51:54|2026-08-05T06:54:59|185|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:49:41|2026-08-05T06:51:54|2026-08-05T06:54:44|170|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:55:35|2026-08-05T06:58:03|2026-08-05T07:00:37|154|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:55:48|2026-08-05T07:00:06|2026-08-05T07:00:17|11|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T06:56:03|2026-08-05T07:04:11|2026-08-05T07:05:44|93|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:00:40|2026-08-05T07:04:11|2026-08-05T07:06:18|127|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:01:19|2026-08-05T07:05:44|2026-08-05T07:06:45|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:05:47|2026-08-05T07:08:47|2026-08-05T07:22:37|830|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:07:14|2026-08-05T07:10:20|2026-08-05T07:12:33|133|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:07:37|2026-08-05T07:10:51|2026-08-05T07:22:34|703|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:13:24|2026-08-05T07:15:28|2026-08-05T07:18:23|175|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:13:49|2026-08-05T07:15:59|2026-08-05T07:18:25|146|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:19:13|2026-08-05T07:22:07|2026-08-05T07:24:25|138|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:19:15|2026-08-05T07:22:37|2026-08-05T07:24:31|114|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:19:56|2026-08-05T07:22:37|2026-08-05T07:36:44|847|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:22:36|2026-08-05T07:25:41|2026-08-05T07:30:27|286|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:23:32|2026-08-05T07:25:41|2026-08-05T07:36:28|647|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:24:27|2026-08-05T07:26:42|2026-08-05T07:30:24|222|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:25:22|2026-08-05T07:27:44|2026-08-05T07:36:30|526|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:30:29|2026-08-05T07:33:21|2026-08-05T07:36:24|183|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:31:15|2026-08-05T07:35:24|2026-08-05T07:36:25|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:37:15|2026-08-05T07:39:59|2026-08-05T07:42:27|148|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:37:17|2026-08-05T07:41:31|2026-08-05T07:43:32|121|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:37:20|2026-08-05T07:43:03|2026-08-05T07:43:37|34|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:37:26|2026-08-05T07:43:03|2026-08-05T07:44:19|76|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:37:35|2026-08-05T07:47:08|2026-08-05T07:49:10|122|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:43:17|2026-08-05T07:49:41|2026-08-05T07:54:49|308|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:43:40|2026-08-05T07:50:12|2026-08-05T07:55:31|319|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:44:26|2026-08-05T07:50:12|2026-08-05T07:54:43|271|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:45:10|2026-08-05T07:52:47|2026-08-05T08:00:13|446|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:50:04|2026-08-05T07:52:47|2026-08-05T08:00:42|475|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:54:46|2026-08-05T07:56:52|2026-08-05T08:00:13|201|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:55:32|2026-08-05T07:57:54|2026-08-05T07:59:52|118|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:55:42|2026-08-05T07:57:54|2026-08-05T07:59:52|118|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T07:59:55|2026-08-05T08:01:58|2026-08-05T08:03:53|115|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:00:14|2026-08-05T08:03:00|2026-08-05T08:03:53|53|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:00:46|2026-08-05T08:05:03|2026-08-05T08:06:43|100|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:01:04|2026-08-05T08:05:03|2026-08-05T08:06:47|104|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:01:34|2026-08-05T08:06:04|2026-08-05T08:06:43|39|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:04:42|2026-08-05T08:07:35|2026-08-05T08:12:50|315|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:04:51|2026-08-05T08:08:05|2026-08-05T08:12:54|289|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:07:32|2026-08-05T08:09:37|2026-08-05T08:12:54|197|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:07:36|2026-08-05T08:10:39|2026-08-05T08:24:11|812|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:08:01|2026-08-05T08:11:09|2026-08-05T08:19:08|479|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:13:39|2026-08-05T08:15:44|2026-08-05T08:18:32|168|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:13:44|2026-08-05T08:16:14|2026-08-05T08:19:08|174|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:13:44|2026-08-05T08:16:45|2026-08-05T08:19:08|143|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:19:11|2026-08-05T08:21:51|2026-08-05T08:25:01|190|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:19:22|2026-08-05T08:23:24|2026-08-05T08:25:01|97|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:19:57|2026-08-05T08:23:24|2026-08-05T08:31:04|460|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:19:58|2026-08-05T08:24:24|2026-08-05T08:31:03|399|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:25:04|2026-08-05T08:27:59|2026-08-05T08:31:04|185|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:25:04|2026-08-05T08:29:31|2026-08-05T08:31:26|115|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:25:51|2026-08-05T08:30:01|2026-08-05T08:31:01|60|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:31:04|2026-08-05T08:34:06|2026-08-05T08:37:05|179|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:31:55|2026-08-05T08:34:06|2026-08-05T08:37:08|182|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:31:56|2026-08-05T08:38:12|2026-08-05T08:43:32|320|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:32:00|2026-08-05T08:39:13|2026-08-05T08:42:02|169|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:32:21|2026-08-05T08:39:13|2026-08-05T08:41:35|142|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:37:56|2026-08-05T08:41:47|2026-08-05T08:43:10|83|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:37:59|2026-08-05T08:42:17|2026-08-05T08:43:10|53|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:42:27|2026-08-05T08:44:50|2026-08-05T08:49:09|259|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:42:52|2026-08-05T08:46:53|2026-08-05T08:55:03|490|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:43:59|2026-08-05T08:48:26|2026-08-05T08:49:09|43|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:44:08|2026-08-05T08:48:56|2026-08-05T08:55:13|377|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:44:23|2026-08-05T08:49:27|2026-08-05T09:07:22|1075|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:50:01|2026-08-05T08:54:33|2026-08-05T08:56:01|88|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:50:02|2026-08-05T08:54:33|2026-08-05T08:55:13|40|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:55:16|2026-08-05T08:57:38|2026-08-05T09:01:15|217|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:55:58|2026-08-05T08:58:08|2026-08-05T09:01:15|187|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:56:03|2026-08-05T08:59:09|2026-08-05T09:07:19|490|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T08:56:05|2026-08-05T08:59:39|2026-08-05T09:01:15|96|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:01:17|2026-08-05T09:08:22|2026-08-05T09:10:35|133|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:02:05|2026-08-05T09:08:22|2026-08-05T09:11:14|172|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:02:06|2026-08-05T09:09:24|2026-08-05T09:13:22|238|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:08:11|2026-08-05T09:10:55|2026-08-05T09:13:22|147|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:08:15|2026-08-05T09:11:26|2026-08-05T09:12:10|44|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:11:16|2026-08-05T09:14:30|2026-08-05T09:19:16|286|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:11:24|2026-08-05T09:14:30|2026-08-05T09:23:20|530|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:12:59|2026-08-05T09:15:01|2026-08-05T09:23:32|511|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:14:10|2026-08-05T09:19:38|2026-08-05T09:23:20|222|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:14:12|2026-08-05T09:20:09|2026-08-05T09:23:20|191|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:20:06|2026-08-05T09:22:12|2026-08-05T09:23:24|72|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:24:10|2026-08-05T09:26:49|2026-08-05T09:30:30|221|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:24:10|2026-08-05T09:26:49|2026-08-05T09:30:53|244|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:24:11|2026-08-05T09:26:49|2026-08-05T09:30:30|221|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:24:16|2026-08-05T09:27:20|2026-08-05T09:30:30|190|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:24:24|2026-08-05T09:27:51|2026-08-05T09:30:30|159|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:31:19|2026-08-05T09:34:00|2026-08-05T09:36:26|146|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:31:20|2026-08-05T09:35:02|2026-08-05T09:36:26|84|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:31:20|2026-08-05T09:37:36|2026-08-05T09:42:22|286|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:31:21|2026-08-05T09:37:36|2026-08-05T09:42:22|286|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:31:47|2026-08-05T09:38:38|2026-08-05T09:38:56|18|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:37:16|2026-08-05T09:40:11|2026-08-05T10:00:30|1219|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:37:16|2026-08-05T09:43:17|2026-08-05T09:48:25|308|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:39:48|2026-08-05T09:43:17|2026-08-05T10:01:07|1070|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:43:12|2026-08-05T09:45:19|2026-08-05T09:48:25|186|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:43:13|2026-08-05T09:45:50|2026-08-05T09:52:40|410|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:48:28|2026-08-05T09:51:59|2026-08-05T09:54:27|148|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:49:16|2026-08-05T09:53:31|2026-08-05T09:54:30|59|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:53:31|2026-08-05T09:55:33|2026-08-05T10:00:27|294|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:55:18|2026-08-05T09:58:07|2026-08-05T10:12:24|857|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T09:55:20|2026-08-05T09:59:08|2026-08-05T10:12:58|830|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:01:17|2026-08-05T10:03:44|2026-08-05T10:06:30|166|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:01:26|2026-08-05T10:03:44|2026-08-05T10:05:19|95|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:01:59|2026-08-05T10:04:14|2026-08-05T10:06:30|136|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:06:10|2026-08-05T10:10:55|2026-08-05T10:12:27|92|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:07:22|2026-08-05T10:11:26|2026-08-05T10:16:24|298|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:07:24|2026-08-05T10:11:57|2026-08-05T10:15:43|226|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:12:26|2026-08-05T10:15:32|2026-08-05T10:24:26|534|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:13:19|2026-08-05T10:15:32|2026-08-05T10:18:28|176|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:13:54|2026-08-05T10:17:04|2026-08-05T10:25:03|479|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:16:25|2026-08-05T10:19:07|2026-08-05T10:24:26|319|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:16:34|2026-08-05T10:19:38|2026-08-05T10:24:26|288|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:19:19|2026-08-05T10:25:17|2026-08-05T10:30:30|313|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:24:28|2026-08-05T10:28:22|2026-08-05T10:30:30|128|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:25:16|2026-08-05T10:28:53|2026-08-05T10:30:48|115|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:25:18|2026-08-05T10:28:53|2026-08-05T10:30:30|97|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:25:57|2026-08-05T10:29:24|2026-08-05T10:30:30|66|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:30:33|2026-08-05T10:32:57|2026-08-05T10:36:32|215|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:31:20|2026-08-05T10:35:00|2026-08-05T10:42:27|447|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:31:20|2026-08-05T10:35:00|2026-08-05T10:53:58|1138|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:31:26|2026-08-05T10:37:03|2026-08-05T10:42:27|324|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:31:39|2026-08-05T10:38:04|2026-08-05T10:42:41|277|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:37:24|2026-08-05T10:40:07|2026-08-05T10:42:25|138|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:42:30|2026-08-05T10:47:56|2026-08-05T10:55:06|430|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:43:16|2026-08-05T10:47:56|2026-08-05T10:48:29|33|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:43:19|2026-08-05T10:48:27|2026-08-05T10:56:37|490|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:43:33|2026-08-05T10:49:28|2026-08-05T10:53:51|263|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:49:22|2026-08-05T10:51:31|2026-08-05T10:56:07|276|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:54:43|2026-08-05T11:11:05|2026-08-05T11:18:53|468|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:54:58|2026-08-05T11:14:08|2026-08-05T11:17:13|185|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:55:59|2026-08-05T11:14:08|2026-08-05T11:17:13|185|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:56:10|2026-08-05T11:14:39|2026-08-05T11:19:16|277|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T10:57:30|2026-08-05T11:15:10|2026-08-05T11:18:57|227|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:17:15|2026-08-05T11:20:17|2026-08-05T11:28:18|481|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:18:06|2026-08-05T11:21:18|2026-08-05T11:23:22|124|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:19:46|2026-08-05T11:22:20|2026-08-05T11:27:33|313|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:19:47|2026-08-05T11:24:23|2026-08-05T11:27:31|188|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:20:07|2026-08-05T11:25:24|2026-08-05T11:27:27|123|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:24:11|2026-08-05T11:26:26|2026-08-05T11:27:31|65|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:28:17|2026-08-05T11:31:33|2026-08-05T11:38:24|411|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:28:27|2026-08-05T11:32:34|2026-08-05T11:38:24|350|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:28:29|2026-08-05T11:33:35|2026-08-05T11:38:24|289|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:28:29|2026-08-05T11:33:35|2026-08-05T11:38:43|308|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:29:08|2026-08-05T11:33:35|2026-08-05T11:38:26|291|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:39:13|2026-08-05T11:42:18|2026-08-05T11:42:49|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:39:16|2026-08-05T11:42:18|2026-08-05T11:42:49|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:39:18|2026-08-05T11:44:22|2026-08-05T11:48:31|249|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:39:18|2026-08-05T11:44:53|2026-08-05T11:49:23|270|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:39:38|2026-08-05T11:45:56|2026-08-05T11:49:09|193|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:42:52|2026-08-05T11:45:56|2026-08-05T11:49:25|209|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:42:52|2026-08-05T11:45:56|2026-08-05T11:54:19|503|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:49:21|2026-08-05T11:51:35|2026-08-05T11:55:11|216|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:49:28|2026-08-05T11:52:06|2026-08-05T11:54:41|155|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:50:00|2026-08-05T11:52:37|2026-08-05T11:54:19|102|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:50:15|2026-08-05T11:52:37|2026-08-05T11:54:50|133|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:54:22|2026-08-05T11:56:43|2026-08-05T12:04:35|472|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:54:44|2026-08-05T11:57:14|2026-08-05T11:59:29|135|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:55:12|2026-08-05T11:58:15|2026-08-05T12:01:20|185|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:55:43|2026-08-05T11:59:17|2026-08-05T11:59:29|12|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T11:56:02|2026-08-05T12:00:49|2026-08-05T12:01:50|61|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:00:21|2026-08-05T12:02:51|2026-08-05T12:07:50|299|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:00:22|2026-08-05T12:02:51|2026-08-05T12:04:33|102|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:02:15|2026-08-05T12:04:23|2026-08-05T12:04:53|30|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:02:43|2026-08-05T12:05:24|2026-08-05T12:07:50|146|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:05:23|2026-08-05T12:09:00|2026-08-05T12:16:06|426|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:05:25|2026-08-05T12:09:00|2026-08-05T12:16:33|453|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:05:52|2026-08-05T12:09:31|2026-08-05T12:16:06|395|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:08:41|2026-08-05T12:13:08|2026-08-05T12:16:06|178|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:08:42|2026-08-05T12:14:09|2026-08-05T12:16:33|144|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:16:57|2026-08-05T12:19:14|2026-08-05T12:27:29|495|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:17:00|2026-08-05T12:19:14|2026-08-05T12:27:59|525|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:17:02|2026-08-05T12:19:45|2026-08-05T12:20:01|16|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:17:22|2026-08-05T12:19:45|2026-08-05T12:29:00|555|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:17:24|2026-08-05T12:20:16|2026-08-05T12:28:30|494|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:20:53|2026-08-05T12:23:21|2026-08-05T12:27:04|223|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:27:32|2026-08-05T12:31:05|2026-08-05T12:35:48|283|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:27:54|2026-08-05T12:32:37|2026-08-05T12:35:48|191|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:28:51|2026-08-05T12:32:37|2026-08-05T12:38:07|330|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:29:27|2026-08-05T12:34:40|2026-08-05T12:38:05|205|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:29:55|2026-08-05T12:35:11|2026-08-05T12:38:05|174|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:36:40|2026-08-05T12:39:17|2026-08-05T12:49:15|598|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:36:45|2026-08-05T12:39:17|2026-08-05T12:49:18|601|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:38:57|2026-08-05T12:41:19|2026-08-05T12:49:18|479|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:38:58|2026-08-05T12:41:50|2026-08-05T12:45:27|217|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:38:59|2026-08-05T12:42:21|2026-08-05T12:49:18|417|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:46:17|2026-08-05T12:48:33|2026-08-05T12:49:04|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:49:55|2026-08-05T12:53:10|2026-08-05T12:54:11|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:50:07|2026-08-05T12:53:41|2026-08-05T12:58:40|299|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:50:08|2026-08-05T12:53:41|2026-08-05T12:53:55|14|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:50:10|2026-08-05T12:56:45|2026-08-05T12:58:49|124|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:50:12|2026-08-05T12:57:16|2026-08-05T12:59:29|133|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:53:58|2026-08-05T12:57:47|2026-08-05T12:58:40|53|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:55:08|2026-08-05T12:57:47|2026-08-05T12:58:40|53|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:59:30|2026-08-05T13:02:24|2026-08-05T13:05:14|170|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:59:32|2026-08-05T13:02:24|2026-08-05T13:05:37|193|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:59:36|2026-08-05T13:02:24|2026-08-05T13:05:14|170|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T12:59:40|2026-08-05T13:02:55|2026-08-05T13:06:00|185|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:00:22|2026-08-05T13:03:57|2026-08-05T13:05:14|77|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:05:17|2026-08-05T13:07:32|2026-08-05T13:16:14|522|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:06:06|2026-08-05T13:08:33|2026-08-05T13:16:17|464|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:06:11|2026-08-05T13:09:34|2026-08-05T13:17:19|465|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:06:28|2026-08-05T13:09:34|2026-08-05T13:16:14|400|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:06:50|2026-08-05T13:10:05|2026-08-05T13:16:14|369|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:17:05|2026-08-05T13:19:53|2026-08-05T13:20:17|24|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:17:06|2026-08-05T13:19:53|2026-08-05T13:20:21|28|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:17:07|2026-08-05T13:26:33|2026-08-05T13:41:58|925|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:17:09|2026-08-05T13:28:37|2026-08-05T13:41:23|766|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:18:15|2026-08-05T13:28:37|2026-08-05T13:41:58|801|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:20:20|2026-08-05T13:31:42|2026-08-05T13:34:48|186|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:21:12|2026-08-05T13:32:13|2026-08-05T13:37:58|345|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:35:38|2026-08-05T13:38:24|2026-08-05T13:41:23|179|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:38:48|2026-08-05T13:46:35|2026-08-05T14:22:58|2183|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:41:25|2026-08-05T13:46:35|2026-08-05T13:48:45|130|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:42:00|2026-08-05T13:46:35|2026-08-05T13:49:30|175|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:42:16|2026-08-05T13:46:35|2026-08-05T13:49:08|153|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:42:52|2026-08-05T13:49:11|2026-08-05T13:52:57|226|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:49:34|2026-08-05T13:53:48|2026-08-05T13:56:12|144|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:49:59|2026-08-05T13:54:49|2026-08-05T14:31:54|2225|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:50:26|2026-08-05T13:55:19|2026-08-05T14:32:37|2238|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:53:00|2026-08-05T13:55:19|2026-08-05T13:56:47|88|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:56:50|2026-08-05T13:58:55|2026-08-05T14:21:35|1360|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T13:57:05|2026-08-05T13:59:26|2026-08-05T14:22:38|1392|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T14:22:26|2026-08-05T14:27:18|2026-08-05T14:45:27|1089|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T14:23:00|2026-08-05T14:27:49|2026-08-05T14:40:06|737|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T14:23:29|2026-08-05T14:28:51|2026-08-05T14:39:43|652|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T14:32:46|2026-08-05T14:39:15|2026-08-05T15:06:00|1605|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T14:33:30|2026-08-05T14:40:48|2026-08-05T14:42:52|124|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T14:40:37|2026-08-05T14:43:54|2026-08-05T15:32:41|2927|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T14:41:01|2026-08-05T14:44:25|2026-08-05T15:32:44|2899|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T14:43:44|2026-08-05T14:46:29|2026-08-05T14:51:50|321|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T14:46:17|2026-08-05T14:51:36|2026-08-05T14:51:48|12|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T14:52:37|2026-08-05T14:55:43|2026-08-05T15:06:00|617|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T14:52:42|2026-08-05T15:24:47|2026-08-05T15:27:56|189|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T15:06:52|2026-08-05T15:26:20|2026-08-05T15:27:36|76|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T15:06:53|2026-08-05T15:26:20|2026-08-05T15:32:41|381|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T15:27:58|2026-08-05T15:30:57|2026-08-05T15:32:41|104|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T15:28:25|2026-08-05T15:31:27|2026-08-05T15:32:06|39|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T15:32:43|2026-08-05T16:13:40|2026-08-05T16:52:08|2308|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T15:32:57|2026-08-05T16:13:40|2026-08-05T16:25:03|683|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T15:33:33|2026-08-05T16:13:40|2026-08-05T16:15:20|100|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T15:33:40|2026-08-05T16:14:10|2026-08-05T16:15:15|65|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T15:33:40|2026-08-05T16:14:10|2026-08-05T16:52:01|2271|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:15:16|2026-08-05T16:21:26|2026-08-05T16:24:26|180|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:16:18|2026-08-05T16:25:33|2026-08-05T16:30:26|293|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:25:06|2026-08-05T16:31:42|2026-08-05T16:34:17|155|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:25:15|2026-08-05T16:33:46|2026-08-05T16:51:55|1089|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:31:16|2026-08-05T16:35:19|2026-08-05T16:44:09|530|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:35:07|2026-08-05T16:41:29|2026-08-05T16:42:02|33|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:42:51|2026-08-05T16:46:05|2026-08-05T16:51:52|347|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:45:00|2026-08-05T16:48:39|2026-08-05T16:52:01|202|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:51:54|2026-08-05T19:45:33|2026-08-05T19:46:59|86|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:52:48|2026-08-05T19:45:33|2026-08-05T19:56:29|656|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:52:51|2026-08-05T19:46:05|2026-08-05T20:20:21|2056|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:52:51|2026-08-05T19:46:05|2026-08-05T20:25:48|2383|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T16:52:59|2026-08-05T19:46:05|2026-08-05T20:25:52|2387|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T19:47:49|2026-08-05T19:51:15|2026-08-05T20:19:57|1722|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T19:57:20|2026-08-05T19:59:29|2026-08-05T20:16:11|1002|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T20:17:00|2026-08-05T20:19:31|2026-08-05T20:19:41|10|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T20:20:32|2026-08-05T20:22:41|2026-08-05T20:24:53|132|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T20:20:49|2026-08-05T20:23:49|2026-08-05T20:24:53|64|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T20:21:19|2026-08-05T20:24:21|2026-08-05T20:25:25|64|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T20:25:46|2026-08-05T21:01:26|2026-08-05T21:02:39|73|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T20:25:51|2026-08-05T21:01:26|2026-08-05T21:02:41|75|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T20:25:51|2026-08-05T21:01:26|2026-08-05T21:02:44|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T20:26:21|2026-08-05T21:01:26|2026-08-05T21:02:44|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T20:26:46|2026-08-05T21:01:26|2026-08-05T21:02:48|82|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T21:03:28|2026-08-05T22:42:18|2026-08-05T22:43:00|42|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T21:03:34|2026-08-05T22:42:18|2026-08-05T23:09:18|1620|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T21:03:36|2026-08-05T22:42:49|2026-08-06T00:03:07|4818|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T21:03:39|2026-08-05T22:42:49|2026-08-05T23:32:33|2984|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T21:03:39|2026-08-05T22:44:55|2026-08-06T00:03:10|4695|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T22:43:56|2026-08-05T22:45:58|2026-08-05T22:48:36|158|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T22:49:28|2026-08-05T22:51:40|2026-08-05T22:55:57|257|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T22:56:47|2026-08-05T22:58:52|2026-08-05T23:08:56|604|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T23:09:47|2026-08-05T23:12:13|2026-08-05T23:19:08|415|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T23:10:09|2026-08-05T23:12:44|2026-08-05T23:33:37|1253|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T23:19:10|2026-08-05T23:25:15|2026-08-05T23:30:20|305|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T23:30:23|2026-08-05T23:33:36|2026-08-06T02:16:12|9756|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T23:33:26|2026-08-05T23:35:39|2026-08-05T23:38:39|180|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T23:34:32|2026-08-05T23:36:41|2026-08-05T23:38:39|118|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T23:39:29|2026-08-05T23:48:39|2026-08-06T00:03:10|871|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T23:39:30|2026-08-05T23:48:39|2026-08-05T23:54:20|341|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-05T23:55:11|2026-08-06T06:54:33|2026-08-06T07:16:08|1295|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T00:04:01|2026-08-06T06:56:07|2026-08-06T07:16:38|1231|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T00:04:03|2026-08-06T06:56:07|2026-08-06T06:58:57|170|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T00:04:03|2026-08-06T06:58:43|2026-08-06T06:58:59|16|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T02:17:06|2026-08-06T07:01:17|2026-08-06T10:11:18|11401|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T06:59:50|2026-08-06T07:02:50|2026-08-06T12:15:40|18770|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T06:59:57|2026-08-06T07:02:50|2026-08-06T11:14:31|15101|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T07:16:59|2026-08-06T07:20:13|2026-08-06T07:29:31|558|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T07:17:36|2026-08-06T07:20:43|2026-08-06T11:04:59|13456|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T07:30:25|2026-08-06T07:33:32|2026-08-06T07:38:15|283|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T07:39:08|2026-08-06T07:41:46|2026-08-06T11:14:08|12742|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T10:11:20|2026-08-06T10:18:08|2026-08-06T10:36:52|1124|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T10:37:47|2026-08-06T10:40:47|2026-08-06T11:23:54|2587|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T11:05:53|2026-08-06T11:09:34|2026-08-06T11:14:53|319|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T11:15:03|2026-08-06T11:17:15|2026-08-06T12:15:01|3466|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T11:15:26|2026-08-06T11:25:53|2026-08-06T11:26:54|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T11:15:46|2026-08-06T11:28:02|2026-08-06T11:52:23|1461|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T11:24:46|2026-08-06T11:28:33|2026-08-06T11:41:06|753|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T11:27:47|2026-08-06T11:31:50|2026-08-06T11:52:23|1233|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T11:42:01|2026-08-06T11:50:48|2026-08-06T11:53:37|169|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T11:53:14|2026-08-06T11:56:08|2026-08-06T12:01:34|326|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T11:53:16|2026-08-06T11:56:39|2026-08-06T12:00:57|258|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T11:54:28|2026-08-06T11:56:39|2026-08-06T12:31:28|2089|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:01:52|2026-08-06T12:06:30|2026-08-06T12:06:35|5|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:02:29|2026-08-06T12:06:30|2026-08-06T12:08:53|143|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:06:37|2026-08-06T12:09:14|2026-08-06T12:10:46|92|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:09:44|2026-08-06T12:11:52|2026-08-06T12:16:05|253|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:11:40|2026-08-06T12:16:46|2026-08-06T13:05:54|2948|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:15:54|2026-08-06T12:20:01|2026-08-06T12:32:40|759|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:16:29|2026-08-06T12:20:01|2026-08-06T13:35:56|4555|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:16:58|2026-08-06T12:26:07|2026-08-06T13:14:45|2918|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:32:21|2026-08-06T12:34:56|2026-08-06T12:34:59|3|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:32:42|2026-08-06T12:36:34|2026-08-06T12:39:34|180|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:35:52|2026-08-06T12:38:12|2026-08-06T12:39:07|55|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:39:59|2026-08-06T12:49:05|2026-08-06T13:13:45|1480|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T12:40:25|2026-08-06T12:55:03|2026-08-06T13:12:26|1043|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T13:06:46|2026-08-06T13:13:28|2026-08-06T13:14:15|47|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T13:12:29|2026-08-06T13:15:32|2026-08-06T13:35:56|1224|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T13:14:36|2026-08-06T13:18:38|2026-08-06T14:12:22|3224|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T13:15:05|2026-08-06T13:19:41|2026-08-06T17:13:10|14009|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T13:15:36|2026-08-06T13:22:47|2026-08-06T17:13:10|13823|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T13:36:48|2026-08-06T13:39:08|2026-08-06T14:11:32|1944|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T13:36:49|2026-08-06T13:40:09|2026-08-06T14:11:53|1904|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T14:12:22|2026-08-06T14:15:35|2026-08-06T14:29:04|809|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T14:12:49|2026-08-06T14:15:35|2026-08-06T14:29:24|829|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T14:13:14|2026-08-06T14:15:35|2026-08-06T14:19:24|229|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T14:19:27|2026-08-06T14:23:10|2026-08-06T14:29:02|352|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T14:29:08|2026-08-06T14:31:16|2026-08-06T14:43:41|745|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T14:29:52|2026-08-06T14:35:49|2026-08-06T14:43:41|472|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T14:30:16|2026-08-06T14:41:31|2026-08-06T14:43:41|130|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T14:43:42|2026-08-06T14:47:38|2026-08-06T14:48:13|35|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T14:44:30|2026-08-06T14:56:19|2026-08-06T15:27:57|1898|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T14:44:31|2026-08-06T14:58:30|2026-08-06T15:27:30|1740|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T14:49:12|2026-08-06T15:00:38|2026-08-06T15:00:57|19|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T15:01:47|2026-08-06T15:07:17|2026-08-06T15:28:35|1278|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T15:28:20|2026-08-06T15:31:00|2026-08-06T16:55:48|5088|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T15:28:54|2026-08-06T15:31:31|2026-08-06T16:02:29|1858|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T15:29:26|2026-08-06T15:31:31|2026-08-06T15:39:13|462|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T15:40:07|2026-08-06T15:44:45|2026-08-06T16:55:15|4230|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T16:02:31|2026-08-06T16:04:48|2026-08-06T16:13:55|547|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T16:14:46|2026-08-06T16:18:21|2026-08-06T17:10:30|3129|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T16:56:06|2026-08-06T16:58:29|2026-08-06T17:00:43|134|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T16:56:38|2026-08-06T17:00:11|2026-08-06T17:12:24|733|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T17:01:37|2026-08-06T17:04:37|2026-08-06T17:10:52|375|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T17:10:53|2026-08-06T17:14:23|2026-08-06T19:51:52|9449|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T17:11:23|2026-08-06T17:15:54|2026-08-06T17:22:15|381|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T17:13:16|2026-08-06T17:20:48|2026-08-06T19:51:49|9061|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T17:14:05|2026-08-06T17:21:38|2026-08-06T17:25:01|203|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T17:14:07|2026-08-06T17:24:24|2026-08-06T19:51:49|8845|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T17:23:08|2026-08-06T17:30:24|2026-08-06T18:25:10|3286|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T17:25:56|2026-08-06T17:30:24|2026-08-06T17:50:54|1230|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T17:51:46|2026-08-06T17:59:53|2026-08-06T19:02:27|3754|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T18:26:09|2026-08-06T18:28:19|2026-08-06T18:31:03|164|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T18:31:57|2026-08-06T18:36:35|2026-08-06T18:55:27|1132|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T18:56:21|2026-08-06T19:11:47|2026-08-06T19:51:48|2401|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T19:03:23|2026-08-06T19:12:50|2026-08-06T19:51:48|2338|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T19:51:52|2026-08-06T20:00:08|2026-08-06T20:08:00|472|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T19:52:41|2026-08-06T20:00:08|2026-08-06T20:08:00|472|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T19:52:41|2026-08-06T20:00:08|2026-08-06T20:08:03|475|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T19:52:42|2026-08-06T20:00:42|2026-08-06T20:10:52|610|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T19:52:46|2026-08-06T20:01:45|2026-08-06T20:31:21|1776|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:08:03|2026-08-06T20:10:38|2026-08-06T20:20:52|614|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:08:52|2026-08-06T20:11:09|2026-08-06T20:22:06|657|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:08:59|2026-08-06T20:11:43|2026-08-06T20:20:55|552|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:11:48|2026-08-06T20:15:02|2026-08-06T20:20:52|350|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:20:54|2026-08-06T20:23:46|2026-08-06T20:32:25|519|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:21:41|2026-08-06T20:24:50|2026-08-06T20:32:57|487|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:21:50|2026-08-06T20:25:22|2026-08-06T20:33:29|487|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:23:00|2026-08-06T20:25:22|2026-08-06T20:32:57|455|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:32:15|2026-08-06T20:34:35|2026-08-06T20:43:03|508|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:32:28|2026-08-06T20:34:35|2026-08-06T20:43:03|508|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:33:50|2026-08-06T20:36:17|2026-08-06T20:42:59|402|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:33:55|2026-08-06T20:36:17|2026-08-06T20:43:03|406|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:34:26|2026-08-06T20:37:21|2026-08-06T20:43:29|368|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:43:02|2026-08-06T20:45:35|2026-08-06T20:52:56|441|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:43:54|2026-08-06T20:46:07|2026-08-06T20:52:59|412|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:43:55|2026-08-06T20:46:38|2026-08-06T20:52:56|378|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:43:56|2026-08-06T20:46:38|2026-08-06T20:52:59|381|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:44:20|2026-08-06T20:46:38|2026-08-06T20:52:59|381|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:53:48|2026-08-06T20:58:46|2026-08-06T21:03:00|254|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:53:49|2026-08-06T20:59:17|2026-08-06T21:03:00|223|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:53:50|2026-08-06T20:59:48|2026-08-06T21:03:01|193|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:53:50|2026-08-06T21:00:20|2026-08-06T21:03:00|160|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T20:53:53|2026-08-06T21:04:05|2026-08-06T21:12:56|531|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:03:51|2026-08-06T21:06:11|2026-08-06T21:12:54|403|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:03:51|2026-08-06T21:06:11|2026-08-06T21:14:08|477|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:03:52|2026-08-06T21:07:17|2026-08-06T21:12:56|339|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:03:53|2026-08-06T21:07:17|2026-08-06T21:12:56|339|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:13:47|2026-08-06T21:17:47|2026-08-06T21:23:58|371|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:13:47|2026-08-06T21:17:47|2026-08-06T21:24:27|400|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:13:48|2026-08-06T21:17:47|2026-08-06T21:35:23|1056|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:13:50|2026-08-06T21:17:47|2026-08-06T21:23:58|371|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:15:01|2026-08-06T21:17:47|2026-08-06T21:23:58|371|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:24:01|2026-08-06T21:26:43|2026-08-06T21:27:45|62|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:24:28|2026-08-06T21:27:14|2026-08-06T21:35:23|489|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:24:49|2026-08-06T21:27:46|2026-08-06T21:35:26|460|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:24:53|2026-08-06T21:27:46|2026-08-06T21:35:23|457|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:27:48|2026-08-06T21:29:50|2026-08-06T21:35:23|333|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:35:25|2026-08-06T21:37:43|2026-08-06T21:39:17|94|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:36:14|2026-08-06T21:40:21|2026-08-06T21:43:34|193|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:36:15|2026-08-06T21:41:25|2026-08-06T21:44:07|162|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:36:17|2026-08-06T21:41:57|2026-08-06T21:43:36|99|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:36:20|2026-08-06T21:41:57|2026-08-06T21:45:44|227|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:40:14|2026-08-06T21:43:02|2026-08-06T21:44:39|97|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:44:25|2026-08-06T21:49:32|2026-08-06T21:50:49|77|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:44:28|2026-08-06T21:50:04|2026-08-06T21:50:49|45|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:45:04|2026-08-06T21:51:09|2026-08-06T21:54:25|196|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:45:30|2026-08-06T21:51:09|2026-08-06T21:55:28|259|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:46:35|2026-08-06T21:51:09|2026-08-06T22:10:32|1163|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:51:44|2026-08-06T21:53:53|2026-08-06T21:54:56|63|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:51:44|2026-08-06T21:54:25|2026-08-06T21:54:26|1|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:54:29|2026-08-06T21:58:15|2026-08-06T21:59:53|98|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:55:00|2026-08-06T21:59:24|2026-08-06T22:08:55|571|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:55:17|2026-08-06T21:59:24|2026-08-06T21:59:58|34|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T21:55:30|2026-08-06T21:59:57|2026-08-06T22:09:27|570|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:00:46|2026-08-06T22:03:18|2026-08-06T22:08:20|302|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:00:54|2026-08-06T22:03:51|2026-08-06T22:11:05|434|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:08:25|2026-08-06T22:10:33|2026-08-06T22:17:26|413|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:09:00|2026-08-06T22:12:12|2026-08-06T22:17:26|314|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:10:19|2026-08-06T22:13:17|2026-08-06T22:17:45|268|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:11:35|2026-08-06T22:13:49|2026-08-06T22:17:26|217|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:11:59|2026-08-06T22:16:04|2026-08-06T22:17:47|103|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:17:32|2026-08-06T22:22:43|2026-08-06T22:25:48|185|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:18:22|2026-08-06T22:22:43|2026-08-06T22:26:04|201|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:18:22|2026-08-06T22:22:43|2026-08-06T22:28:45|362|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:18:38|2026-08-06T22:23:17|2026-08-06T22:25:48|151|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:18:40|2026-08-06T22:24:24|2026-08-06T22:34:02|578|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:26:08|2026-08-06T22:28:13|2026-08-06T22:34:02|349|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:26:39|2026-08-06T22:29:54|2026-08-06T22:34:16|262|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:26:42|2026-08-06T22:29:54|2026-08-06T22:32:08|134|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:29:42|2026-08-06T22:32:09|2026-08-06T22:34:02|113|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:33:00|2026-08-06T22:35:23|2026-08-06T22:35:30|7|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:34:52|2026-08-06T22:37:02|2026-08-06T22:43:30|388|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:34:54|2026-08-06T22:37:02|2026-08-06T22:42:10|308|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:34:59|2026-08-06T22:37:34|2026-08-06T22:42:10|276|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:35:16|2026-08-06T22:38:07|2026-08-06T22:42:10|243|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:36:19|2026-08-06T22:40:52|2026-08-06T22:42:27|95|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:42:31|2026-08-06T22:45:37|2026-08-06T22:51:29|352|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:43:02|2026-08-06T22:45:37|2026-08-06T22:56:12|635|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:43:03|2026-08-06T22:45:37|2026-08-06T22:55:40|603|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:43:07|2026-08-06T22:45:37|2026-08-06T22:56:43|666|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:44:21|2026-08-06T22:47:14|2026-08-06T22:50:27|193|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:51:22|2026-08-06T22:53:35|2026-08-06T22:55:09|94|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:51:32|2026-08-06T22:53:35|2026-08-06T22:53:53|18|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:54:45|2026-08-06T22:57:49|2026-08-06T23:03:14|325|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:55:12|2026-08-06T22:57:49|2026-08-06T23:07:02|553|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:55:43|2026-08-06T22:57:49|2026-08-06T22:58:09|20|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:57:03|2026-08-06T22:59:25|2026-08-06T23:03:57|272|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:57:34|2026-08-06T23:00:34|2026-08-06T23:03:57|203|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T22:59:00|2026-08-06T23:01:06|2026-08-06T23:03:57|171|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:04:07|2026-08-06T23:07:04|2026-08-06T23:13:55|411|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:04:48|2026-08-06T23:07:36|2026-08-06T23:13:55|379|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:04:49|2026-08-06T23:09:11|2026-08-06T23:13:55|284|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:04:49|2026-08-06T23:09:11|2026-08-06T23:13:55|284|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:07:54|2026-08-06T23:10:45|2026-08-06T23:15:02|257|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:14:45|2026-08-06T23:17:42|2026-08-06T23:18:43|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:14:46|2026-08-06T23:17:42|2026-08-06T23:19:14|92|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:14:47|2026-08-06T23:17:42|2026-08-06T23:22:08|266|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:14:47|2026-08-06T23:17:42|2026-08-06T23:22:30|288|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:15:54|2026-08-06T23:18:44|2026-08-06T23:22:08|204|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:19:36|2026-08-06T23:21:55|2026-08-06T23:22:05|10|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:20:08|2026-08-06T23:23:00|2026-08-06T23:30:48|468|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:22:10|2026-08-06T23:24:35|2026-08-06T23:30:26|351|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:22:55|2026-08-06T23:26:45|2026-08-06T23:30:26|221|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:23:01|2026-08-06T23:26:45|2026-08-06T23:30:33|228|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:23:20|2026-08-06T23:26:45|2026-08-06T23:32:01|316|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:30:31|2026-08-06T23:33:36|2026-08-06T23:34:07|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:30:37|2026-08-06T23:35:41|2026-08-06T23:40:11|270|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:30:49|2026-08-06T23:35:41|2026-08-06T23:43:56|495|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:31:19|2026-08-06T23:35:41|2026-08-06T23:44:39|538|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:32:53|2026-08-06T23:36:13|2026-08-06T23:40:11|238|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:34:59|2026-08-06T23:37:51|2026-08-06T23:40:26|155|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:40:12|2026-08-06T23:42:31|2026-08-06T23:43:56|85|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:41:00|2026-08-06T23:43:03|2026-08-06T23:43:56|53|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:41:19|2026-08-06T23:45:10|2026-08-06T23:50:01|291|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:43:58|2026-08-06T23:47:21|2026-08-06T23:49:30|129|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:44:45|2026-08-06T23:47:53|2026-08-07T00:00:05|732|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:44:46|2026-08-06T23:48:24|2026-08-06T23:51:36|192|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:45:34|2026-08-06T23:49:29|2026-08-06T23:49:34|5|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:50:28|2026-08-06T23:52:39|2026-08-06T23:54:01|82|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:50:29|2026-08-06T23:53:43|2026-08-06T23:54:14|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:50:52|2026-08-06T23:53:59|2026-08-06T23:54:01|2|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:51:38|2026-08-06T23:53:59|2026-08-06T23:54:21|22|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:54:05|2026-08-06T23:56:19|2026-08-06T23:56:51|32|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:54:51|2026-08-06T23:58:26|2026-08-06T23:59:01|35|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:55:04|2026-08-06T23:58:26|2026-08-06T23:58:56|30|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:55:11|2026-08-07T00:00:05|2026-08-07T00:00:13|8|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:57:45|2026-08-07T00:01:08|2026-08-07T00:08:24|436|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:59:46|2026-08-07T00:02:11|2026-08-07T00:09:00|409|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-06T23:59:55|2026-08-07T00:02:11|2026-08-07T00:08:28|377|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:01:02|2026-08-07T00:03:47|2026-08-07T00:06:31|164|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:01:06|2026-08-07T00:03:47|2026-08-07T00:08:28|281|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:07:25|2026-08-07T00:09:44|2026-08-07T00:13:56|252|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:08:31|2026-08-07T00:10:39|2026-08-07T00:13:56|197|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:09:15|2026-08-07T00:11:24|2026-08-07T00:11:59|35|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:09:21|2026-08-07T00:12:31|2026-08-07T00:15:11|160|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:09:54|2026-08-07T00:12:43|2026-08-07T00:14:31|108|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:12:49|2026-08-07T00:15:12|2026-08-07T00:18:22|190|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:13:59|2026-08-07T00:16:46|2026-08-07T00:18:26|100|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:14:46|2026-08-07T00:17:18|2026-08-07T00:18:26|68|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:15:22|2026-08-07T00:18:21|2026-08-07T00:18:52|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:16:06|2026-08-07T00:19:24|2026-08-07T00:19:42|18|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:18:54|2026-08-07T00:20:58|2026-08-07T00:23:57|179|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:19:13|2026-08-07T00:21:29|2026-08-07T00:29:09|460|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:19:16|2026-08-07T00:21:29|2026-08-07T00:29:09|460|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:19:19|2026-08-07T00:21:29|2026-08-07T00:29:09|460|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:20:31|2026-08-07T00:23:47|2026-08-07T00:23:57|10|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:24:47|2026-08-07T00:29:09|2026-08-07T00:33:57|288|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:24:52|2026-08-07T00:29:40|2026-08-07T00:33:57|257|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:29:12|2026-08-07T00:31:16|2026-08-07T00:34:22|186|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:29:13|2026-08-07T00:31:16|2026-08-07T00:33:55|159|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:29:13|2026-08-07T00:33:31|2026-08-07T00:34:22|51|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:34:00|2026-08-07T00:36:11|2026-08-07T00:37:29|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:34:48|2026-08-07T00:37:17|2026-08-07T00:37:29|12|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:34:53|2026-08-07T00:37:17|2026-08-07T00:38:03|46|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:35:11|2026-08-07T00:37:17|2026-08-07T00:44:26|429|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:35:13|2026-08-07T00:38:57|2026-08-07T00:44:23|326|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:38:06|2026-08-07T00:40:33|2026-08-07T00:44:26|233|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:38:27|2026-08-07T00:41:36|2026-08-07T00:42:41|65|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:38:27|2026-08-07T00:41:36|2026-08-07T00:44:54|198|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:43:33|2026-08-07T00:45:58|2026-08-07T00:46:50|52|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:45:17|2026-08-07T00:48:07|2026-08-07T00:56:29|502|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:45:18|2026-08-07T00:48:39|2026-08-07T00:54:02|323|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:45:24|2026-08-07T00:49:10|2026-08-07T00:57:06|476|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:45:46|2026-08-07T00:49:42|2026-08-07T00:55:26|344|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:47:41|2026-08-07T00:50:45|2026-08-07T00:54:24|219|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:54:52|2026-08-07T00:57:07|2026-08-07T00:57:13|6|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:55:15|2026-08-07T00:58:09|2026-08-07T01:03:59|350|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:56:24|2026-08-07T00:59:11|2026-08-07T01:04:02|291|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:57:27|2026-08-07T00:59:43|2026-08-07T01:04:02|259|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:58:00|2026-08-07T01:00:46|2026-08-07T01:26:12|1526|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T00:58:04|2026-08-07T01:00:46|2026-08-07T01:04:30|224|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:04:51|2026-08-07T01:07:09|2026-08-07T01:13:03|354|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:04:54|2026-08-07T01:07:41|2026-08-07T01:14:37|416|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:04:58|2026-08-07T01:09:19|2026-08-07T01:15:00|341|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:05:26|2026-08-07T01:09:19|2026-08-07T01:14:22|303|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:13:53|2026-08-07T01:16:11|2026-08-07T01:24:19|488|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:14:25|2026-08-07T01:16:43|2026-08-07T01:24:19|456|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:15:31|2026-08-07T01:17:46|2026-08-07T01:24:38|412|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:15:50|2026-08-07T01:18:17|2026-08-07T01:25:41|444|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:24:41|2026-08-07T01:30:54|2026-08-07T01:43:39|765|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:25:08|2026-08-07T01:31:26|2026-08-07T01:43:35|729|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:25:12|2026-08-07T01:31:26|2026-08-07T01:43:42|736|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:26:31|2026-08-07T01:34:06|2026-08-07T01:43:05|539|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:27:04|2026-08-07T01:34:37|2026-08-07T01:43:42|545|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:43:38|2026-08-07T01:45:41|2026-08-07T01:47:13|92|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:43:55|2026-08-07T01:46:42|2026-08-07T02:19:36|1974|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:44:29|2026-08-07T01:47:14|2026-08-07T02:02:31|917|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:44:34|2026-08-07T01:48:48|2026-08-07T01:53:01|253|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:44:35|2026-08-07T01:49:21|2026-08-07T01:53:04|223|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:48:04|2026-08-07T01:50:23|2026-08-07T02:08:13|1070|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:53:04|2026-08-07T01:55:07|2026-08-07T02:02:34|447|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T01:53:55|2026-08-07T01:56:41|2026-08-07T02:02:31|350|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:02:33|2026-08-07T02:08:44|2026-08-07T02:09:46|62|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:03:24|2026-08-07T02:08:44|2026-08-07T02:10:08|84|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:03:31|2026-08-07T02:10:49|2026-08-07T02:14:05|196|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:09:05|2026-08-07T02:11:20|2026-08-07T02:14:26|186|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:10:37|2026-08-07T02:13:24|2026-08-07T02:15:28|124|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:11:02|2026-08-07T02:13:24|2026-08-07T02:20:07|403|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:14:56|2026-08-07T02:17:33|2026-08-07T02:17:39|6|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:15:19|2026-08-07T02:17:33|2026-08-07T02:17:37|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:16:17|2026-08-07T02:18:35|2026-08-07T02:19:09|34|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:18:30|2026-08-07T02:20:38|2026-08-07T02:22:24|106|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:18:30|2026-08-07T02:20:38|2026-08-07T02:26:30|352|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:19:59|2026-08-07T02:22:12|2026-08-07T02:22:42|30|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:20:28|2026-08-07T02:23:14|2026-08-07T02:26:30|196|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:21:03|2026-08-07T02:23:45|2026-08-07T02:26:30|165|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:22:27|2026-08-07T02:25:21|2026-08-07T02:29:30|249|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:23:40|2026-08-07T02:25:54|2026-08-07T02:26:30|36|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:27:20|2026-08-07T02:29:31|2026-08-07T02:33:53|262|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:27:23|2026-08-07T02:31:36|2026-08-07T02:33:53|137|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:27:23|2026-08-07T02:32:38|2026-08-07T02:54:02|1284|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:27:25|2026-08-07T02:33:41|2026-08-07T02:33:53|12|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:30:21|2026-08-07T02:35:15|2026-08-07T02:35:49|34|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:34:44|2026-08-07T02:36:49|2026-08-07T02:52:59|970|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:34:45|2026-08-07T02:36:49|2026-08-07T02:52:57|968|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:34:46|2026-08-07T02:36:49|2026-08-07T02:44:06|437|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:36:40|2026-08-07T02:39:25|2026-08-07T02:44:06|281|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:44:08|2026-08-07T02:48:18|2026-08-07T02:52:57|279|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:44:57|2026-08-07T02:48:49|2026-08-07T02:52:57|248|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:53:48|2026-08-07T02:56:07|2026-08-07T02:57:22|75|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:53:51|2026-08-07T02:58:44|2026-08-07T03:00:58|134|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:53:53|2026-08-07T02:59:15|2026-08-07T03:00:58|103|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:53:53|2026-08-07T02:59:15|2026-08-07T03:01:22|127|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:54:56|2026-08-07T02:59:48|2026-08-07T03:00:58|70|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T02:58:20|2026-08-07T03:00:50|2026-08-07T03:12:53|723|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:01:00|2026-08-07T03:03:28|2026-08-07T03:04:33|65|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:01:49|2026-08-07T03:03:59|2026-08-07T03:19:37|938|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:01:53|2026-08-07T03:05:34|2026-08-07T03:13:24|470|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:02:15|2026-08-07T03:05:34|2026-08-07T03:20:40|906|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:05:26|2026-08-07T03:09:13|2026-08-07T03:12:31|198|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:12:56|2026-08-07T03:14:58|2026-08-07T03:16:31|93|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:13:25|2026-08-07T03:15:29|2026-08-07T03:16:55|86|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:13:27|2026-08-07T03:16:00|2026-08-07T03:18:04|124|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:17:20|2026-08-07T03:21:11|2026-08-07T03:22:02|51|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:17:48|2026-08-07T03:22:14|2026-08-07T03:31:06|532|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:18:59|2026-08-07T03:23:48|2026-08-07T03:23:52|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:20:31|2026-08-07T03:23:48|2026-08-07T03:23:52|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:21:44|2026-08-07T03:24:51|2026-08-07T03:37:17|746|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:22:54|2026-08-07T03:25:23|2026-08-07T03:27:33|130|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:24:45|2026-08-07T03:27:28|2026-08-07T03:35:25|477|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:24:46|2026-08-07T03:27:28|2026-08-07T03:31:04|216|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:28:29|2026-08-07T03:30:35|2026-08-07T03:31:04|29|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:31:07|2026-08-07T03:33:10|2026-08-07T03:36:46|216|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:31:53|2026-08-07T03:34:12|2026-08-07T03:35:25|73|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:31:58|2026-08-07T03:34:43|2026-08-07T03:35:25|42|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:36:18|2026-08-07T03:38:51|2026-08-07T03:39:55|64|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:36:18|2026-08-07T03:39:22|2026-08-07T03:39:55|33|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:36:20|2026-08-07T03:39:22|2026-08-07T03:40:20|58|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:37:39|2026-08-07T03:39:53|2026-08-07T03:43:32|219|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:38:12|2026-08-07T03:40:55|2026-08-07T03:43:45|170|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:39:57|2026-08-07T03:42:21|2026-08-07T03:43:45|84|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:40:52|2026-08-07T03:45:05|2026-08-07T03:47:09|124|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:41:15|2026-08-07T03:45:05|2026-08-07T03:47:55|170|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:44:21|2026-08-07T03:46:39|2026-08-07T03:47:09|30|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:44:36|2026-08-07T03:46:39|2026-08-07T04:06:23|1184|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:44:41|2026-08-07T03:48:13|2026-08-07T03:50:38|145|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:47:12|2026-08-07T03:49:15|2026-08-07T03:54:27|312|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:47:59|2026-08-07T03:51:20|2026-08-07T03:52:32|72|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:48:49|2026-08-07T03:51:20|2026-08-07T04:04:25|785|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:51:29|2026-08-07T03:53:56|2026-08-07T03:58:38|282|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:53:24|2026-08-07T03:59:10|2026-08-07T04:02:55|225|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:55:26|2026-08-07T03:59:41|2026-08-07T04:02:55|194|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T03:59:32|2026-08-07T04:01:46|2026-08-07T04:02:55|69|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:03:41|2026-08-07T04:06:32|2026-08-07T04:07:22|50|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:03:48|2026-08-07T04:07:03|2026-08-07T04:07:22|19|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:03:49|2026-08-07T04:07:34|2026-08-07T04:15:09|455|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:04:27|2026-08-07T04:08:37|2026-08-07T04:20:27|710|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:07:25|2026-08-07T04:12:50|2026-08-07T04:22:41|591|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:08:17|2026-08-07T04:13:53|2026-08-07T04:20:27|394|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:08:18|2026-08-07T04:13:53|2026-08-07T04:20:27|394|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:16:05|2026-08-07T04:19:38|2026-08-07T04:20:27|49|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:21:17|2026-08-07T04:23:49|2026-08-07T04:29:22|333|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:21:17|2026-08-07T04:24:20|2026-08-07T04:29:22|302|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:21:24|2026-08-07T04:24:20|2026-08-07T04:29:22|302|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:21:25|2026-08-07T04:24:51|2026-08-07T04:37:41|770|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:23:36|2026-08-07T04:25:53|2026-08-07T04:29:22|209|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:29:25|2026-08-07T04:31:42|2026-08-07T04:37:39|357|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:30:12|2026-08-07T04:32:44|2026-08-07T04:37:39|295|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:30:12|2026-08-07T04:33:16|2026-08-07T04:37:41|265|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:30:17|2026-08-07T04:33:46|2026-08-07T04:37:41|235|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:38:32|2026-08-07T04:41:07|2026-08-07T04:53:20|733|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:38:33|2026-08-07T04:41:38|2026-08-07T04:44:59|201|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:38:34|2026-08-07T04:42:09|2026-08-07T04:44:59|170|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:38:35|2026-08-07T04:43:43|2026-08-07T04:44:59|76|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:38:36|2026-08-07T04:43:43|2026-08-07T04:45:28|105|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:45:01|2026-08-07T04:47:21|2026-08-07T04:53:20|359|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:45:30|2026-08-07T04:50:00|2026-08-07T04:53:20|200|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:45:47|2026-08-07T04:50:00|2026-08-07T04:53:20|200|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:45:51|2026-08-07T04:54:18|2026-08-07T05:00:37|379|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:54:11|2026-08-07T04:56:53|2026-08-07T05:00:35|222|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:54:12|2026-08-07T04:56:53|2026-08-07T05:00:37|224|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:54:14|2026-08-07T04:57:26|2026-08-07T05:00:37|191|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T04:54:15|2026-08-07T04:57:26|2026-08-07T05:00:37|191|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:01:28|2026-08-07T05:03:44|2026-08-07T05:13:48|604|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:01:28|2026-08-07T05:04:16|2026-08-07T05:13:48|572|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:01:29|2026-08-07T05:05:18|2026-08-07T05:14:28|550|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:01:32|2026-08-07T05:05:18|2026-08-07T05:13:50|512|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:01:33|2026-08-07T05:06:22|2026-08-07T05:13:50|448|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:14:38|2026-08-07T05:16:55|2026-08-07T05:26:40|585|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:14:38|2026-08-07T05:16:55|2026-08-07T05:26:40|585|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:14:45|2026-08-07T05:19:02|2026-08-07T05:26:40|458|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:14:49|2026-08-07T05:21:42|2026-08-07T05:26:40|298|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:15:16|2026-08-07T05:22:13|2026-08-07T05:26:40|267|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:27:30|2026-08-07T05:30:34|2026-08-07T08:57:33|12419|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:27:32|2026-08-07T05:31:06|2026-08-07T05:43:02|716|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:27:33|2026-08-07T05:32:08|2026-08-07T08:01:52|8984|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:27:36|2026-08-07T05:33:09|2026-08-07T05:58:03|1494|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:27:36|2026-08-07T05:33:40|2026-08-07T05:58:30|1490|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:43:51|2026-08-07T05:48:15|2026-08-07T05:55:49|454|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:56:45|2026-08-07T05:59:08|2026-08-07T08:45:21|9973|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:58:31|2026-08-07T06:06:58|2026-08-07T06:17:04|606|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T05:58:53|2026-08-07T06:06:58|2026-08-07T06:17:04|606|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T06:17:05|2026-08-07T06:22:34|2026-08-07T06:37:27|893|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T06:17:56|2026-08-07T06:22:34|2026-08-07T06:37:27|893|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T06:37:29|2026-08-07T06:45:59|2026-08-07T08:57:09|7870|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T06:37:29|2026-08-07T06:56:22|2026-08-07T07:40:31|2649|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T07:41:21|2026-08-07T07:45:18|2026-08-07T13:26:55|20497|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T08:02:41|2026-08-07T08:05:32|2026-08-07T08:18:00|748|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745363|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|FAILED|2026-08-07T08:18:55|2026-08-07T08:38:30|2026-08-07T13:01:27|15777|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T08:46:13|2026-08-07T08:50:04|2026-08-07T09:17:48|1664|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T08:58:10|2026-08-07T09:08:51|2026-08-07T09:16:33|462|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T08:58:37|2026-08-07T09:08:51|2026-08-07T10:03:15|3264|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T09:16:35|2026-08-07T09:18:45|2026-08-07T09:40:12|1287|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T09:18:37|2026-08-07T09:21:51|2026-08-07T10:03:15|2484|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T09:40:14|2026-08-07T09:44:48|2026-08-07T09:53:22|514|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T09:53:25|2026-08-07T09:58:35|2026-08-07T10:38:06|2371|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T10:04:05|2026-08-07T10:06:07|2026-08-07T17:02:53|25006|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T10:04:10|2026-08-07T10:09:22|2026-08-07T10:09:45|23|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T10:10:38|2026-08-07T10:14:50|2026-08-07T10:15:04|14|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T10:15:55|2026-08-07T10:21:25|2026-08-07T10:25:37|252|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T10:26:27|2026-08-07T10:31:05|2026-08-07T10:31:10|5|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T10:32:00|2026-08-07T10:34:43|2026-08-07T10:44:51|608|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T10:38:08|2026-08-07T10:42:29|2026-08-07T10:44:02|93|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T10:44:59|2026-08-07T10:47:40|2026-08-07T12:48:13|7233|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T10:45:47|2026-08-07T10:48:43|2026-08-07T10:53:34|291|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T10:54:24|2026-08-07T10:56:29|2026-08-07T13:20:31|8642|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T12:48:16|2026-08-07T12:53:37|2026-08-07T13:00:59|442|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T13:01:51|2026-08-07T13:06:35|2026-08-07T13:20:31|836|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T13:20:33|2026-08-07T13:23:12|2026-08-07T13:25:25|133|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T13:21:27|2026-08-07T13:23:43|2026-08-07T13:24:52|69|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T13:25:43|2026-08-07T13:30:27|2026-08-07T13:32:00|93|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T13:26:15|2026-08-07T13:30:27|2026-08-07T14:33:33|3786|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T13:27:48|2026-08-07T13:30:27|2026-08-07T16:15:30|9903|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T13:32:52|2026-08-07T13:45:29|2026-08-07T14:33:08|2859|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T14:33:58|2026-08-07T14:51:33|2026-08-07T15:35:19|2626|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T14:34:23|2026-08-07T14:56:13|2026-08-07T15:44:46|2913|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T15:36:11|2026-08-07T16:04:52|2026-08-07T16:42:34|2262|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T15:45:37|2026-08-07T16:06:57|2026-08-07T16:15:07|490|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T16:16:02|2026-08-07T16:18:20|2026-08-07T16:48:18|1798|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T16:16:28|2026-08-07T16:18:51|2026-08-07T17:01:38|2567|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T16:43:26|2026-08-07T16:47:48|2026-08-07T16:57:50|602|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T16:49:09|2026-08-07T16:52:35|2026-08-07T17:02:31|596|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T16:58:42|2026-08-07T17:03:03|2026-08-07T17:09:46|403|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:02:31|2026-08-07T17:04:35|2026-08-07T17:28:18|1423|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:03:22|2026-08-07T17:05:38|2026-08-07T17:27:51|1333|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:03:42|2026-08-07T17:14:34|2026-08-07T17:34:01|1167|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:10:41|2026-08-07T17:19:48|2026-08-07T17:27:31|463|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:28:22|2026-08-07T17:30:31|2026-08-07T17:41:14|643|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:28:42|2026-08-07T17:32:07|2026-08-07T17:41:43|576|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:29:12|2026-08-07T17:35:18|2026-08-07T17:39:19|241|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:34:55|2026-08-07T17:42:43|2026-08-07T17:47:31|288|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:40:12|2026-08-07T17:43:14|2026-08-07T17:59:02|948|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:42:05|2026-08-07T17:46:59|2026-08-07T17:47:09|10|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:42:35|2026-08-07T17:46:59|2026-08-07T17:49:37|158|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:47:59|2026-08-07T17:51:12|2026-08-07T18:23:12|1920|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:48:25|2026-08-07T17:51:43|2026-08-07T18:05:21|818|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:50:31|2026-08-07T17:52:46|2026-08-07T18:04:47|721|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T17:59:52|2026-08-07T18:03:44|2026-08-07T18:24:15|1231|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T18:05:39|2026-08-07T18:18:29|2026-08-07T18:26:19|470|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T18:06:15|2026-08-07T18:20:03|2026-08-07T18:25:18|315|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T18:24:04|2026-08-07T18:26:19|2026-08-07T22:04:28|13089|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T18:25:09|2026-08-07T18:28:25|2026-08-07T18:28:48|23|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T18:26:12|2026-08-07T18:28:56|2026-08-07T18:30:55|119|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T18:27:10|2026-08-07T18:29:28|2026-08-07T18:29:36|8|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T18:29:41|2026-08-07T18:32:05|2026-08-07T18:54:22|1337|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T18:30:29|2026-08-07T18:33:40|2026-08-07T18:34:18|38|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T18:31:44|2026-08-07T18:35:13|2026-08-07T18:39:03|230|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T18:35:08|2026-08-07T18:39:22|2026-08-07T22:27:53|13711|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T18:39:55|2026-08-07T18:42:28|2026-08-07T19:01:21|1133|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T18:55:12|2026-08-07T19:00:23|2026-08-07T19:00:53|30|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T19:01:44|2026-08-07T19:04:00|2026-08-07T22:43:35|13175|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T19:02:11|2026-08-07T19:07:40|2026-08-07T19:33:15|1535|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T19:34:10|2026-08-07T19:46:13|2026-08-07T21:01:42|4529|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T21:02:33|2026-08-07T21:06:24|2026-08-07T22:43:35|5831|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T22:04:31|2026-08-07T22:08:03|2026-08-07T22:08:14|11|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T22:09:07|2026-08-07T22:13:16|2026-08-07T22:33:51|1235|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T22:27:57|2026-08-07T22:31:04|2026-08-07T22:33:56|172|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T22:34:45|2026-08-07T22:44:40|2026-08-07T23:02:58|1098|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T22:34:50|2026-08-07T22:44:40|2026-08-07T23:22:26|2266|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T22:44:25|2026-08-07T22:52:05|2026-08-07T23:08:28|983|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T22:44:30|2026-08-07T22:56:21|2026-08-07T23:22:26|1565|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T23:03:54|2026-08-07T23:06:33|2026-08-07T23:22:26|953|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T23:09:25|2026-08-08T00:49:16|2026-08-08T00:49:42|26|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T23:23:15|2026-08-08T00:50:50|2026-08-08T00:54:27|217|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T23:23:18|2026-08-08T01:02:25|2026-08-08T01:08:05|340|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-07T23:23:19|2026-08-08T01:35:54|2026-08-08T01:41:09|315|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T00:50:39|2026-08-08T01:35:54|2026-08-08T02:24:18|2904|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T00:55:21|2026-08-08T01:35:54|2026-08-08T01:41:09|315|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T01:09:01|2026-08-08T01:36:27|2026-08-08T02:06:12|1785|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T01:41:58|2026-08-08T01:44:16|2026-08-08T01:49:31|315|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-08T01:41:59|2026-08-08T01:44:16|2026-08-08T09:45:03|28847|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-08T01:50:23|2026-08-08T01:53:12|2026-08-08T10:00:02|29210|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T02:07:03|2026-08-08T02:10:50|2026-08-08T02:15:59|309|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T02:16:51|2026-08-08T02:19:06|2026-08-08T02:33:52|886|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T02:25:09|2026-08-08T02:27:25|2026-08-08T04:30:31|7386|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T02:34:45|2026-08-08T02:37:13|2026-08-08T02:40:19|186|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T02:41:11|2026-08-08T02:43:26|2026-08-08T04:30:56|6450|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T04:31:27|2026-08-08T04:37:56|2026-08-08T11:01:01|22985|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T04:31:48|2026-08-08T04:45:39|2026-08-08T11:01:01|22522|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-08T06:30:23|2026-08-08T06:30:43|2026-08-08T14:45:01|29658|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38304087|yolo_curb_ramp_train|klone|gpu-l40s|normal|RUNNING|2026-08-08T06:43:39|2026-08-12T17:03:05|Unknown|567001|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T09:46:03|2026-08-08T09:51:58|2026-08-08T10:16:09|1451|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T10:00:56|2026-08-08T10:03:48|2026-08-08T11:01:01|3433|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T10:17:04|2026-08-08T10:20:11|2026-08-08T10:23:16|185|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T10:24:06|2026-08-08T10:27:51|2026-08-08T10:28:22|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T10:29:13|2026-08-08T10:35:33|2026-08-08T11:01:01|1528|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:01:56|2026-08-08T11:04:12|2026-08-08T11:19:50|938|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:01:58|2026-08-08T11:04:12|2026-08-08T11:19:06|894|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:01:59|2026-08-08T11:04:12|2026-08-08T11:19:32|920|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:02:00|2026-08-08T11:04:12|2026-08-08T11:19:02|890|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:19:08|2026-08-08T11:22:05|2026-08-08T11:22:58|53|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:19:55|2026-08-08T11:22:05|2026-08-08T11:23:19|74|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:20:22|2026-08-08T11:22:35|2026-08-08T11:22:58|23|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:20:45|2026-08-08T11:23:06|2026-08-08T11:23:22|16|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:23:47|2026-08-08T11:27:45|2026-08-08T11:34:03|378|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:23:50|2026-08-08T11:27:45|2026-08-08T11:28:05|20|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:24:08|2026-08-08T11:28:47|2026-08-08T11:34:03|316|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:24:13|2026-08-08T11:29:18|2026-08-08T11:29:31|13|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:28:07|2026-08-08T11:30:51|2026-08-08T11:34:00|189|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:30:28|2026-08-08T11:32:55|2026-08-08T11:34:00|65|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:34:02|2026-08-08T11:36:30|2026-08-08T11:38:53|143|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:34:54|2026-08-08T11:37:02|2026-08-08T11:37:06|4|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:34:57|2026-08-08T11:38:05|2026-08-08T11:39:14|69|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:34:58|2026-08-08T11:38:05|2026-08-08T11:38:53|48|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:38:00|2026-08-08T11:40:38|2026-08-08T11:52:23|705|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:39:43|2026-08-08T11:44:44|2026-08-08T11:46:11|87|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:39:47|2026-08-08T11:44:44|2026-08-08T11:45:39|55|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:40:04|2026-08-08T11:45:15|2026-08-08T11:49:14|239|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:46:28|2026-08-08T11:49:54|2026-08-08T11:50:03|9|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:47:03|2026-08-08T11:50:25|2026-08-08T11:52:23|118|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:50:04|2026-08-08T11:53:33|2026-08-08T11:54:10|37|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:51:00|2026-08-08T11:53:33|2026-08-08T11:54:57|84|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:53:15|2026-08-08T11:55:38|2026-08-08T11:55:45|7|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:53:19|2026-08-08T11:56:09|2026-08-08T11:59:06|177|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:55:02|2026-08-08T11:57:43|2026-08-08T11:58:35|52|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:55:55|2026-08-08T11:58:14|2026-08-08T11:58:35|21|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:56:39|2026-08-08T11:59:48|2026-08-08T11:59:51|3|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:59:24|2026-08-08T12:01:54|2026-08-08T12:01:56|2|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T11:59:29|2026-08-08T12:02:25|2026-08-08T12:10:29|484|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:00:04|2026-08-08T12:02:55|2026-08-08T12:13:54|659|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:00:41|2026-08-08T12:03:26|2026-08-08T12:05:36|130|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:02:44|2026-08-08T12:04:58|2026-08-08T12:05:14|16|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:06:08|2026-08-08T12:08:34|2026-08-08T12:09:06|32|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:06:25|2026-08-08T12:08:34|2026-08-08T12:13:51|317|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:09:59|2026-08-08T12:12:39|2026-08-08T12:13:51|72|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:11:22|2026-08-08T12:13:40|2026-08-08T12:13:51|11|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:14:40|2026-08-08T12:18:16|2026-08-08T12:18:54|38|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:14:40|2026-08-08T12:18:16|2026-08-08T12:20:01|105|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:14:42|2026-08-08T12:18:47|2026-08-08T12:19:35|48|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:14:42|2026-08-08T12:19:48|2026-08-08T12:20:01|13|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:19:43|2026-08-08T12:22:21|2026-08-08T12:23:25|64|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:20:32|2026-08-08T12:23:22|2026-08-08T12:23:25|3|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:20:50|2026-08-08T12:24:24|2026-08-08T12:28:49|265|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:20:52|2026-08-08T12:24:24|2026-08-08T12:25:10|46|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:24:16|2026-08-08T12:26:26|2026-08-08T12:32:27|361|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:24:22|2026-08-08T12:26:57|2026-08-08T12:35:15|498|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:26:01|2026-08-08T12:30:32|2026-08-08T12:35:15|283|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:29:40|2026-08-08T12:33:37|2026-08-08T12:35:15|98|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:33:20|2026-08-08T12:36:12|2026-08-08T12:37:28|76|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:36:06|2026-08-08T12:38:15|2026-08-08T12:38:39|24|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:36:07|2026-08-08T12:38:46|2026-08-08T12:38:54|8|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:36:07|2026-08-08T12:38:46|2026-08-08T12:39:18|32|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:38:17|2026-08-08T12:40:18|2026-08-08T12:41:29|71|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:39:30|2026-08-08T12:41:51|2026-08-08T12:47:37|346|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:39:44|2026-08-08T12:42:21|2026-08-08T12:42:30|9|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:40:15|2026-08-08T12:42:21|2026-08-08T12:43:59|98|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:42:20|2026-08-08T12:45:58|2026-08-08T12:46:02|4|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:42:32|2026-08-08T12:45:58|2026-08-08T12:47:11|73|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:44:50|2026-08-08T12:46:59|2026-08-08T12:47:57|58|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:46:56|2026-08-08T12:49:02|2026-08-08T12:50:04|62|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:48:01|2026-08-08T12:50:04|2026-08-08T12:50:48|44|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:48:30|2026-08-08T12:51:06|2026-08-08T12:54:25|199|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:48:48|2026-08-08T12:52:07|2026-08-08T12:53:43|96|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:51:03|2026-08-08T12:53:09|2026-08-08T12:53:43|34|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:51:46|2026-08-08T12:55:43|2026-08-08T12:56:48|65|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:54:35|2026-08-08T12:57:15|2026-08-08T12:58:30|75|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:54:40|2026-08-08T12:57:46|2026-08-08T13:00:26|160|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:55:20|2026-08-08T12:58:16|2026-08-08T13:02:42|266|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:57:37|2026-08-08T12:59:48|2026-08-08T13:00:47|59|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T12:59:19|2026-08-08T13:01:21|2026-08-08T13:03:22|121|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:01:15|2026-08-08T13:04:25|2026-08-08T13:05:29|64|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:01:38|2026-08-08T13:04:25|2026-08-08T13:05:29|64|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:02:44|2026-08-08T13:04:56|2026-08-08T13:05:53|57|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:04:13|2026-08-08T13:07:30|2026-08-08T13:07:47|17|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:06:18|2026-08-08T13:09:03|2026-08-08T13:10:28|85|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:06:20|2026-08-08T13:09:34|2026-08-08T13:13:19|225|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:06:48|2026-08-08T13:10:06|2026-08-08T13:13:28|202|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:08:43|2026-08-08T13:12:41|2026-08-08T13:14:40|119|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:11:20|2026-08-08T13:13:43|2026-08-08T13:14:14|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:14:09|2026-08-08T13:16:17|2026-08-08T13:18:24|127|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:14:23|2026-08-08T13:16:47|2026-08-08T13:20:46|239|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:15:08|2026-08-08T13:17:50|2026-08-08T13:18:00|10|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:15:30|2026-08-08T13:18:21|2026-08-08T13:19:17|56|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:18:54|2026-08-08T13:20:57|2026-08-08T13:21:33|36|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:19:13|2026-08-08T13:21:29|2026-08-08T13:21:33|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:20:18|2026-08-08T13:22:32|2026-08-08T13:25:36|184|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:21:42|2026-08-08T13:24:36|2026-08-08T13:30:11|335|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:22:25|2026-08-08T13:24:36|2026-08-08T13:25:32|56|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:22:27|2026-08-08T13:25:08|2026-08-08T13:25:32|24|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:26:21|2026-08-08T13:29:49|2026-08-08T13:30:01|12|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:26:29|2026-08-08T13:30:52|2026-08-08T13:31:27|35|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:26:29|2026-08-08T13:31:22|2026-08-08T13:33:14|112|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:30:55|2026-08-08T13:32:57|2026-08-08T13:33:28|31|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:31:03|2026-08-08T13:34:29|2026-08-08T13:35:11|42|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:32:26|2026-08-08T13:35:01|2026-08-08T13:37:04|123|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:34:04|2026-08-08T13:36:33|2026-08-08T13:37:29|56|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:34:19|2026-08-08T13:38:07|2026-08-08T13:39:29|82|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:36:00|2026-08-08T13:38:39|2026-08-08T13:43:55|316|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:37:08|2026-08-08T13:39:11|2026-08-08T13:39:46|35|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:38:20|2026-08-08T13:40:45|2026-08-08T13:41:11|26|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:40:26|2026-08-08T13:42:50|2026-08-08T13:43:27|37|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:40:42|2026-08-08T13:43:21|2026-08-08T13:43:27|6|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:42:00|2026-08-08T13:44:54|2026-08-08T13:47:17|143|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:44:21|2026-08-08T13:49:04|2026-08-08T13:49:45|41|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:44:24|2026-08-08T13:49:35|2026-08-08T13:50:50|75|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:44:47|2026-08-08T13:49:35|2026-08-08T13:51:07|92|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:48:07|2026-08-08T13:50:39|2026-08-08T13:50:50|11|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:50:34|2026-08-08T13:52:42|2026-08-08T13:53:40|58|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:51:38|2026-08-08T13:54:17|2026-08-08T13:58:22|245|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:51:39|2026-08-08T13:54:17|2026-08-08T13:56:10|113|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:51:59|2026-08-08T13:54:17|2026-08-08T13:56:31|134|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:54:37|2026-08-08T13:56:54|2026-08-08T13:58:06|72|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:57:05|2026-08-08T13:59:32|2026-08-08T14:00:20|48|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:57:28|2026-08-08T13:59:32|2026-08-08T14:00:05|33|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:58:56|2026-08-08T14:01:05|2026-08-08T14:02:39|94|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T13:59:16|2026-08-08T14:01:36|2026-08-08T14:01:49|13|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:00:54|2026-08-08T14:03:09|2026-08-08T14:03:14|5|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:01:09|2026-08-08T14:03:40|2026-08-08T14:04:19|39|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:02:41|2026-08-08T14:05:13|2026-08-08T14:05:27|14|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:03:31|2026-08-08T14:06:15|2026-08-08T14:06:44|29|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:04:05|2026-08-08T14:06:15|2026-08-08T14:07:18|63|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:05:10|2026-08-08T14:07:49|2026-08-08T14:13:30|341|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:06:22|2026-08-08T14:10:26|2026-08-08T14:11:29|63|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:07:43|2026-08-08T14:12:00|2026-08-08T14:13:16|76|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:08:10|2026-08-08T14:12:31|2026-08-08T14:13:42|71|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:12:27|2026-08-08T14:14:36|2026-08-08T14:15:29|53|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:14:08|2026-08-08T14:17:13|2026-08-08T14:19:32|139|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:14:22|2026-08-08T14:17:13|2026-08-08T14:21:43|270|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:14:34|2026-08-08T14:17:13|2026-08-08T14:21:30|257|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:16:21|2026-08-08T14:19:18|2026-08-08T14:19:32|14|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:19:35|2026-08-08T14:22:57|2026-08-08T14:27:49|292|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:20:27|2026-08-08T14:22:57|2026-08-08T14:24:35|98|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:22:26|2026-08-08T14:24:31|2026-08-08T14:24:35|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:22:35|2026-08-08T14:25:03|2026-08-08T14:29:50|287|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:25:27|2026-08-08T14:28:08|2026-08-08T14:29:52|104|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:25:30|2026-08-08T14:28:08|2026-08-08T14:29:50|102|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:28:41|2026-08-08T14:30:43|2026-08-08T14:31:31|48|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:30:39|2026-08-08T14:32:47|2026-08-08T14:35:46|179|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:30:41|2026-08-08T14:32:47|2026-08-08T14:33:31|44|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:30:44|2026-08-08T14:32:47|2026-08-08T14:35:35|168|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:32:23|2026-08-08T14:34:52|2026-08-08T14:35:35|43|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:33:34|2026-08-08T14:36:58|2026-08-08T14:37:12|14|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:36:25|2026-08-08T14:39:02|2026-08-08T14:39:16|14|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:36:28|2026-08-08T14:40:35|2026-08-08T14:42:40|125|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:36:38|2026-08-08T14:42:09|2026-08-08T14:43:30|81|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:38:04|2026-08-08T14:42:40|2026-08-08T14:43:33|53|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:40:07|2026-08-08T14:43:12|2026-08-08T14:43:13|1|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:43:33|2026-08-08T14:46:19|2026-08-08T14:49:18|179|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:44:03|2026-08-08T14:49:59|2026-08-08T14:51:17|78|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:44:23|2026-08-08T14:50:30|2026-08-08T14:52:16|106|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:44:25|2026-08-08T14:50:30|2026-08-08T14:54:37|247|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:45:59|2026-08-08T14:51:01|2026-08-08T14:59:12|491|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:50:09|2026-08-08T14:53:05|2026-08-08T14:57:18|253|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:52:08|2026-08-08T14:56:13|2026-08-08T14:57:18|65|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:53:08|2026-08-08T14:56:13|2026-08-08T14:57:40|87|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:54:41|2026-08-08T14:56:44|2026-08-08T14:58:05|81|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:58:07|2026-08-08T15:00:23|2026-08-08T15:03:04|161|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:58:10|2026-08-08T15:01:57|2026-08-08T15:03:59|122|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:58:29|2026-08-08T15:02:28|2026-08-08T15:03:06|38|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T14:58:57|2026-08-08T15:02:28|2026-08-08T15:03:06|38|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:00:03|2026-08-08T15:02:59|2026-08-08T15:03:49|50|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:03:09|2026-08-08T15:05:36|2026-08-08T15:06:34|58|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:03:55|2026-08-08T15:06:08|2026-08-08T15:09:14|186|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:04:00|2026-08-08T15:06:08|2026-08-08T15:12:42|394|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:04:41|2026-08-08T15:07:11|2026-08-08T15:13:05|354|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:04:50|2026-08-08T15:07:41|2026-08-08T15:12:37|296|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:07:27|2026-08-08T15:11:52|2026-08-08T15:12:12|20|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:09:17|2026-08-08T15:11:52|2026-08-08T15:11:57|5|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:11:59|2026-08-08T15:14:30|2026-08-08T15:17:16|166|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:13:03|2026-08-08T15:17:06|2026-08-08T15:17:48|42|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:13:29|2026-08-08T15:18:40|2026-08-08T15:18:42|2|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:13:30|2026-08-08T15:18:40|2026-08-08T15:23:55|315|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:14:00|2026-08-08T15:18:40|2026-08-08T15:26:58|498|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:18:10|2026-08-08T15:20:13|2026-08-08T15:21:15|62|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:18:46|2026-08-08T15:22:48|2026-08-08T15:23:18|30|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:19:32|2026-08-08T15:22:48|2026-08-08T15:23:23|35|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:22:06|2026-08-08T15:24:21|2026-08-08T15:29:47|326|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:23:21|2026-08-08T15:25:56|2026-08-08T15:26:58|62|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:23:57|2026-08-08T15:26:27|2026-08-08T15:27:18|51|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:24:14|2026-08-08T15:28:33|2026-08-08T15:30:17|104|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:27:02|2026-08-08T15:29:34|2026-08-08T15:29:47|13|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:27:53|2026-08-08T15:30:37|2026-08-08T15:37:13|396|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:28:23|2026-08-08T15:30:37|2026-08-08T15:34:15|218|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:30:36|2026-08-08T15:32:42|2026-08-08T15:33:13|31|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:30:39|2026-08-08T15:32:42|2026-08-08T15:33:24|42|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:31:10|2026-08-08T15:33:45|2026-08-08T15:36:50|185|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:33:17|2026-08-08T15:35:18|2026-08-08T15:38:14|176|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:34:17|2026-08-08T15:37:54|2026-08-08T15:39:03|69|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:35:05|2026-08-08T15:38:25|2026-08-08T15:39:14|49|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:37:43|2026-08-08T15:40:29|2026-08-08T15:41:44|75|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:38:02|2026-08-08T15:40:29|2026-08-08T15:42:05|96|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:39:09|2026-08-08T15:44:07|2026-08-08T15:46:40|153|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:39:55|2026-08-08T15:44:07|2026-08-08T15:48:29|262|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:40:03|2026-08-08T15:44:07|2026-08-08T15:45:14|67|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:42:35|2026-08-08T15:44:39|2026-08-08T15:45:17|38|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:42:56|2026-08-08T15:45:10|2026-08-08T15:46:07|57|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:46:07|2026-08-08T15:49:22|2026-08-08T15:49:30|8|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:46:08|2026-08-08T15:49:22|2026-08-08T15:51:59|157|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:46:42|2026-08-08T15:50:25|2026-08-08T15:51:11|46|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:46:56|2026-08-08T15:50:56|2026-08-08T15:51:14|18|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:49:20|2026-08-08T15:51:27|2026-08-08T15:51:33|6|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:50:21|2026-08-08T15:52:29|2026-08-08T15:55:43|194|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:52:02|2026-08-08T15:55:35|2026-08-08T15:56:44|69|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:52:14|2026-08-08T15:55:35|2026-08-08T16:00:30|295|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:52:24|2026-08-08T15:55:35|2026-08-08T15:55:43|8|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:52:48|2026-08-08T15:55:35|2026-08-08T16:05:44|609|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:55:45|2026-08-08T15:58:10|2026-08-08T16:01:31|201|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:56:39|2026-08-08T16:01:19|2026-08-08T16:05:14|235|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T15:57:40|2026-08-08T16:01:50|2026-08-08T16:03:33|103|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:01:22|2026-08-08T16:04:24|2026-08-08T16:09:21|297|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:02:22|2026-08-08T16:04:24|2026-08-08T16:05:14|50|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:04:26|2026-08-08T16:06:30|2026-08-08T16:07:14|44|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:06:10|2026-08-08T16:08:36|2026-08-08T16:13:24|288|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:06:11|2026-08-08T16:09:07|2026-08-08T16:09:15|8|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:06:38|2026-08-08T16:10:09|2026-08-08T16:12:14|125|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:08:06|2026-08-08T16:10:40|2026-08-08T16:11:51|71|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:10:13|2026-08-08T16:12:45|2026-08-08T16:14:31|106|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:10:15|2026-08-08T16:12:45|2026-08-08T16:15:14|149|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:12:43|2026-08-08T16:16:23|2026-08-08T16:17:16|53|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:13:09|2026-08-08T16:16:23|2026-08-08T16:17:16|53|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:14:15|2026-08-08T16:16:23|2026-08-08T16:16:28|5|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:15:26|2026-08-08T16:18:27|2026-08-08T16:26:34|487|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:16:08|2026-08-08T16:18:27|2026-08-08T16:27:03|516|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:17:18|2026-08-08T16:19:29|2026-08-08T16:22:36|187|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:18:11|2026-08-08T16:23:40|2026-08-08T16:34:49|669|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:18:13|2026-08-08T16:23:40|2026-08-08T16:24:56|76|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:23:31|2026-08-08T16:25:46|2026-08-08T16:26:34|48|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:25:47|2026-08-08T16:27:50|2026-08-08T16:31:35|225|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:27:27|2026-08-08T16:31:30|2026-08-08T16:34:25|175|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:27:34|2026-08-08T16:33:04|2026-08-08T16:33:16|12|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:28:00|2026-08-08T16:33:35|2026-08-08T16:35:47|132|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:32:31|2026-08-08T16:35:08|2026-08-08T16:35:12|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:33:19|2026-08-08T16:35:40|2026-08-08T16:36:46|66|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:35:18|2026-08-08T16:37:45|2026-08-08T16:37:49|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:35:41|2026-08-08T16:37:45|2026-08-08T16:37:53|8|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:36:05|2026-08-08T16:38:17|2026-08-08T16:38:29|12|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:36:38|2026-08-08T16:38:48|2026-08-08T16:41:21|153|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:37:44|2026-08-08T16:39:50|2026-08-08T16:41:14|84|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:38:40|2026-08-08T16:40:53|2026-08-08T16:41:11|18|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:38:46|2026-08-08T16:40:53|2026-08-08T16:41:14|21|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:39:20|2026-08-08T16:42:26|2026-08-08T16:43:25|59|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:42:04|2026-08-08T16:44:33|2026-08-08T16:46:09|96|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:42:07|2026-08-08T16:44:33|2026-08-08T16:46:42|129|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:42:16|2026-08-08T16:45:36|2026-08-08T16:52:19|403|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:42:17|2026-08-08T16:46:07|2026-08-08T16:47:30|83|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:44:23|2026-08-08T16:47:10|2026-08-08T16:49:25|135|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:46:44|2026-08-08T16:49:14|2026-08-08T16:51:55|161|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:47:06|2026-08-08T16:50:48|2026-08-08T16:51:02|14|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:48:26|2026-08-08T16:52:21|2026-08-08T16:59:04|403|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:49:28|2026-08-08T16:52:53|2026-08-08T16:55:01|128|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:51:51|2026-08-08T16:53:55|2026-08-08T16:58:44|289|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:52:49|2026-08-08T16:54:57|2026-08-08T16:55:20|23|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:53:15|2026-08-08T16:55:59|2026-08-08T16:59:48|229|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:55:03|2026-08-08T16:58:37|2026-08-08T16:58:41|4|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:56:12|2026-08-08T16:58:37|2026-08-08T16:59:21|44|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:59:35|2026-08-08T17:03:16|2026-08-08T17:03:32|16|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:59:36|2026-08-08T17:03:16|2026-08-08T17:03:32|16|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T16:59:59|2026-08-08T17:04:19|2026-08-08T17:05:04|45|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:00:20|2026-08-08T17:04:19|2026-08-08T17:05:27|68|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:00:39|2026-08-08T17:04:19|2026-08-08T17:11:48|449|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:04:22|2026-08-08T17:06:24|2026-08-08T17:07:22|58|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:04:23|2026-08-08T17:06:24|2026-08-08T17:09:40|196|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:05:07|2026-08-08T17:09:00|2026-08-08T17:09:07|7|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:05:30|2026-08-08T17:09:31|2026-08-08T17:11:22|111|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:08:13|2026-08-08T17:10:34|2026-08-08T17:11:24|50|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:09:43|2026-08-08T17:12:07|2026-08-08T17:13:23|76|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:09:56|2026-08-08T17:12:07|2026-08-08T17:13:53|106|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:12:13|2026-08-08T17:15:14|2026-08-08T17:23:08|474|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:12:16|2026-08-08T17:15:45|2026-08-08T17:17:26|101|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:12:40|2026-08-08T17:15:45|2026-08-08T17:23:32|467|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:13:26|2026-08-08T17:15:45|2026-08-08T17:21:30|345|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:14:44|2026-08-08T17:17:19|2026-08-08T17:17:26|7|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:18:17|2026-08-08T17:20:24|2026-08-08T17:21:30|66|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:18:22|2026-08-08T17:20:24|2026-08-08T17:20:37|13|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:20:39|2026-08-08T17:23:01|2026-08-08T17:25:21|140|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:21:32|2026-08-08T17:24:04|2026-08-08T17:25:21|77|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:22:21|2026-08-08T17:24:36|2026-08-08T17:27:22|166|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:24:01|2026-08-08T17:27:12|2026-08-08T17:29:36|144|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:24:23|2026-08-08T17:28:13|2026-08-08T17:35:56|463|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:26:11|2026-08-08T17:28:13|2026-08-08T17:29:00|47|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:26:17|2026-08-08T17:28:44|2026-08-08T17:29:23|39|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:28:12|2026-08-08T17:30:16|2026-08-08T17:31:37|81|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:29:25|2026-08-08T17:32:50|2026-08-08T17:35:24|154|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:29:51|2026-08-08T17:33:21|2026-08-08T17:35:24|123|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:30:29|2026-08-08T17:33:21|2026-08-08T17:37:22|241|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:32:28|2026-08-08T17:34:53|2026-08-08T17:35:33|40|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:35:28|2026-08-08T17:39:05|2026-08-08T17:43:28|263|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:36:18|2026-08-08T17:39:36|2026-08-08T17:41:23|107|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:36:27|2026-08-08T17:40:07|2026-08-08T17:41:23|76|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:36:53|2026-08-08T17:40:39|2026-08-08T17:45:01|262|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:38:12|2026-08-08T17:40:39|2026-08-08T17:41:23|44|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:42:13|2026-08-08T17:44:17|2026-08-08T17:44:32|15|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:42:20|2026-08-08T17:44:49|2026-08-08T17:47:44|175|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:42:24|2026-08-08T17:44:49|2026-08-08T17:46:05|76|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:43:31|2026-08-08T17:46:22|2026-08-08T17:49:24|182|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:45:22|2026-08-08T17:47:24|2026-08-08T17:47:29|5|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:45:52|2026-08-08T17:48:57|2026-08-08T17:53:33|276|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:46:07|2026-08-08T17:48:57|2026-08-08T17:53:29|272|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:48:21|2026-08-08T17:52:03|2026-08-08T17:52:25|22|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:48:40|2026-08-08T17:54:07|2026-08-08T17:54:59|52|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:50:15|2026-08-08T17:54:38|2026-08-08T17:55:23|45|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:53:15|2026-08-08T17:56:13|2026-08-08T18:01:38|325|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:54:25|2026-08-08T17:56:44|2026-08-08T17:58:47|123|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:54:27|2026-08-08T17:57:46|2026-08-08T17:58:24|38|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:55:59|2026-08-08T17:59:20|2026-08-08T17:59:29|9|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:56:14|2026-08-08T17:59:50|2026-08-08T18:01:17|87|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:59:13|2026-08-08T18:01:23|2026-08-08T18:02:50|87|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T17:59:44|2026-08-08T18:01:55|2026-08-08T18:02:25|30|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:00:20|2026-08-08T18:02:26|2026-08-08T18:05:29|183|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:02:09|2026-08-08T18:05:00|2026-08-08T18:05:29|29|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:02:31|2026-08-08T18:05:00|2026-08-08T18:05:34|34|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:03:20|2026-08-08T18:06:33|2026-08-08T18:13:24|411|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:03:39|2026-08-08T18:06:33|2026-08-08T18:19:41|788|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:05:32|2026-08-08T18:08:38|2026-08-08T18:12:26|228|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:06:20|2026-08-08T18:08:38|2026-08-08T18:17:39|541|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:06:35|2026-08-08T18:09:09|2026-08-08T18:16:39|450|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:13:20|2026-08-08T18:16:59|2026-08-08T18:19:41|162|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:14:15|2026-08-08T18:18:02|2026-08-08T18:23:36|334|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:17:29|2026-08-08T18:19:36|2026-08-08T18:19:41|5|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:18:35|2026-08-08T18:20:39|2026-08-08T18:21:37|58|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:20:30|2026-08-08T18:24:50|2026-08-08T18:27:37|167|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:20:32|2026-08-08T18:25:21|2026-08-08T18:27:37|136|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-08T18:20:34|2026-08-08T18:25:21|2026-08-09T02:31:20|29159|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:22:37|2026-08-08T18:25:53|2026-08-08T18:33:03|430|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:24:38|2026-08-08T18:28:31|2026-08-08T18:33:00|269|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:28:27|2026-08-08T18:31:39|2026-08-08T18:37:37|358|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:28:29|2026-08-08T18:31:39|2026-08-08T18:37:41|362|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:33:50|2026-08-08T18:36:21|2026-08-08T18:37:37|76|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:33:56|2026-08-08T18:36:52|2026-08-08T18:37:37|45|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:37:40|2026-08-08T18:41:36|2026-08-08T18:43:38|122|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:37:40|2026-08-08T18:42:07|2026-08-08T18:43:38|91|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:38:32|2026-08-08T18:42:39|2026-08-08T18:43:38|59|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:38:38|2026-08-08T18:42:39|2026-08-08T18:43:38|59|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:44:29|2026-08-08T18:46:48|2026-08-08T18:48:28|100|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:44:31|2026-08-08T18:47:19|2026-08-08T18:49:42|143|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:44:41|2026-08-08T18:47:19|2026-08-08T18:50:50|211|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:44:46|2026-08-08T18:47:19|2026-08-08T18:49:42|143|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:49:17|2026-08-08T18:51:32|2026-08-08T18:51:35|3|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:49:45|2026-08-08T18:52:34|2026-08-08T18:53:42|68|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:50:35|2026-08-08T18:53:06|2026-08-08T19:01:31|505|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:51:42|2026-08-08T18:54:39|2026-08-08T18:55:26|47|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:52:24|2026-08-08T18:55:10|2026-08-08T18:58:01|171|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:54:32|2026-08-08T18:56:43|2026-08-08T18:57:38|55|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:56:18|2026-08-08T18:58:48|2026-08-08T19:01:42|174|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:58:30|2026-08-08T19:00:52|2026-08-08T19:01:31|39|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T18:58:52|2026-08-08T19:02:57|2026-08-08T19:03:28|31|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:01:33|2026-08-08T19:04:32|2026-08-08T19:09:40|308|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:02:30|2026-08-08T19:06:05|2026-08-08T19:07:32|87|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:02:36|2026-08-08T19:08:09|2026-08-08T19:08:23|14|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:04:20|2026-08-08T19:08:09|2026-08-08T19:09:40|91|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:08:24|2026-08-08T19:10:44|2026-08-08T19:11:21|37|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:08:26|2026-08-08T19:10:44|2026-08-08T19:12:07|83|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:10:30|2026-08-08T19:12:48|2026-08-08T19:14:22|94|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:10:33|2026-08-08T19:12:48|2026-08-08T19:12:59|11|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:12:14|2026-08-08T19:14:20|2026-08-08T19:33:29|1149|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:12:58|2026-08-08T19:15:23|2026-08-08T19:16:20|57|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:13:02|2026-08-08T19:15:23|2026-08-08T19:16:28|65|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:15:17|2026-08-08T19:17:28|2026-08-08T19:18:11|43|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:17:11|2026-08-08T19:19:33|2026-08-08T19:19:55|22|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:17:19|2026-08-08T19:20:35|2026-08-08T19:20:45|10|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:19:03|2026-08-08T19:21:06|2026-08-08T19:34:11|785|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:20:48|2026-08-08T19:23:10|2026-08-08T19:27:46|276|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:21:39|2026-08-08T19:23:41|2026-08-08T19:33:47|606|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:28:36|2026-08-08T19:30:56|2026-08-08T19:34:32|216|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:34:14|2026-08-08T19:37:10|2026-08-08T19:41:23|253|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:34:21|2026-08-08T19:37:10|2026-08-08T19:40:52|222|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:34:41|2026-08-08T19:40:17|2026-08-08T19:42:12|115|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:35:22|2026-08-08T19:41:51|2026-08-08T19:42:12|21|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:41:42|2026-08-08T19:43:55|2026-08-08T19:49:08|313|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:42:14|2026-08-08T19:44:26|2026-08-08T20:49:22|3896|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:42:14|2026-08-08T19:44:26|2026-08-08T19:49:30|304|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:43:02|2026-08-08T19:45:59|2026-08-08T19:49:26|207|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:50:01|2026-08-08T19:52:12|2026-08-08T20:49:22|3430|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:50:16|2026-08-08T19:53:15|2026-08-08T20:52:53|3578|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:50:22|2026-08-08T19:54:48|2026-08-08T19:58:31|223|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T19:59:22|2026-08-08T20:01:37|2026-08-08T20:02:31|54|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:03:20|2026-08-08T20:05:47|2026-08-08T20:06:52|65|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:07:43|2026-08-08T20:09:55|2026-08-08T20:14:28|273|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:15:22|2026-08-08T20:17:44|2026-08-08T20:17:55|11|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:18:48|2026-08-08T20:23:59|2026-08-08T20:29:32|333|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:30:24|2026-08-08T20:33:19|2026-08-08T20:34:08|49|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:34:58|2026-08-08T20:38:18|2026-08-08T20:52:53|875|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:49:25|2026-08-08T20:52:05|2026-08-08T21:06:07|842|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:50:14|2026-08-08T20:52:36|2026-08-08T20:57:37|301|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:53:47|2026-08-08T20:56:45|2026-08-08T20:58:35|110|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:53:53|2026-08-08T20:56:45|2026-08-08T20:58:13|88|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:58:27|2026-08-08T21:01:57|2026-08-08T21:08:07|370|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:59:05|2026-08-08T21:01:57|2026-08-08T21:07:37|340|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T20:59:26|2026-08-08T21:05:36|2026-08-08T21:08:36|180|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:06:56|2026-08-08T21:10:18|2026-08-08T21:10:29|11|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:08:10|2026-08-08T21:10:18|2026-08-08T21:11:37|79|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:08:28|2026-08-08T21:10:49|2026-08-08T21:11:44|55|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:09:28|2026-08-08T21:11:51|2026-08-08T21:12:06|15|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:11:21|2026-08-08T21:13:25|2026-08-08T21:15:27|122|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:12:09|2026-08-08T21:14:27|2026-08-08T21:15:27|60|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:12:32|2026-08-08T21:16:00|2026-08-08T21:16:06|6|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:12:35|2026-08-08T21:16:31|2026-08-08T21:44:56|1705|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:16:18|2026-08-08T21:19:07|2026-08-08T21:53:37|2070|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:16:21|2026-08-08T21:19:07|2026-08-08T21:19:31|24|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:16:55|2026-08-08T21:19:07|2026-08-08T21:53:37|2070|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:20:27|2026-08-08T21:26:57|2026-08-08T21:33:49|412|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:34:39|2026-08-08T21:42:18|2026-08-08T21:44:16|118|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:45:07|2026-08-08T21:48:33|2026-08-08T21:49:50|77|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:45:51|2026-08-08T21:51:09|2026-08-08T23:36:46|6337|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:50:40|2026-08-08T21:53:15|2026-08-08T23:36:23|6188|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:54:27|2026-08-08T21:56:51|2026-08-08T22:15:35|1124|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T21:54:31|2026-08-08T21:56:51|2026-08-08T22:14:56|1085|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T22:15:49|2026-08-08T22:25:24|2026-08-08T23:39:51|4467|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T22:16:26|2026-08-08T22:46:41|2026-08-08T23:40:37|3236|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T23:37:16|2026-08-08T23:41:04|2026-08-09T00:58:48|4664|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T23:37:41|2026-08-08T23:41:35|2026-08-09T00:58:48|4633|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T23:40:47|2026-08-08T23:46:46|2026-08-09T00:58:51|4325|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-08T23:41:26|2026-08-08T23:57:05|2026-08-09T00:01:10|245|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T00:01:13|2026-08-09T00:06:21|2026-08-09T00:25:31|1150|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T00:26:22|2026-08-09T00:29:10|2026-08-09T00:34:19|309|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T00:34:22|2026-08-09T00:36:54|2026-08-09T00:39:29|155|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T00:39:32|2026-08-09T00:42:36|2026-08-09T00:49:02|386|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T00:49:52|2026-08-09T00:52:21|2026-08-09T00:55:54|213|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T00:56:47|2026-08-09T00:59:40|2026-08-09T01:35:07|2127|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T00:59:39|2026-08-09T01:04:13|2026-08-09T01:18:15|842|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T00:59:45|2026-08-09T01:09:56|2026-08-09T01:17:13|437|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T00:59:53|2026-08-09T01:14:36|2026-08-09T01:18:42|246|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:17:16|2026-08-09T01:19:47|2026-08-09T01:31:01|674|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:19:08|2026-08-09T01:23:22|2026-08-09T01:34:02|640|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:19:33|2026-08-09T01:23:52|2026-08-09T01:33:16|564|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:31:52|2026-08-09T01:35:38|2026-08-09T01:40:16|278|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:34:07|2026-08-09T01:39:13|2026-08-09T01:40:16|63|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:34:55|2026-08-09T01:39:44|2026-08-09T01:49:44|600|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:35:10|2026-08-09T01:40:15|2026-08-09T01:51:11|656|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:41:07|2026-08-09T01:43:17|2026-08-09T01:49:16|359|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:41:10|2026-08-09T01:43:17|2026-08-09T01:53:53|636|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:50:08|2026-08-09T01:53:03|2026-08-09T02:00:02|419|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:50:34|2026-08-09T01:54:36|2026-08-09T01:56:06|90|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:52:05|2026-08-09T01:55:07|2026-08-09T01:56:26|79|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-09T01:54:44|2026-08-09T01:57:09|2026-08-09T10:00:02|28973|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:56:56|2026-08-09T01:59:12|2026-08-09T05:43:25|13453|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T01:57:15|2026-08-09T01:59:43|2026-08-09T09:37:55|27492|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-09T02:00:05|2026-08-09T02:02:17|2026-08-09T10:15:02|29565|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-09T02:31:23|2026-08-09T02:33:32|2026-08-09T10:45:03|29491|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-09T05:44:17|2026-08-09T05:46:23|2026-08-09T14:00:02|29619|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-09T09:37:57|2026-08-09T09:40:28|2026-08-09T17:45:02|29074|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745361|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-08-09T10:00:52|2026-08-09T10:03:23|2026-08-09T12:07:12|7429|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-09T10:15:05|2026-08-09T10:17:07|2026-08-09T18:30:02|29575|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-09T10:46:05|2026-08-09T10:48:14|2026-08-09T19:00:02|29508|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-09T14:00:52|2026-08-09T14:02:58|2026-08-09T22:15:01|29523|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-09T17:45:54|2026-08-09T17:48:16|2026-08-10T02:00:01|29505|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-09T18:30:54|2026-08-09T18:33:14|2026-08-09T20:49:58|8204|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-09T19:00:05|2026-08-09T19:02:29|2026-08-10T03:15:03|29554|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-09T20:50:51|2026-08-09T20:52:59|2026-08-10T05:00:03|29224|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-09T22:15:06|2026-08-09T22:17:19|2026-08-10T06:30:03|29564|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-10T02:00:52|2026-08-10T02:02:55|2026-08-10T10:15:03|29528|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38303999|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|COMPLETED|2026-08-10T03:15:05|2026-08-10T03:17:11|2026-08-10T05:36:11|8340|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-10T05:00:53|2026-08-10T05:03:05|2026-08-10T13:15:03|29518|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-10T06:30:58|2026-08-10T06:33:00|2026-08-10T14:45:02|29522|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T10:15:53|2026-08-10T10:18:09|2026-08-10T15:17:41|17972|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T13:15:53|2026-08-10T13:18:04|2026-08-10T15:17:41|7177|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T14:45:11|2026-08-10T14:47:22|2026-08-10T14:55:59|517|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T14:56:49|2026-08-10T15:08:12|2026-08-10T15:16:39|507|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T15:17:31|2026-08-10T15:21:04|2026-08-10T17:07:43|6399|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T15:18:32|2026-08-10T15:21:04|2026-08-10T15:28:36|452|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T15:18:38|2026-08-10T15:21:35|2026-08-10T15:27:19|344|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T15:28:11|2026-08-10T15:30:19|2026-08-10T17:08:15|5876|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T15:29:26|2026-08-10T15:31:30|2026-08-10T16:10:56|2366|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T16:11:49|2026-08-10T16:14:55|2026-08-10T17:07:43|3168|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T17:08:33|2026-08-10T17:10:56|2026-08-10T17:17:38|402|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T17:08:38|2026-08-10T17:10:56|2026-08-10T18:17:48|4012|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T17:09:08|2026-08-10T17:11:27|2026-08-10T18:07:49|3382|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T17:17:41|2026-08-10T17:20:01|2026-08-10T17:25:32|331|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T17:25:34|2026-08-10T17:27:38|2026-08-10T17:29:39|121|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T17:30:29|2026-08-10T17:32:37|2026-08-10T18:07:15|2078|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T18:08:18|2026-08-10T18:10:27|2026-08-10T19:56:47|6380|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T18:08:48|2026-08-10T18:10:58|2026-08-10T18:11:39|41|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T18:12:32|2026-08-10T18:14:33|2026-08-10T18:17:44|191|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-10T18:18:37|2026-08-10T18:20:43|2026-08-10T19:56:47|5764|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-10T18:18:37|2026-08-10T18:20:43|2026-08-11T02:30:01|29358|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-10T19:56:48|2026-08-10T19:58:51|2026-08-11T04:00:02|28871|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|REQUEUED|2026-08-10T19:57:38|2026-08-10T20:00:07|2026-08-11T04:15:01|29694|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-11T02:31:16|2026-08-12T17:03:14|2026-08-12T17:03:55|41|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-11T04:00:53|2026-08-12T17:03:14|2026-08-12T17:20:31|1037|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-11T04:15:51|2026-08-12T17:03:14|2026-08-12T17:20:31|1037|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-12T17:04:44|2026-08-12T17:06:59|2026-08-13T00:02:54|24955|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-12T17:20:40|2026-08-12T17:43:30|2026-08-12T18:01:47|1097|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-12T17:20:40|2026-08-12T17:43:30|2026-08-12T20:23:30|9600|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-12T18:01:49|2026-08-12T18:07:33|2026-08-12T18:30:27|1374|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-12T18:31:23|2026-08-12T19:12:52|2026-08-12T20:22:45|4193|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-12T20:23:47|2026-08-12T20:26:30|2026-08-12T21:40:15|4425|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-12T20:24:24|2026-08-12T20:27:01|2026-08-13T00:03:05|12964|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-12T21:41:10|2026-08-12T21:43:26|2026-08-12T23:29:54|6388|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-12T23:29:58|2026-08-12T23:32:26|2026-08-13T00:02:42|1816|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T00:02:58|2026-08-13T00:05:08|2026-08-13T00:06:48|100|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T00:03:44|2026-08-13T00:08:16|2026-08-13T01:10:21|3725|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T00:04:08|2026-08-13T00:09:50|2026-08-13T00:28:01|1091|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T00:07:43|2026-08-13T00:29:07|2026-08-13T01:02:30|2003|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T00:28:57|2026-08-13T00:37:55|2026-08-13T01:10:01|1926|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T01:03:21|2026-08-13T01:05:34|2026-08-13T01:09:39|245|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T01:10:29|2026-08-13T01:43:27|2026-08-13T01:49:46|379|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T01:10:53|2026-08-13T01:44:28|2026-08-13T01:50:10|342|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T01:11:16|2026-08-13T01:44:28|2026-08-13T01:53:50|562|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T01:50:12|2026-08-13T01:55:41|2026-08-13T02:03:07|446|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T01:50:40|2026-08-13T01:55:41|2026-08-13T02:03:07|446|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T01:54:45|2026-08-13T01:59:48|2026-08-13T02:03:17|209|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T02:03:09|2026-08-13T02:33:33|2026-08-13T02:33:55|22|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T02:03:09|2026-08-13T02:33:33|2026-08-13T02:33:55|22|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T02:04:09|2026-08-13T02:33:33|2026-08-13T02:33:55|22|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T02:34:44|2026-08-13T02:57:02|2026-08-13T03:42:10|2708|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T02:34:44|2026-08-13T02:57:02|2026-08-13T03:45:03|2881|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T02:34:46|2026-08-13T02:57:02|2026-08-13T03:45:53|2931|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T03:42:18|2026-08-13T03:56:44|2026-08-13T04:47:53|3069|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T03:45:10|2026-08-13T03:56:44|2026-08-13T04:47:53|3069|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T03:46:59|2026-08-13T03:56:44|2026-08-13T04:47:53|3069|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T04:48:09|2026-08-13T06:35:50|2026-08-13T08:16:27|6037|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T04:48:09|2026-08-13T06:35:50|2026-08-13T09:00:45|8695|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T04:49:00|2026-08-13T06:36:51|2026-08-13T08:59:10|8539|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T08:16:31|2026-08-13T08:22:25|2026-08-13T08:24:58|153|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T08:25:48|2026-08-13T08:29:02|2026-08-13T08:38:08|546|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T08:38:59|2026-08-13T08:41:16|2026-08-13T08:58:43|1047|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T08:59:37|2026-08-13T09:02:09|2026-08-13T09:02:43|34|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:00:04|2026-08-13T09:02:09|2026-08-13T09:19:42|1053|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:01:36|2026-08-13T09:04:11|2026-08-13T09:19:42|931|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:02:46|2026-08-13T09:05:13|2026-08-13T09:13:55|522|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:14:47|2026-08-13T09:17:26|2026-08-13T09:19:42|136|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:20:33|2026-08-13T09:25:35|2026-08-13T09:33:30|475|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:20:35|2026-08-13T09:26:36|2026-08-13T09:32:59|383|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:20:48|2026-08-13T09:29:09|2026-08-13T10:19:53|3044|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:33:48|2026-08-13T09:36:47|2026-08-13T09:41:47|300|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:34:21|2026-08-13T09:39:50|2026-08-13T09:41:52|122|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:42:38|2026-08-13T09:45:57|2026-08-13T09:46:27|30|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:42:44|2026-08-13T09:51:33|2026-08-13T09:56:10|277|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:47:23|2026-08-13T09:59:13|2026-08-13T10:01:15|122|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T09:57:06|2026-08-13T10:06:55|2026-08-13T10:19:53|778|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:02:14|2026-08-13T10:07:10|2026-08-13T10:18:06|656|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:18:58|2026-08-13T10:21:09|2026-08-13T10:23:27|138|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:20:45|2026-08-13T10:23:42|2026-08-13T10:23:51|9|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:20:47|2026-08-13T10:24:12|2026-08-13T10:33:21|549|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:24:17|2026-08-13T10:34:25|2026-08-13T10:36:01|96|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:24:40|2026-08-13T10:34:25|2026-08-13T10:36:32|127|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:34:12|2026-08-13T10:37:29|2026-08-13T10:48:42|673|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:36:54|2026-08-13T10:39:01|2026-08-13T10:54:14|913|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:37:22|2026-08-13T10:47:10|2026-08-13T10:49:10|120|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:49:33|2026-08-13T10:53:17|2026-08-13T10:54:18|61|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:50:00|2026-08-13T10:57:20|2026-08-13T10:58:36|76|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:55:09|2026-08-13T10:57:20|2026-08-13T11:42:04|2684|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:55:11|2026-08-13T10:57:20|2026-08-13T11:42:04|2684|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T10:59:27|2026-08-13T11:02:55|2026-08-13T11:05:42|167|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T11:06:33|2026-08-13T11:14:08|2026-08-13T11:23:13|545|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T11:24:03|2026-08-13T11:30:27|2026-08-13T11:38:27|480|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T11:39:20|2026-08-13T11:43:12|2026-08-13T13:03:30|4818|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T11:43:08|2026-08-13T11:52:24|2026-08-13T12:10:33|1089|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T11:43:08|2026-08-13T11:52:54|2026-08-13T12:10:46|1072|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T12:11:30|2026-08-13T12:15:20|2026-08-13T12:16:55|95|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T12:11:50|2026-08-13T12:15:20|2026-08-13T13:03:30|2890|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T12:17:43|2026-08-13T12:20:26|2026-08-13T12:27:03|397|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T12:27:06|2026-08-13T12:29:36|2026-08-13T12:31:38|122|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T12:32:30|2026-08-13T12:37:14|2026-08-13T12:53:02|948|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T12:53:54|2026-08-13T12:56:05|2026-08-13T13:18:24|1339|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T13:04:33|2026-08-13T13:07:11|2026-08-13T13:14:25|434|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T13:04:33|2026-08-13T13:08:48|2026-08-13T13:19:05|617|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T13:15:15|2026-08-13T13:20:31|2026-08-13T13:20:40|9|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T13:19:20|2026-08-13T13:21:31|2026-08-13T13:48:45|1634|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T13:20:12|2026-08-13T13:22:32|2026-08-13T13:49:10|1598|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T13:21:31|2026-08-13T13:30:10|2026-08-13T13:48:48|1118|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T13:49:38|2026-08-13T13:53:50|2026-08-13T14:19:10|1520|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T13:49:42|2026-08-13T13:53:50|2026-08-13T14:09:44|954|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T13:50:02|2026-08-13T14:07:10|2026-08-13T14:36:47|1777|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T14:10:38|2026-08-13T14:14:59|2026-08-13T14:18:50|231|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T14:19:43|2026-08-13T14:22:45|2026-08-13T14:28:22|337|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T14:20:07|2026-08-13T14:25:23|2026-08-13T14:28:49|206|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T14:29:12|2026-08-13T14:34:20|2026-08-13T14:36:29|129|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T14:29:38|2026-08-13T14:34:52|2026-08-13T14:36:41|109|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T14:36:43|2026-08-13T15:46:53|2026-08-13T15:51:37|284|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T14:37:21|2026-08-13T15:46:53|2026-08-13T15:47:24|31|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T14:37:39|2026-08-13T15:47:23|2026-08-13T15:51:41|258|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T15:48:18|2026-08-13T15:50:59|2026-08-13T16:33:48|2569|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T15:52:28|2026-08-13T15:55:04|2026-08-13T15:59:38|274|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T15:52:31|2026-08-13T15:55:04|2026-08-13T16:41:32|2788|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T15:59:40|2026-08-13T16:02:07|2026-08-13T16:29:03|1616|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T16:30:06|2026-08-13T16:32:16|2026-08-13T16:41:27|551|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T16:34:44|2026-08-13T16:37:05|2026-08-13T16:41:15|250|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T16:42:04|2026-08-13T16:44:31|2026-08-13T16:58:37|846|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T16:42:17|2026-08-13T16:45:33|2026-08-13T16:59:02|809|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T16:42:36|2026-08-13T16:45:33|2026-08-13T17:26:59|2486|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T16:59:04|2026-08-13T17:01:27|2026-08-13T17:02:31|64|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T16:59:28|2026-08-13T17:02:33|2026-08-13T17:24:58|1345|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T17:02:33|2026-08-13T17:05:02|2026-08-13T17:08:38|216|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T17:09:30|2026-08-13T17:14:12|2026-08-13T17:15:39|87|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T17:16:32|2026-08-13T17:21:25|2026-08-13T17:28:24|419|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T17:25:49|2026-08-13T17:29:05|2026-08-13T17:29:40|35|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T17:27:49|2026-08-13T17:36:14|2026-08-13T17:51:53|939|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T17:29:14|2026-08-13T17:53:13|2026-08-13T18:06:48|815|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T17:30:31|2026-08-13T18:07:41|2026-08-13T18:39:04|1883|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T17:52:44|2026-08-13T18:07:41|2026-08-13T18:39:32|1911|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T18:07:38|2026-08-13T18:16:28|2026-08-13T18:54:32|2284|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T18:40:00|2026-08-13T18:47:33|2026-08-13T19:00:02|749|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T18:40:28|2026-08-13T18:48:03|2026-08-13T19:00:32|749|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T18:55:30|2026-08-13T18:57:46|2026-08-13T19:00:19|153|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T19:00:52|2026-08-13T19:03:53|2026-08-13T19:43:57|2404|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T19:01:18|2026-08-13T19:07:28|2026-08-13T19:32:08|1480|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T19:01:27|2026-08-13T19:07:28|2026-08-13T19:36:44|1756|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T19:32:10|2026-08-13T19:44:58|2026-08-13T19:49:53|295|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T19:37:36|2026-08-13T19:45:28|2026-08-13T19:50:16|288|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T19:44:58|2026-08-13T19:51:09|2026-08-13T20:14:28|1399|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T19:50:42|2026-08-13T19:57:17|2026-08-13T20:14:56|1059|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T19:51:06|2026-08-13T20:02:54|2026-08-13T21:48:20|6326|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T20:15:23|2026-08-13T20:17:43|2026-08-13T20:26:50|547|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T20:15:52|2026-08-13T20:22:19|2026-08-13T20:32:28|609|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T20:27:39|2026-08-13T20:33:07|2026-08-13T20:44:52|705|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T20:33:20|2026-08-13T20:37:12|2026-08-13T21:05:18|1686|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T20:44:56|2026-08-13T20:53:35|2026-08-13T21:04:28|653|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T21:05:20|2026-08-13T21:09:27|2026-08-13T21:10:01|34|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T21:06:20|2026-08-13T21:10:58|2026-08-13T21:13:43|165|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T21:10:51|2026-08-13T21:14:33|2026-08-13T22:11:03|3390|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T21:14:33|2026-08-13T21:22:44|2026-08-13T22:11:39|2935|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T21:49:24|2026-08-13T21:54:31|2026-08-13T22:23:12|1721|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T22:11:59|2026-08-13T22:15:56|2026-08-13T22:20:28|272|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T22:12:39|2026-08-13T22:16:57|2026-08-13T22:21:28|271|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T22:21:20|2026-08-14T00:33:26|2026-08-14T00:35:24|118|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T22:22:17|2026-08-14T00:33:44|2026-08-14T00:42:04|500|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-13T22:24:08|2026-08-14T00:33:44|2026-08-14T00:42:08|504|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T00:36:13|2026-08-14T00:44:38|2026-08-14T04:13:00|12502|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T00:42:06|2026-08-14T00:45:12|2026-08-14T04:13:00|12468|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T00:43:11|2026-08-14T00:45:12|2026-08-14T02:29:28|6256|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T02:30:25|2026-08-14T02:33:28|2026-08-14T02:36:35|187|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T02:37:32|2026-08-14T02:44:51|2026-08-14T02:46:03|72|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T02:46:56|2026-08-14T02:48:58|2026-08-14T02:49:29|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T02:50:25|2026-08-14T02:54:37|2026-08-14T02:56:11|94|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T02:57:09|2026-08-14T02:59:16|2026-08-14T03:01:17|121|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T03:02:10|2026-08-14T03:08:35|2026-08-14T03:09:39|64|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T03:10:34|2026-08-14T03:12:49|2026-08-14T03:15:29|160|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T03:16:40|2026-08-14T03:19:28|2026-08-14T03:20:56|88|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T03:21:52|2026-08-14T03:28:09|2026-08-14T03:28:54|45|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T03:29:44|2026-08-14T03:32:14|2026-08-14T03:47:32|918|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T03:48:27|2026-08-14T03:53:31|2026-08-14T09:06:36|18785|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T04:13:58|2026-08-14T04:16:07|2026-08-14T04:17:57|110|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T04:14:07|2026-08-14T04:16:16|2026-08-14T04:17:31|75|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T04:18:25|2026-08-14T04:22:22|2026-08-14T04:30:54|512|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T04:18:46|2026-08-14T04:28:35|2026-08-14T08:21:23|13968|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T04:31:46|2026-08-14T04:34:22|2026-08-14T06:30:32|6970|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T06:31:29|2026-08-14T06:34:09|2026-08-14T06:36:35|146|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T06:37:25|2026-08-14T06:40:24|2026-08-14T07:41:30|3666|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T07:42:36|2026-08-14T07:45:35|2026-08-14T07:46:24|49|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T07:47:15|2026-08-14T07:59:53|2026-08-14T09:44:15|6262|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T08:21:25|2026-08-14T08:25:57|2026-08-14T08:28:01|124|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T08:28:51|2026-08-14T08:34:45|2026-08-14T10:04:29|5384|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T09:07:27|2026-08-14T09:11:54|2026-08-14T09:44:43|1969|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T09:45:05|2026-08-14T09:48:35|2026-08-14T10:02:07|812|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T09:45:35|2026-08-14T09:49:05|2026-08-14T09:50:25|80|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T09:51:15|2026-08-14T09:55:46|2026-08-14T10:05:03|557|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T10:02:55|2026-08-14T10:05:59|2026-08-14T11:21:25|4526|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T10:05:19|2026-08-14T10:07:31|2026-08-14T13:50:05|13354|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T10:05:57|2026-08-14T10:10:35|2026-08-14T11:20:59|4224|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T11:21:53|2026-08-14T11:28:35|2026-08-14T13:50:05|8490|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T11:22:17|2026-08-14T11:28:35|2026-08-14T11:39:28|653|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T11:40:19|2026-08-14T11:44:36|2026-08-14T13:51:36|7620|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T13:50:54|2026-08-14T13:55:40|2026-08-14T14:04:46|546|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T13:50:56|2026-08-14T13:55:40|2026-08-14T14:04:46|546|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T13:52:27|2026-08-14T13:58:45|2026-08-14T14:04:46|361|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:05:36|2026-08-14T14:07:59|2026-08-14T14:21:41|822|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:05:37|2026-08-14T14:15:11|2026-08-14T14:16:51|100|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:05:38|2026-08-14T14:15:42|2026-08-14T14:16:28|46|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:17:18|2026-08-14T14:23:02|2026-08-14T14:23:33|31|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:17:40|2026-08-14T14:24:05|2026-08-14T14:24:21|16|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:22:34|2026-08-14T14:24:36|2026-08-14T14:24:51|15|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:24:25|2026-08-14T14:27:43|2026-08-14T14:28:02|19|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:25:11|2026-08-14T14:28:14|2026-08-14T14:28:43|29|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:25:42|2026-08-14T14:28:14|2026-08-14T14:28:51|37|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:28:53|2026-08-14T14:32:26|2026-08-14T14:32:43|17|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:29:33|2026-08-14T14:32:26|2026-08-14T14:32:46|20|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:29:41|2026-08-14T14:32:26|2026-08-14T14:32:50|24|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:32:46|2026-08-14T14:35:35|2026-08-14T14:36:43|68|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:33:37|2026-08-14T14:36:07|2026-08-14T15:31:30|3323|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:33:40|2026-08-14T14:36:07|2026-08-14T15:31:34|3327|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T14:37:35|2026-08-14T14:40:22|2026-08-14T15:31:27|3065|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T15:31:31|2026-08-14T15:34:41|2026-08-14T16:45:04|4223|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T15:32:21|2026-08-14T15:35:12|2026-08-14T16:45:25|4213|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T15:32:28|2026-08-14T15:35:12|2026-08-14T15:44:03|531|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T15:44:56|2026-08-14T15:55:26|2026-08-14T16:45:48|3022|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T16:45:57|2026-08-14T16:52:32|2026-08-14T17:28:53|2181|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T16:46:15|2026-08-14T16:52:32|2026-08-14T17:45:22|3170|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T16:46:41|2026-08-14T16:53:33|2026-08-14T16:55:46|133|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T16:55:48|2026-08-14T16:58:10|2026-08-14T16:59:12|62|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T17:00:02|2026-08-14T17:02:16|2026-08-14T17:45:44|2608|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T17:28:55|2026-08-14T17:35:30|2026-08-14T17:37:30|120|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T17:38:25|2026-08-14T17:44:12|2026-08-14T17:46:14|122|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T17:46:11|2026-08-14T17:50:52|2026-08-14T17:55:00|248|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T17:46:37|2026-08-14T17:56:32|2026-08-14T17:57:58|86|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T17:47:04|2026-08-14T17:56:32|2026-08-14T17:57:58|86|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T17:55:53|2026-08-14T17:59:05|2026-08-14T18:15:10|965|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T17:58:48|2026-08-14T18:04:47|2026-08-14T18:07:52|185|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T17:58:48|2026-08-14T18:08:54|2026-08-14T18:13:57|303|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T18:08:43|2026-08-14T18:10:58|2026-08-14T18:13:42|164|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T18:13:44|2026-08-14T18:16:05|2026-08-14T18:16:36|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T18:14:48|2026-08-14T18:17:06|2026-08-14T18:45:22|1696|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T18:16:01|2026-08-14T18:19:09|2026-08-14T18:23:37|268|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T18:17:25|2026-08-14T18:19:40|2026-08-14T18:30:35|655|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T18:23:40|2026-08-14T18:33:40|2026-08-14T18:45:22|702|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T18:31:25|2026-08-14T18:34:42|2026-08-14T18:45:22|640|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T18:46:11|2026-08-14T19:00:36|2026-08-14T19:02:41|125|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T18:46:12|2026-08-14T19:01:38|2026-08-14T19:02:00|22|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T18:46:15|2026-08-14T19:02:40|2026-08-14T19:17:48|908|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:02:50|2026-08-14T19:05:46|2026-08-14T19:16:41|655|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:03:35|2026-08-14T19:05:46|2026-08-14T19:17:02|676|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:17:31|2026-08-14T19:19:39|2026-08-14T19:21:28|109|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:17:52|2026-08-14T19:20:09|2026-08-14T19:24:24|255|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:18:39|2026-08-14T19:22:43|2026-08-14T19:34:46|723|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:22:18|2026-08-14T19:24:46|2026-08-14T19:33:37|531|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:25:16|2026-08-14T19:27:21|2026-08-14T19:34:03|402|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:34:28|2026-08-14T19:38:37|2026-08-14T19:43:03|266|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:34:52|2026-08-14T19:42:43|2026-08-14T19:51:49|546|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:35:36|2026-08-14T19:43:14|2026-08-14T19:43:44|30|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:43:05|2026-08-14T19:45:17|2026-08-14T19:51:03|346|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:44:38|2026-08-14T19:46:45|2026-08-14T19:54:59|494|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:51:54|2026-08-14T19:54:29|2026-08-14T19:58:35|246|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:52:40|2026-08-14T19:56:02|2026-08-14T20:05:05|543|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:55:50|2026-08-14T19:59:06|2026-08-14T20:05:34|388|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T19:59:26|2026-08-14T20:01:40|2026-08-14T20:06:59|319|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:05:56|2026-08-14T20:08:19|2026-08-14T20:08:33|14|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:06:26|2026-08-14T20:09:52|2026-08-14T20:11:04|72|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:07:55|2026-08-14T20:10:23|2026-08-14T20:10:49|26|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:09:22|2026-08-14T20:11:24|2026-08-14T20:12:20|56|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:11:40|2026-08-14T20:13:57|2026-08-14T20:15:02|65|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:11:53|2026-08-14T20:14:59|2026-08-14T20:15:24|25|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:13:16|2026-08-14T20:16:00|2026-08-14T20:31:38|938|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:15:54|2026-08-14T20:18:02|2026-08-14T20:31:18|796|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:16:13|2026-08-14T20:19:03|2026-08-14T20:34:00|897|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:31:20|2026-08-14T20:33:24|2026-08-14T20:37:46|262|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:32:29|2026-08-14T20:35:58|2026-08-14T20:49:47|829|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:34:49|2026-08-14T20:36:59|2026-08-14T21:00:03|1384|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:38:36|2026-08-14T20:43:38|2026-08-14T20:47:06|208|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:47:56|2026-08-14T20:51:19|2026-08-14T20:55:07|228|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:50:37|2026-08-14T20:52:51|2026-08-14T20:59:07|376|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:55:58|2026-08-14T20:58:29|2026-08-14T20:59:00|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:59:49|2026-08-14T21:02:03|2026-08-14T21:06:44|281|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T20:59:57|2026-08-14T21:02:34|2026-08-14T21:02:40|6|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:00:54|2026-08-14T21:03:36|2026-08-14T21:03:43|7|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:03:30|2026-08-14T21:06:09|2026-08-14T21:17:54|705|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:04:34|2026-08-14T21:08:12|2026-08-14T21:11:16|184|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:07:34|2026-08-14T21:10:14|2026-08-14T21:11:16|62|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:12:05|2026-08-14T21:17:25|2026-08-14T21:17:29|4|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:12:06|2026-08-14T21:17:25|2026-08-14T21:18:57|92|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:17:31|2026-08-14T21:20:29|2026-08-14T21:26:37|368|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:18:44|2026-08-14T21:23:03|2026-08-14T21:25:53|170|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:19:47|2026-08-14T21:25:36|2026-08-14T21:26:07|31|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:26:40|2026-08-14T21:39:59|2026-08-14T21:40:06|7|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:26:42|2026-08-14T21:40:29|2026-08-14T21:40:48|19|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:26:56|2026-08-14T21:47:41|2026-08-14T22:13:47|1566|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:40:57|2026-08-14T21:47:41|2026-08-14T21:56:44|543|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:41:37|2026-08-14T21:51:17|2026-08-14T21:57:07|350|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:56:46|2026-08-14T21:59:29|2026-08-14T22:01:08|99|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T21:57:57|2026-08-14T22:00:31|2026-08-14T22:05:07|276|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:01:57|2026-08-14T22:04:38|2026-08-14T22:12:46|488|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:05:09|2026-08-14T22:07:13|2026-08-14T22:13:06|353|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:12:47|2026-08-14T22:14:53|2026-08-14T22:14:54|1|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:13:57|2026-08-14T22:16:25|2026-08-14T22:20:40|255|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:14:36|2026-08-14T22:17:27|2026-08-14T22:28:08|641|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:15:43|2026-08-14T22:17:58|2026-08-14T22:20:09|131|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:20:43|2026-08-14T22:25:41|2026-08-14T22:25:43|2|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:20:59|2026-08-14T22:26:13|2026-08-14T22:30:48|275|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:26:37|2026-08-14T22:28:46|2026-08-14T22:31:08|142|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:28:58|2026-08-14T22:33:51|2026-08-14T22:47:36|825|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:31:39|2026-08-14T22:33:51|2026-08-14T22:35:09|78|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:31:59|2026-08-14T22:34:52|2026-08-14T22:34:53|1|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:35:44|2026-08-14T22:38:26|2026-08-14T22:47:08|522|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:36:01|2026-08-14T22:38:56|2026-08-14T22:48:09|553|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:47:59|2026-08-14T22:50:08|2026-08-14T23:10:28|1220|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:48:26|2026-08-14T22:53:15|2026-08-14T22:56:55|220|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:48:59|2026-08-14T22:53:15|2026-08-14T22:54:04|49|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:54:53|2026-08-14T22:57:09|2026-08-14T23:05:09|480|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T22:57:45|2026-08-14T22:59:48|2026-08-14T22:59:55|7|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:00:45|2026-08-14T23:06:40|2026-08-14T23:09:08|148|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:06:00|2026-08-14T23:08:16|2026-08-14T23:08:38|22|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:09:28|2026-08-14T23:11:37|2026-08-14T23:12:21|44|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:09:59|2026-08-14T23:12:09|2026-08-14T23:14:09|120|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:11:29|2026-08-14T23:14:28|2026-08-14T23:14:37|9|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:13:10|2026-08-14T23:15:29|2026-08-14T23:18:07|158|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:15:00|2026-08-14T23:19:08|2026-08-14T23:19:09|1|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:15:28|2026-08-14T23:19:08|2026-08-14T23:19:09|1|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:18:57|2026-08-14T23:20:58|2026-08-14T23:21:44|46|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:19:14|2026-08-14T23:21:44|2026-08-14T23:24:04|140|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:19:14|2026-08-14T23:22:08|2026-08-14T23:27:08|300|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:22:37|2026-08-14T23:24:49|2026-08-14T23:27:19|150|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:24:56|2026-08-14T23:27:08|2026-08-14T23:27:45|37|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:28:00|2026-08-14T23:33:09|2026-08-14T23:42:27|558|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:28:14|2026-08-14T23:36:53|2026-08-14T23:37:23|30|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:28:35|2026-08-14T23:36:53|2026-08-14T23:37:54|61|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:37:32|2026-08-14T23:40:30|2026-08-14T23:44:06|216|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:38:50|2026-08-14T23:41:01|2026-08-14T23:45:41|280|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:43:23|2026-08-14T23:46:12|2026-08-14T23:47:52|100|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:44:58|2026-08-14T23:47:13|2026-08-14T23:47:33|20|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:46:31|2026-08-14T23:48:47|2026-08-15T00:03:10|863|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:47:55|2026-08-14T23:50:20|2026-08-15T00:03:31|791|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-14T23:48:26|2026-08-14T23:56:01|2026-08-15T00:02:11|370|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:03:05|2026-08-15T00:07:59|2026-08-15T00:08:31|32|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:03:13|2026-08-15T00:09:02|2026-08-15T00:09:10|8|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:04:23|2026-08-15T00:09:02|2026-08-15T00:19:41|639|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:08:34|2026-08-15T00:12:41|2026-08-15T00:12:47|6|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:09:19|2026-08-15T00:13:43|2026-08-15T00:13:51|8|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:13:37|2026-08-15T00:17:22|2026-08-15T00:18:56|94|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:14:41|2026-08-15T00:17:53|2026-08-15T00:24:11|378|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:19:52|2026-08-15T00:22:04|2026-08-15T00:23:39|95|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:20:34|2026-08-15T00:25:44|2026-08-15T00:33:11|447|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:24:36|2026-08-15T00:28:51|2026-08-15T00:30:31|100|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:25:15|2026-08-15T00:30:58|2026-08-15T00:31:40|42|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:31:23|2026-08-15T00:35:08|2026-08-15T00:35:11|3|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:32:37|2026-08-15T00:35:08|2026-08-15T00:36:45|97|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:34:14|2026-08-15T00:37:43|2026-08-15T00:47:03|560|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:36:02|2026-08-15T00:38:13|2026-08-15T00:41:11|178|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:36:50|2026-08-15T00:41:50|2026-08-15T00:46:26|276|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:42:02|2026-08-15T00:45:30|2026-08-15T00:46:05|35|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:47:01|2026-08-15T00:49:05|2026-08-15T00:52:17|192|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:47:29|2026-08-15T00:49:36|2026-08-15T00:52:13|157|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:47:53|2026-08-15T00:51:14|2026-08-15T00:52:48|94|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:52:22|2026-08-15T00:55:58|2026-08-15T00:56:00|2|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:53:05|2026-08-15T00:57:00|2026-08-15T00:59:53|173|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:53:39|2026-08-15T00:59:38|2026-08-15T01:00:15|37|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T00:56:52|2026-08-15T00:59:38|2026-08-15T01:06:55|437|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:00:57|2026-08-15T01:03:49|2026-08-15T01:09:31|342|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:01:05|2026-08-15T01:05:22|2026-08-15T01:07:04|102|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:07:58|2026-08-15T01:10:35|2026-08-15T01:11:13|38|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:08:01|2026-08-15T01:12:08|2026-08-15T01:12:12|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:10:25|2026-08-15T01:12:39|2026-08-15T01:12:43|4|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:12:16|2026-08-15T01:14:44|2026-08-15T01:14:49|5|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:13:06|2026-08-15T01:15:16|2026-08-15T01:48:36|2000|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:13:35|2026-08-15T01:15:47|2026-08-15T01:32:05|978|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:15:47|2026-08-15T01:18:22|2026-08-15T01:20:28|126|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:20:37|2026-08-15T01:25:09|2026-08-15T01:28:05|176|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:28:58|2026-08-15T01:32:57|2026-08-15T01:37:15|258|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:32:58|2026-08-15T01:37:13|2026-08-15T01:37:50|37|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:38:06|2026-08-15T01:41:34|2026-08-15T01:41:37|3|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:38:42|2026-08-15T01:42:38|2026-08-15T01:45:17|159|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:41:40|2026-08-15T01:46:24|2026-08-15T01:54:39|495|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:46:19|2026-08-15T01:49:37|2026-08-15T01:50:13|36|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:49:34|2026-08-15T01:52:47|2026-08-15T01:55:01|134|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:51:05|2026-08-15T01:53:52|2026-08-15T02:15:17|1285|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:55:35|2026-08-15T02:03:12|2026-08-15T02:04:51|99|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T01:55:52|2026-08-15T02:04:15|2026-08-15T02:11:18|423|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:05:43|2026-08-15T02:11:34|2026-08-15T02:14:17|163|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:11:21|2026-08-15T02:13:46|2026-08-15T02:14:55|69|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:15:21|2026-08-15T02:17:39|2026-08-15T02:18:17|38|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:15:52|2026-08-15T02:24:48|2026-08-15T02:33:44|536|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:16:09|2026-08-15T02:24:48|2026-08-15T02:33:17|509|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:19:15|2026-08-15T02:24:48|2026-08-15T02:28:03|195|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:28:12|2026-08-15T02:30:15|2026-08-15T02:39:47|572|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:34:10|2026-08-15T02:36:17|2026-08-15T02:36:46|29|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:34:36|2026-08-15T02:37:58|2026-08-15T02:38:27|29|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:37:38|2026-08-15T02:40:08|2026-08-15T02:40:18|10|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:39:20|2026-08-15T02:41:50|2026-08-15T02:42:17|27|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:40:40|2026-08-15T02:43:23|2026-08-15T02:44:14|51|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:41:09|2026-08-15T02:43:54|2026-08-15T02:45:04|70|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:43:10|2026-08-15T02:45:31|2026-08-15T03:13:11|1660|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:45:10|2026-08-15T02:47:44|2026-08-15T02:48:18|34|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:46:00|2026-08-15T02:48:17|2026-08-15T02:49:17|60|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:49:09|2026-08-15T02:51:32|2026-08-15T02:55:20|228|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:50:07|2026-08-15T02:52:36|2026-08-15T03:13:11|1235|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:56:10|2026-08-15T02:58:37|2026-08-15T02:59:01|24|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T02:59:54|2026-08-15T03:04:10|2026-08-15T03:08:30|260|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:09:21|2026-08-15T03:12:22|2026-08-15T03:16:10|228|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:14:02|2026-08-15T03:17:09|2026-08-15T03:17:19|10|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:14:05|2026-08-15T03:17:09|2026-08-15T03:17:19|10|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:17:02|2026-08-15T03:19:28|2026-08-15T03:20:18|50|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:18:10|2026-08-15T03:20:34|2026-08-15T03:20:44|10|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:18:11|2026-08-15T03:21:37|2026-08-15T03:21:44|7|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:21:11|2026-08-15T03:23:44|2026-08-15T03:24:19|35|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:21:34|2026-08-15T03:24:15|2026-08-15T03:24:19|4|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:22:35|2026-08-15T03:25:18|2026-08-15T03:25:20|2|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:25:09|2026-08-15T03:27:31|2026-08-15T03:29:20|109|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:25:09|2026-08-15T03:27:31|2026-08-15T03:28:19|48|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:26:13|2026-08-15T03:29:08|2026-08-15T03:30:02|54|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:29:17|2026-08-15T03:31:48|2026-08-15T03:32:19|31|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:29:23|2026-08-15T03:31:48|2026-08-15T03:32:19|31|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:30:55|2026-08-15T03:33:24|2026-08-15T03:34:19|55|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:33:11|2026-08-15T03:35:35|2026-08-15T03:35:48|13|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:33:11|2026-08-15T03:36:39|2026-08-15T03:37:14|35|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:35:10|2026-08-15T03:38:14|2026-08-15T03:39:21|67|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:36:40|2026-08-15T03:40:55|2026-08-15T03:41:22|27|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:38:07|2026-08-15T03:45:45|2026-08-15T03:50:43|298|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:40:13|2026-08-15T03:45:45|2026-08-15T03:51:21|336|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:42:14|2026-08-15T03:45:45|2026-08-15T03:50:21|276|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:50:48|2026-08-15T03:53:43|2026-08-15T03:54:11|28|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:51:13|2026-08-15T03:53:43|2026-08-15T03:54:11|28|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:52:15|2026-08-15T03:55:17|2026-08-15T04:02:22|425|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:55:02|2026-08-15T03:57:27|2026-08-15T04:02:20|293|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T03:55:10|2026-08-15T04:00:45|2026-08-15T04:01:15|30|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:01:25|2026-08-15T04:03:56|2026-08-15T04:04:18|22|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:03:11|2026-08-15T04:05:32|2026-08-15T04:07:21|109|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:03:12|2026-08-15T04:06:03|2026-08-15T04:10:21|258|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:05:14|2026-08-15T04:08:09|2026-08-15T04:10:21|132|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:08:16|2026-08-15T04:10:48|2026-08-15T04:10:57|9|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:11:12|2026-08-15T04:14:00|2026-08-15T04:14:21|21|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:11:14|2026-08-15T04:15:22|2026-08-15T04:17:22|120|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:11:48|2026-08-15T04:15:22|2026-08-15T04:21:23|361|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:15:14|2026-08-15T04:20:18|2026-08-15T04:20:22|4|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:18:18|2026-08-15T04:20:50|2026-08-15T04:21:23|33|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:21:12|2026-08-15T04:23:25|2026-08-15T04:24:22|57|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:22:14|2026-08-15T04:24:28|2026-08-15T04:25:22|54|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:22:25|2026-08-15T04:25:00|2026-08-15T04:25:22|22|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:25:18|2026-08-15T04:28:06|2026-08-15T04:28:23|17|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-15T04:26:13|2026-08-15T04:29:08|2026-08-15T04:29:23|15|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|0:0 +37745362|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|FAILED|2026-08-15T04:26:18|2026-08-15T04:29:23|2026-08-15T04:29:36|13|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37745358|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|FAILED|2026-08-15T04:29:14|2026-08-15T04:32:47|2026-08-15T04:32:48|1|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|1:0 +37745360|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|FAILED|2026-08-15T04:30:21|2026-08-15T04:33:19|2026-08-15T04:33:20|1|billing=12,cpu=12,gres/gpu:l40=1,gres/gpu=1,mem=64G,node=1|1|1:0 +38541302|rampnet_env_build|klone|ckpt-all|ckpt-gpu|FAILED|2026-08-15T08:09:11|2026-08-15T08:09:12|2026-08-15T08:09:14|2|billing=8,cpu=8,gres/gpu:a40=1,gres/gpu=1,mem=32G,node=1|1|127:0 +38541308|rampnet_env_build|klone|ckpt-all|ckpt-gpu|COMPLETED|2026-08-15T08:10:04|2026-08-15T08:10:05|2026-08-15T09:00:57|3052|billing=8,cpu=8,gres/gpu:a40=1,gres/gpu=1,mem=32G,node=1|1|0:0 +38541865|rampnet_run_a_84|klone|ckpt-all|ckpt-gpu|REQUEUED|2026-08-15T09:17:44|2026-08-15T09:17:45|2026-08-15T17:30:04|29539|billing=48,cpu=48,gres/gpu:a40=16,gres/gpu=16,mem=192G,node=4|4|0:0 +38541865|rampnet_run_a_84|klone|ckpt-all|ckpt-gpu|PREEMPTED|2026-08-15T17:31:06|2026-08-15T17:33:10|2026-08-15T18:32:45|3575|billing=48,cpu=48,gres/gpu:a40=16,gres/gpu=16,mem=192G,node=4|4|0:0 +38541865|rampnet_run_a_84|klone|ckpt-all|ckpt-gpu|REQUEUED|2026-08-15T18:33:46|2026-08-15T18:36:12|2026-08-16T02:45:24|29352|billing=48,cpu=48,gres/gpu:a40=16,gres/gpu=16,mem=192G,node=4|4|0:0 +38541865|rampnet_run_a_84|klone|ckpt-all|ckpt-gpu|FAILED|2026-08-16T02:46:25|2026-08-16T02:48:26|2026-08-16T05:35:30|10024|billing=48,cpu=48,gres/gpu:a40=16,gres/gpu=16,mem=192G,node=4|4|1:0 +38566410|rampnet_env_build|klone|ckpt-all|ckpt-gpu|COMPLETED|2026-08-16T06:36:57|2026-08-16T06:36:58|2026-08-16T06:52:36|938|billing=8,cpu=8,gres/gpu:a40=1,gres/gpu=1,mem=32G,node=1|1|0:0 +38566413|rampnet_run_a_84|klone|ckpt-all|ckpt-gpu|REQUEUED|2026-08-16T06:37:38|2026-08-16T06:53:40|2026-08-16T15:00:25|29205|billing=48,cpu=48,gres/gpu:a40=16,gres/gpu=16,mem=192G,node=4|4|0:0 +38566413|rampnet_run_a_84|klone|ckpt-all|ckpt-gpu|COMPLETED|2026-08-16T15:01:25|2026-08-16T15:03:28|2026-08-16T19:50:46|17238|billing=48,cpu=48,gres/gpu:a40=16,gres/gpu=16,mem=192G,node=4|4|0:0 +38608870|yolo_env_build|klone|ckpt-all|ckpt|FAILED|2026-08-17T14:32:22|2026-08-17T14:32:28|2026-08-17T14:34:02|94|billing=8,cpu=8,mem=32G,node=1|1|1:0 +38611711|yolo_env_build|klone|ckpt-all|ckpt|COMPLETED|2026-08-17T15:47:01|2026-08-17T15:47:21|2026-08-17T16:06:44|1163|billing=8,cpu=8,mem=32G,node=1|1|0:0 +38629391|probe_makelab2|klone|ckpt-all|ckpt|COMPLETED|2026-08-18T07:10:20|2026-08-18T07:10:32|2026-08-18T07:10:32|0|billing=1,cpu=1,mem=2G,node=1|1|0:0 +38629487|arch_capnav|klone|ckpt-all|ckpt|CANCELLED by 197096|2026-08-18T07:37:16|2026-08-18T07:37:32|2026-08-18T07:49:03|691|billing=8,cpu=8,mem=16G,node=1|1|0:0 +38629488|arch_jsomeara|klone|ckpt-all|ckpt|CANCELLED by 197096|2026-08-18T07:37:16|2026-08-18T07:37:32|2026-08-18T07:49:03|691|billing=8,cpu=8,mem=16G,node=1|1|0:0 +38629525|arch_capnav|klone|ckpt-all|ckpt|COMPLETED|2026-08-18T07:49:59|2026-08-18T07:50:16|2026-08-18T07:50:39|23|billing=8,cpu=8,mem=16G,node=1|1|0:0 +38629526|arch_jsomeara|klone|ckpt-all|ckpt|COMPLETED|2026-08-18T07:49:59|2026-08-18T07:50:16|2026-08-18T07:50:34|18|billing=8,cpu=8,mem=16G,node=1|1|0:0 +38629538|arch_capnav|klone|ckpt-all|ckpt|COMPLETED|2026-08-18T07:52:21|2026-08-18T07:52:49|2026-08-18T08:06:10|801|billing=8,cpu=8,mem=16G,node=1|1|0:0 +38629539|arch_jsomeara|klone|ckpt-all|ckpt|COMPLETED|2026-08-18T07:52:21|2026-08-18T07:52:49|2026-08-18T11:08:58|11769|billing=8,cpu=8,mem=16G,node=1|1|0:0 +38629546|xfer_ckpts|klone|ckpt-all|ckpt|COMPLETED|2026-08-18T07:53:29|2026-08-18T07:53:50|2026-08-18T07:56:54|184|billing=4,cpu=4,mem=8G,node=1|1|0:0 +38629567|stage_manual_panos|klone|ckpt-all|ckpt|COMPLETED|2026-08-18T07:58:05|2026-08-18T07:58:25|2026-08-18T08:02:51|266|billing=4,cpu=4,mem=8G,node=1|1|0:0 +38629582_1|eval_run_a_84|klone|ckpt|ckpt-gpu|FAILED|2026-08-18T08:01:30|2026-08-18T08:04:02|2026-08-18T08:14:10|608|billing=4,cpu=4,gres/gpu:a40=1,gres/gpu=1,mem=32G,node=1|1|1:0 +38629582_2|eval_run_a_84|klone|ckpt|ckpt-gpu|FAILED|2026-08-18T08:01:30|2026-08-18T08:04:02|2026-08-18T08:14:04|602|billing=4,cpu=4,gres/gpu:a40=1,gres/gpu=1,mem=32G,node=1|1|1:0 +38629582_3|eval_run_a_84|klone|ckpt|ckpt-gpu|FAILED|2026-08-18T08:01:30|2026-08-18T08:04:02|2026-08-18T08:14:25|623|billing=4,cpu=4,gres/gpu:p100=1,gres/gpu=1,mem=32G,node=1|1|1:0 +38629582_4|eval_run_a_84|klone|ckpt|ckpt-gpu|FAILED|2026-08-18T08:01:30|2026-08-18T08:04:02|2026-08-18T08:14:25|623|billing=4,cpu=4,gres/gpu:p100=1,gres/gpu=1,mem=32G,node=1|1|1:0 +38629582_5|eval_run_a_84|klone|ckpt|ckpt-gpu|FAILED|2026-08-18T08:01:30|2026-08-18T08:04:02|2026-08-18T08:14:25|623|billing=4,cpu=4,gres/gpu:p100=1,gres/gpu=1,mem=32G,node=1|1|1:0 +38629582_6|eval_run_a_84|klone|ckpt|ckpt-gpu|FAILED|2026-08-18T08:01:30|2026-08-18T08:04:02|2026-08-18T08:14:20|618|billing=4,cpu=4,gres/gpu:p100=1,gres/gpu=1,mem=32G,node=1|1|1:0 +38629582_7|eval_run_a_84|klone|ckpt|ckpt-gpu|FAILED|2026-08-18T08:01:30|2026-08-18T08:04:02|2026-08-18T08:14:20|618|billing=4,cpu=4,gres/gpu:p100=1,gres/gpu=1,mem=32G,node=1|1|1:0 +38629582_8|eval_run_a_84|klone|ckpt|ckpt-gpu|FAILED|2026-08-18T08:01:30|2026-08-18T08:04:02|2026-08-18T08:14:20|618|billing=4,cpu=4,gres/gpu:p100=1,gres/gpu=1,mem=32G,node=1|1|1:0 +38632718|jsomeara_sums|klone|ckpt|ckpt|COMPLETED|2026-08-18T11:15:16|2026-08-18T11:15:33|2026-08-18T11:40:11|1478|billing=8,cpu=8,mem=8G,node=1|1|0:0 +38633254_1|eval_run_a_84|klone|ckpt|ckpt-gpu|COMPLETED|2026-08-18T11:49:46|2026-08-18T11:49:47|2026-08-18T12:01:23|696|billing=4,cpu=4,gres/gpu:2080ti=1,gres/gpu=1,mem=32G,node=1|1|0:0 +38633254_2|eval_run_a_84|klone|ckpt|ckpt-gpu|COMPLETED|2026-08-18T11:49:46|2026-08-18T11:49:47|2026-08-18T11:59:57|610|billing=4,cpu=4,gres/gpu:a40=1,gres/gpu=1,mem=32G,node=1|1|0:0 +38633254_3|eval_run_a_84|klone|ckpt|ckpt-gpu|COMPLETED|2026-08-18T11:49:46|2026-08-18T11:49:47|2026-08-18T12:04:17|870|billing=4,cpu=4,gres/gpu:a40=1,gres/gpu=1,mem=32G,node=1|1|0:0 +38633254_4|eval_run_a_84|klone|ckpt|ckpt-gpu|COMPLETED|2026-08-18T11:49:46|2026-08-18T11:49:47|2026-08-18T12:03:08|801|billing=4,cpu=4,gres/gpu:a40=1,gres/gpu=1,mem=32G,node=1|1|0:0 +38633254_5|eval_run_a_84|klone|ckpt|ckpt-gpu|COMPLETED|2026-08-18T11:49:46|2026-08-18T11:49:47|2026-08-18T12:04:17|870|billing=4,cpu=4,gres/gpu:a40=1,gres/gpu=1,mem=32G,node=1|1|0:0 +38633254_6|eval_run_a_84|klone|ckpt|ckpt-gpu|COMPLETED|2026-08-18T11:49:46|2026-08-18T11:49:47|2026-08-18T12:03:51|844|billing=4,cpu=4,gres/gpu:a40=1,gres/gpu=1,mem=32G,node=1|1|0:0 +38633254_7|eval_run_a_84|klone|ckpt|ckpt-gpu|COMPLETED|2026-08-18T11:49:46|2026-08-18T11:49:47|2026-08-18T12:04:14|867|billing=4,cpu=4,gres/gpu:a40=1,gres/gpu=1,mem=32G,node=1|1|0:0 +38633254_8|eval_run_a_84|klone|ckpt|ckpt-gpu|COMPLETED|2026-08-18T11:49:46|2026-08-18T11:49:47|2026-08-18T12:03:28|821|billing=4,cpu=4,gres/gpu:a40=1,gres/gpu=1,mem=32G,node=1|1|0:0 +38640313|rampnet_cosine_rung_135|klone|ckpt-all|ckpt-gpu|PREEMPTED|2026-08-18T16:51:16|2026-08-19T01:21:56|2026-08-19T02:55:53|5637|billing=48,cpu=48,gres/gpu:a40=16,gres/gpu=16,mem=192G,node=4|4|0:0 +38640313|rampnet_cosine_rung_135|klone|ckpt-all|ckpt-gpu|PENDING|2026-08-19T02:56:52|Unknown|Unknown|0||4|0:0 +38657533|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|PREEMPTED|2026-08-19T06:10:44|2026-08-19T06:12:02|2026-08-19T06:20:10|488|billing=12,cpu=12,gres/gpu:l40s=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38657535|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|RUNNING|2026-08-19T06:10:44|2026-08-19T06:12:33|Unknown|1233|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 +38657533|yolo_curb_ramp_train|klone|ckpt-g2|ckpt-gpu|RUNNING|2026-08-19T06:21:01|2026-08-19T06:23:15|Unknown|591|billing=12,cpu=12,gres/gpu:h200=1,gres/gpu=1,mem=64G,node=1|1|0:0 diff --git a/docs/model_comparison.md b/docs/model_comparison.md index 46c3971b..6d95ccaf 100644 --- a/docs/model_comparison.md +++ b/docs/model_comparison.md @@ -1570,21 +1570,31 @@ the end of a leg that logged nothing, for the case where the log path existed bu be written. A warning after the fact could not have saved these four legs — by the time it prints, the tokens are bought and the counts are already unrecoverable. -## Cost accounting for paid models - -**Standing rule: every experiment that spends API money records what it spent, at the time -it runs.** A paper reports cost alongside accuracy, and a token count that wasn't captured -at run time has to be reconstructed later (or lost). Three layers: - -1. **At run time** — `compare.py` accumulates each paid provider's own usage metadata - (currently Gemini; local GPU models are free in API terms) and appends one JSONL record - per model run — token counts, panos actually scored, detector signature, estimated cost — - to `--usage-log` (default **`analysis_out/usage_log.jsonl`**, which is committed; - `--usage-log none` disables). Cached panos make no call, so the record is what *that run* - actually paid, not what a full run would cost. The append happens in a `finally`, so a leg +## Cost accounting: what a run cost in time and money + +**Standing rule: every experiment on a non-free model or non-free compute records both its +wall-clock time and its spend, at the time it runs (#143).** A paper reports cost alongside +accuracy, and neither number survives being left for later — a re-run reads the detection +cache, makes no calls and returns in seconds, so it reproduces neither the token counts nor +the runtime. Three layers, plus a separate ledger for cluster compute: + +1. **At run time** — `compare.py` appends one JSONL record per model run to `--usage-log` + (default **`analysis_out/usage_log.jsonl`**, which is committed; `--usage-log none` + disables). Every leg that spent something gets a row: **wall-clock, model-load seconds, + inference seconds, panos actually put through the model and seconds-per-pano always**, and + token counts + estimated cost when the provider bills for them (a `paid` flag says which). + Cached panos make no call, so the record is what *that run* actually paid, not what a full + run would cost — and per-pano figures divide by `panos_called`, never by the bundle size. + The append happens in a `finally`, so a leg that dies or is interrupted after paying still records its spend — that is the case the rule exists for — and a failure to write the file degrades to printing the record rather than aborting the comparison. + **Free local models get a row too.** OWLv2, Grounding DINO, Qwen, Molmo and the YOLO arms + bill no tokens and cost real GPU-hours; before #143 they returned early and left no record + at all, which is why their runtimes below are prose transcribed by hand rather than + anything a script can re-derive. Two legs deliberately write nothing: a fully cached + re-score (it spent nothing) and `--models rampnet`, which replays detections already + committed to the bundle rather than running a model. Each record also carries **`model_versions`** — the build(s) that actually served the run. **A pinned model id is an alias, not a build**: `gemini:gemini-3.7-flash` in `--models` resolves to whatever the provider currently serves under that name, and the alias moves. @@ -1609,6 +1619,86 @@ at run time has to be reconstructed later (or lost). Three layers: source others cannot query, while `analysis_out/usage_log.jsonl` is checkable from a clean clone. +### Reconcile, or a silent no-write goes unnoticed + +Layers 1 and 3 measure the same spend two ways, and until #143 nothing compared them. +`vertex_usage.py --reconcile` does: it totals the committed ledger per model over the same +window as the metric query and prints both side by side. + +```bash +python scripts/analysis/vertex_usage.py --days 3 --reconcile +``` + +It is the **only** check that catches a leg which ran, billed, and left no row — the #139 +failure. The verdicts are deliberately asymmetric: `billed > ledger` is spend with no record +and is called out, while `ledger > billed` is odd but harmless (a re-run, or a row stamped +just outside the window). Tolerance is 2%, because Cloud Monitoring's daily rows are 24 h +windows ending at the query's time-of-day rather than calendar days, so a leg straddling the +boundary moves either way. Run it the day a paid leg finishes, not at writing-up time. + +It also separates a gap nobody has looked at from one that is already written down. A row +marked `kind: recovered` is never counted as logged — it was read off this same bill, so +counting it would compare the bill against itself — but it is totalled in its own column and +subtracted before the verdict. So #139's 11,940,249 opus tokens now read `ok (1 recovered)` +rather than raising the same emergency on every run, and only the unexplained remainder gets +`UNDER`. + +### Cluster compute is a fourth ledger + +Layers 1–3 cover API money. They say nothing about GPU-hours, which is what most of the +roster actually costs and the whole of what a Tillicum run costs. +`scripts/analysis/slurm_usage.py` scrapes `sacct` into **`analysis_out/compute_log.jsonl`** +— one row per job allocation with elapsed, GPUs, GPU type, GPU-hours, QoS and dollars, priced +from `COMPUTE_PRICING` in `pricing.py` (verified-only, same discipline as the token table). + +```bash +python scripts/analysis/slurm_usage.py --cluster tillicum --since 2026-07-01 +python scripts/analysis/slurm_usage.py --cluster klone --from-file sacct_klone.txt +``` + +Three details that a hand tally gets wrong: + +- **`sacct -D`.** By default Slurm reports only the *last* incarnation of a requeued job. Our + klone runs live on the preemptable `ckpt` partition — the paper's Stage 2 run was 15 + preemptions, 44.7 h of compute across 74.6 h of calendar — so without `-D` most of a + preempted run's compute silently disappears. Rows are keyed on **(cluster, job id, start)** + for the same reason. +- **GPU-hours = elapsed × N GPUs**, which is how Tillicum bills: an idle GPU in a 2-GPU job + costs exactly what a busy one does. `gres/gpu=2` and `gres/gpu:a40=2` are the same GPUs + reported twice, so the generic count wins rather than being summed. +- **Unpriced ≠ free.** klone is $0 because that was checked; a cluster with no entry returns + `None`. Only one of those is safe to put in a paper. + +Unlike tokens, this half is **partly back-fillable** — `sacct` retains job records — which is +the argument for running it now rather than at writing-up time. `--save-raw` keeps the exact +dump a run parsed, so committing it makes the numbers re-derivable by someone with no cluster +account. + +### The ledger has to outlive the run + +`--usage-log` used to default to a path derived from the *running file's* checkout. From a +linked worktree that is the worktree — so a leg run from a scratch worktree wrote its ledger +there, and the ledger died with the worktree. That is how the #139 `claude-opus-5` leg spent +$70.41 and left no row. + +The #119 guard cannot catch this, and it is worth being precise about why: it proves a log +path was **accepted**, not that the file it wrote still **exists**. The operator followed the +rule and lost the record anyway. Nor would promoting the rule into `CLAUDE.md` have helped — +this is not a discipline failure. + +Both ledgers now resolve through `git rev-parse --git-common-dir`, which every worktree of a +repo shares, so they all append to one canonical file in the main checkout; an explicit +`--usage-log` pointing into a worktree warns; and each logged leg prints the **absolute** path +plus the running total, so a run that logged somewhere unexpected is visible while someone is +still watching. It falls back to the local checkout whenever git can't answer (a tarball, an +HF clone) — bookkeeping must never be the reason a run refuses to start. + +The credentials resolve the same way. `compare.py` and `vertex_usage.py` read `.env` from the +worktree they are running in *and* from the main checkout, worktree first so a deliberate +local override still wins: a scratch worktree does not carry the `.env`, and a leg that cannot +find `GOOGLE_CLOUD_PROJECT` or an API key from the place it was most likely launched is a leg +that does not run — including the recovery tool itself. + **Measured: the complete Gemini history of this benchmark** (Cloud Monitoring, 2026-08-15; every Gemini leg ever run on the project — richmond/bend 07-23/24 onward — falls inside the retention window): diff --git a/docs/replication.md b/docs/replication.md index 883c7077..4bf73374 100644 --- a/docs/replication.md +++ b/docs/replication.md @@ -17,6 +17,7 @@ lives on one machine. | `analysis_out/op_cache/*.json` (RampNet low-floor detections) | ~KB | **committed** | ✅ | | `analysis_out/*.json` (derived results) | ~100 KB | **committed** | ✅ | | `analysis_out/usage_log.jsonl` (paid-run spend) | ~KB | **committed** ✅ | ⚠️ starts 2026-08-18; see the Claude section | +| `analysis_out/compute_log.jsonl` (cluster GPU-hours + $) | ~KB | **committed** ✅ | ⚠️ needs a `sacct` pull per cluster (#143); klone back-filled 2026-08-19 (3,991 rows), Tillicum pending | | `benchmark/miss_taxonomy_46/*.json` (human verdicts) | small | **committed** | ✅ | | RampNet model weights | — | HF `projectsidewalk/rampnet-model` | ✅ | | Stage 1 dataset | **463 GB** (test split ~44 GB) | HF `projectsidewalk/rampnet-dataset` | ✅ | diff --git a/docs/tillicum.md b/docs/tillicum.md index 1b886560..2ac2906a 100644 --- a/docs/tillicum.md +++ b/docs/tillicum.md @@ -135,7 +135,12 @@ At that ceiling: | 2 GPUs | ~833 | | 8 GPUs (full node) | ~208 | -Monitor with `hyakusage`. +Monitor with `hyakusage`. **Record it too**: `hyakusage` is a live view, not a record, and +the numbers in this file were transcribed by hand, per job, when someone remembered. +`scripts/analysis/slurm_usage.py` writes them to `analysis_out/compute_log.jsonl` from +`sacct` instead — GPU-hours and dollars per job, priced from `COMPUTE_PRICING` in +`scripts/model_comparison/pricing.py`, which carries the rates below with their as-of +dates. Run it after a job finishes; `sacct` retention is finite (#143). ### `debug` is free — but the two cost tools disagree (measured 2026-07-31) diff --git a/rampnet/ledger.py b/rampnet/ledger.py new file mode 100644 index 00000000..7f0086f4 --- /dev/null +++ b/rampnet/ledger.py @@ -0,0 +1,128 @@ +"""Where a cost record goes, and how to total one. + +Shared by both ledgers — the per-run API/time record (`compare.py --usage-log` +-> `analysis_out/usage_log.jsonl`) and the per-job compute record +(`scripts/analysis/slurm_usage.py` -> `analysis_out/compute_log.jsonl`) — because +the way to lose a cost record is the same for both, and it has already happened +twice. + +**A ledger is not a commit.** #123's four Claude legs spent $28.82 and left no +record. #139's claude-opus-5 leg spent $70.41 and left no record: it ran from a +scratch worktree, so the default log path resolved *inside that worktree*, and the +worktree was deleted. Neither loss was visible to the #119 guard, which proves a +log path was accepted and says nothing about whether the file survives. + +Hence `canonical_repo_root`: git's *common* dir is shared by every worktree of a +repo, so its parent is the one checkout that outlives them all, and every worktree +appends to a single ledger in the main checkout. +""" +import json +import subprocess +from pathlib import Path + +#: A row's provenance. Absent means ``MEASURED``: every row written before this +#: convention existed was taken at run time. +MEASURED = "measured" +#: Reconstructed after the fact from the provider's billing telemetry, because layer 1 +#: failed to write and the spend would otherwise be absent from every total. +RECOVERED = "recovered" + + +def row_kind(rec): + """``MEASURED`` or ``RECOVERED`` for one ledger row. + + **A recovered row is not a measurement, and the difference matters for + reconciliation.** It carries real money and real token counts, but it was read + *off the bill*, so: + + - it has **no per-split attribution** — recovery is per-model per-day, and which + split spent what is permanently gone; + - it must **never count as a measurement in reconciliation**. + ``vertex_usage.reconcile`` compares the ledger against that same bill, so + counting a recovered row as "logged" makes the bill agree with itself and + reports ``ok`` for precisely the gap the check exists to find. It is reported + in a column of its own and subtracted before the verdict, so a gap already + written down is not re-raised as an emergency on every run either. + + Totals still include it — a cost table that omits recovered spend is wrong by the + whole amount, which for #139 was a factor of about 200. + """ + return rec.get("kind") or MEASURED + + +def canonical_repo_root(start): + """The MAIN checkout for ``start``, even when ``start`` is a linked worktree. + + Falls back to ``start`` whenever git cannot answer — a tarball, an HF clone, + no git on PATH. Bookkeeping must never be the reason a run refuses to start.""" + start = Path(start) + try: + proc = subprocess.run(["git", "rev-parse", "--git-common-dir"], + cwd=str(start), capture_output=True, text=True, + timeout=10) + except (OSError, subprocess.SubprocessError): + return start + if proc.returncode != 0 or not proc.stdout.strip(): + return start + # git returns a bare ".git" when run from the root of a normal checkout and an + # absolute path from a worktree; Path handles both. + root = (start / proc.stdout.strip()).resolve().parent + return root if root.is_dir() else start + + +def read_rows(path): + """Every parseable row in a JSONL ledger, or None if it cannot be read. + + Tolerant by construction: these files are append-only and committed, so they + hold rows written by older versions of the code, and one unparseable line must + never cost a reader the rest of the record.""" + rows = [] + try: + with open(path, encoding="utf-8") as f: + for line in f: + line = line.strip() + if not line: + continue + try: + rows.append(json.loads(line)) + except ValueError: + continue + except OSError: + return None + return rows + + +def append_rows(path, rows): + """Append rows to a JSONL ledger, creating it if needed. + + newline="" so a Windows run appends LF, not CRLF: these ledgers are + append-only and byte-compared in review, and a CRLF line silently breaks that + (the same defect imagery_manifest.py was fixed for).""" + path = Path(path) + if path.parent: + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, "a", encoding="utf-8", newline="") as f: + for rec in rows: + f.write(json.dumps(rec) + "\n") + + +def ledger_totals(path): + """(rows, total USD, wall-clock hours, recovered USD) in an existing ledger. + + Printed after every logged leg so a run that wrote somewhere unexpected is + visible *while someone is still watching*, rather than weeks later when the + provider's usage telemetry has aged out. Rows predating #143 carry no timing + keys and free rows carry no cost; both are counted as the zero they are. + + ``recovered`` is the part of the USD total that came from :data:`RECOVERED` rows + rather than from measurement. It is reported separately, not subtracted: the + money was really spent, but nobody timed it and no split can claim it, so a + reader should never mistake it for an as-run number.""" + rows = read_rows(path) + if rows is None: + return None + usd = sum(r.get("est_cost_usd") or 0 for r in rows) + seconds = sum(r.get("elapsed_s") or 0 for r in rows) + recovered = sum(r.get("est_cost_usd") or 0 + for r in rows if row_kind(r) == RECOVERED) + return len(rows), usd, seconds / 3600.0, recovered diff --git a/scripts/analysis/slurm_usage.py b/scripts/analysis/slurm_usage.py new file mode 100644 index 00000000..52f511a4 --- /dev/null +++ b/scripts/analysis/slurm_usage.py @@ -0,0 +1,344 @@ +"""What our cluster jobs cost, in GPU-hours and dollars, from Slurm's own accounting. + +The API half of an experiment's cost has been recorded per run since #119 +(`compare.py --usage-log` -> `analysis_out/usage_log.jsonl`). The compute half was +not recorded anywhere: Tillicum's $0.90/GPU-hour and klone's GPU-hours lived only +as prose in `docs/tillicum.md`, written by hand, per job, when someone remembered. +This is the missing ledger (#143). + +Unlike API tokens, this half is **partly back-fillable** — `sacct` retains job +records — which is the whole reason to run it now rather than later. + + # on a login node (klone, tillicum): + python scripts/analysis/slurm_usage.py --cluster tillicum --since 2026-07-01 + + # from a machine that cannot reach the cluster: save the dump there, parse here + ssh klone 'sacct -X -D -P -n -u $USER -S 2026-07-01 \\ + --format=JobID,JobName%60,Cluster,Partition,QOS,State,Submit,Start,End,\\ +ElapsedRaw,AllocTRES,NNodes,ExitCode' > sacct_klone.txt + python scripts/analysis/slurm_usage.py --cluster klone --from-file sacct_klone.txt + +`--print-command` prints that command for the current settings rather than guessing. + +**Replication:** `sacct` output is retrievable only by someone with an account on the +cluster, so `--save-raw` writes the exact dump a run parsed. Commit it next to the +numbers it produced (`docs/data/compute/`) and the ledger becomes re-derivable from a +clean clone with no cluster access — the same reason `usage_log.jsonl` is committed +while `vertex_usage.py` needs cloud credentials. + +Three things this gets right that a hand tally does not: + +- **`-D` (duplicates).** Slurm shows only the last incarnation of a requeued job by + default. Our klone runs live on the preemptable `ckpt` partition — the paper's + Stage 2 run was 15 preemptions and 44.7 h of active compute across 74.6 h of + calendar — so without `-D` the compute is undercounted by whatever the earlier + incarnations burned. +- **GPU-hours = elapsed x N GPUs**, which is how Tillicum bills: an idle GPU in a + 2-GPU job costs exactly as much as a busy one. +- **Idempotent.** Rows are keyed by (cluster, job id, start), so re-running after + more jobs finish appends only what is new. A job first recorded while RUNNING is + re-appended once it reaches a terminal state, so every total reads the ledger + through `latest_rows`, which keeps the last row per key. +""" +import argparse +import os +import re +import subprocess +import sys +from collections import defaultdict +from datetime import datetime, timezone +from pathlib import Path + +REPO = Path(__file__).resolve().parents[2] +sys.path.insert(0, str(REPO)) +sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "model_comparison")) +from rampnet import ledger # noqa: E402 +from pricing import compute_price_for, estimate_compute_cost # noqa: E402 + +DEFAULT_COMPUTE_LOG_REL = os.path.join("analysis_out", "compute_log.jsonl") + +# Pinned, because the parser indexes by position: a caller who changes one must +# change the other. %60 widens JobName, which sacct otherwise truncates to 8 chars +# and would make every job name in the ledger useless. +SACCT_FIELDS = ("JobID", "JobName%60", "Cluster", "Partition", "QOS", "State", + "Submit", "Start", "End", "ElapsedRaw", "AllocTRES", "NNodes", + "ExitCode") +COLUMNS = [f.split("%")[0] for f in SACCT_FIELDS] + +# Both spellings Slurm uses: `gres/gpu=2` and the typed `gres/gpu:a40=2`. A job +# usually reports both, which is why the generic count wins rather than being added. +GPU_TRES = re.compile(r"gres/gpu(?::([^=,]+))?=(\d+)") + +# Terminal from the accounting point of view: the elapsed time will not grow. +# REQUEUED is one of them: the incarnation under that state has an End time and a +# fixed elapsed, and the next incarnation gets its own (job id, start) key. +TERMINAL_STATES = ("COMPLETED", "FAILED", "CANCELLED", "TIMEOUT", "PREEMPTED", + "NODE_FAIL", "OUT_OF_MEMORY", "BOOT_FAIL", "DEADLINE", "REVOKED", + "REQUEUED") + + +def sacct_command(user, since, until=None): + cmd = ["sacct", "-X", "-D", "-P", "-n", "-u", user, "-S", since, + "--format=" + ",".join(SACCT_FIELDS)] + if until: + cmd += ["-E", until] + return cmd + + +def gpus_from_tres(tres): + """(GPU count, GPU type or None) from an AllocTRES string. + + The generic ``gres/gpu=N`` wins over the typed ``gres/gpu:a40=N`` because + Slurm reports both for the same GPUs; summing them would double every job.""" + generic, typed = 0, defaultdict(int) + for gpu_type, count in GPU_TRES.findall(tres or ""): + if gpu_type: + typed[gpu_type] += int(count) + else: + generic = max(generic, int(count)) + return (generic or sum(typed.values())), (",".join(sorted(typed)) or None) + + +def is_terminal(state): + # "CANCELLED by 12345" is one state with a suffix, so match on the head. + return (state or "").split()[0].upper() in TERMINAL_STATES if state else False + + +def parse_sacct(text, cluster=None, user=None): + """Rows for one ledger, from `sacct -P -n` output. + + ``cluster`` overrides sacct's own Cluster column, which reports the Slurm + cluster name — that is what we want when they agree and a lie when a site + names its cluster something other than how we price it.""" + rows, overridden = [], set() + for line in text.splitlines(): + line = line.strip() + if not line: + continue + parts = line.split("|") + if len(parts) != len(COLUMNS): + continue # a header, a warning, a wrapped line: not a job record + rec = dict(zip(COLUMNS, parts)) + elapsed_s = int(rec["ElapsedRaw"]) if rec["ElapsedRaw"].isdigit() else 0 + gpus, gpu_type = gpus_from_tres(rec["AllocTRES"]) + gpu_hours = elapsed_s / 3600.0 * gpus + name = (cluster or rec["Cluster"] or "").lower() + if cluster and rec["Cluster"] and rec["Cluster"].lower() != cluster.lower(): + overridden.add(rec["Cluster"]) + cost = estimate_compute_cost(name, gpu_hours, rec["QOS"]) + price = compute_price_for(name) + rows.append({ + "cluster": name, + "job_id": rec["JobID"], + "job_name": rec["JobName"], + "user": user, + "partition": rec["Partition"] or None, + "qos": rec["QOS"] or None, + "state": rec["State"], + "submit": rec["Submit"] or None, + "start": rec["Start"] or None, + "end": rec["End"] or None, + # Named to match usage_log.jsonl so one reader can total both ledgers. + "elapsed_s": elapsed_s, + "nodes": int(rec["NNodes"]) if rec["NNodes"].isdigit() else None, + "gpus": gpus, + "gpu_type": gpu_type, + "gpu_hours": round(gpu_hours, 4), + "exit_code": rec["ExitCode"] or None, + "est_cost_usd": round(cost, 4) if cost is not None else None, + # The rate and the date it was checked, not the whole pricing entry: + # this ledger runs to thousands of rows (3,991 on klone alone, because + # ckpt requeues), and embedding the full table in each one was 1.7 MB of + # the 2.6 MB file. The table itself, caveats included, is versioned in + # scripts/model_comparison/pricing.py. + "rate_usd_per_gpu_hour": (price or {}).get("usd_per_gpu_hour"), + "rate_as_of": (price or {}).get("as_of"), + }) + if overridden: + # Silently restamping another cluster's jobs would price them at the wrong + # rate and attribute their GPU-hours to the wrong machine -- and a dump can + # legitimately span clusters. Loud, because nothing downstream can detect it. + print(f"WARNING: --cluster {cluster} overrides the Cluster column on rows " + f"reporting {', '.join(sorted(overridden))}. Those jobs are now priced " + f"and attributed as {cluster}. Drop --cluster to trust sacct's own " + f"names.") + return rows + + +def row_key(rec): + """(cluster, job id, start) — not the job id alone. + + With `-D` a requeued job appears once per incarnation under the same id, and + on `ckpt` that is routine: collapsing them on job id would throw away most of + a preempted run's compute.""" + return (rec.get("cluster"), rec.get("job_id"), rec.get("start")) + + +def new_rows(parsed, existing): + """The rows worth appending: ones never seen, plus ones whose stored state was + still non-terminal and has since finished.""" + seen = {} + for rec in existing or []: + seen[row_key(rec)] = rec + out = [] + for rec in parsed: + prior = seen.get(row_key(rec)) + if prior is None: + out.append(rec) + elif not is_terminal(prior.get("state")) and is_terminal(rec.get("state")): + out.append(rec) + return out + + +def latest_rows(rows): + """The last row per key, which is what any total has to read. + + `new_rows` re-appends a job that was first recorded while RUNNING, so the + ledger holds both the understated row and the finished one. Summing every row + counts that job twice. The key is (cluster, job id, start), so genuinely + separate requeued incarnations are untouched.""" + latest = {} + for rec in rows: + latest[row_key(rec)] = rec + return list(latest.values()) + + +def summarize(rows): + """Per-cluster totals: jobs, GPU-hours, dollars. What a paper's methods + section quotes, and what `hyakusage` is checked against.""" + by_cluster = defaultdict(lambda: {"jobs": 0, "gpu_hours": 0.0, "usd": 0.0, + "elapsed_h": 0.0, "unpriced": 0}) + for rec in latest_rows(rows): + agg = by_cluster[rec.get("cluster") or "?"] + agg["jobs"] += 1 + agg["gpu_hours"] += rec.get("gpu_hours") or 0 + agg["elapsed_h"] += (rec.get("elapsed_s") or 0) / 3600.0 + if rec.get("est_cost_usd") is None: + agg["unpriced"] += 1 + else: + agg["usd"] += rec["est_cost_usd"] + return dict(by_cluster) + + +def print_by_name(rows, top=15): + """GPU-hours per job name. + + The ledger records every job on the account, including other projects' -- a + complete measurement, with attribution left to the reader rather than baked + into the durable artifact by a filter chosen once. This is how the reader sees + the composition immediately instead of summing the wrong thing.""" + agg = defaultdict(lambda: [0, 0.0, 0.0]) + for rec in latest_rows(rows): + a = agg[rec.get("job_name") or "?"] + a[0] += 1 + a[1] += rec.get("gpu_hours") or 0 + a[2] += rec.get("est_cost_usd") or 0 + ranked = sorted(agg.items(), key=lambda kv: -kv[1][1]) + print(f"\n{'job name':<34} {'jobs':>6} {'GPU-h':>10} {'est $':>9}") + print("-" * 62) + for name, (jobs, gpu_h, usd) in ranked[:top]: + print(f"{name:<34.34} {jobs:>6,} {gpu_h:>10,.1f} {usd:>9,.2f}") + if len(ranked) > top: + rest = ranked[top:] + print(f"{f'... {len(rest)} more job name(s)':<34} " + f"{sum(a[0] for _, a in rest):>6,} {sum(a[1] for _, a in rest):>10,.1f} " + f"{sum(a[2] for _, a in rest):>9,.2f}") + + +def print_summary(rows, title): + print(f"\n{title}") + print(f"{'cluster':<12} {'jobs':>6} {'GPU-h':>10} {'wall-h':>9} {'est $':>9}") + print("-" * 50) + for cluster, agg in sorted(summarize(rows).items()): + unpriced = f" ({agg['unpriced']} unpriced)" if agg["unpriced"] else "" + print(f"{cluster:<12} {agg['jobs']:>6,} {agg['gpu_hours']:>10,.2f} " + f"{agg['elapsed_h']:>9,.2f} {agg['usd']:>9,.2f}{unpriced}") + + +def main(): + ap = argparse.ArgumentParser(description=__doc__.split("\n", 1)[0]) + ap.add_argument("--cluster", help="Cluster name for pricing (tillicum, klone). " + "Defaults to sacct's own Cluster column.") + ap.add_argument("--user", default=os.environ.get("USER") or os.environ.get("USERNAME"), + help="Slurm user to query (default: $USER).") + ap.add_argument("--since", default="2026-07-01", + help="sacct -S start date (default: 2026-07-01, before the first " + "RampNet cluster run this ledger covers).") + ap.add_argument("--until", help="sacct -E end date (default: now).") + ap.add_argument("--from-file", help="Parse a saved `sacct -P -n` dump instead of " + "running sacct (for machines off the cluster).") + ap.add_argument("--save-raw", help="Write the sacct output parsed by this run, so " + "the numbers stay re-derivable without cluster " + "access. Commit it beside the results.") + ap.add_argument("--out", help=f"Ledger to append to (default: " + f"{DEFAULT_COMPUTE_LOG_REL} in the main checkout).") + ap.add_argument("--by-name", action="store_true", + help="Also break the summary down by job name — the ledger holds " + "every job on the account, including other projects'.") + ap.add_argument("--dry-run", action="store_true", + help="Print what would be appended; write nothing.") + ap.add_argument("--print-command", action="store_true", + help="Print the sacct command for these settings and exit.") + args = ap.parse_args() + + if args.print_command: + print(" ".join(sacct_command(args.user or "$USER", args.since, args.until))) + return 0 + + if args.from_file: + text = Path(args.from_file).read_text(encoding="utf-8") + else: + cmd = sacct_command(args.user, args.since, args.until) + try: + proc = subprocess.run(cmd, capture_output=True, text=True, timeout=300) + except (OSError, subprocess.SubprocessError) as e: + print(f"could not run sacct ({type(e).__name__}: {e}).\nRun it on a login " + f"node and pass the output with --from-file:\n " + + " ".join(sacct_command(args.user or "$USER", args.since, args.until)), + file=sys.stderr) + return 2 + if proc.returncode != 0: + print(f"sacct failed ({proc.returncode}): {proc.stderr.strip()}", file=sys.stderr) + return 2 + text = proc.stdout + + if args.save_raw: + raw = Path(args.save_raw) + raw.parent.mkdir(parents=True, exist_ok=True) + # newline="" so the dump keeps the cluster's own LF endings on Windows: it is + # committed as a replication input and has to stay byte-identical to what + # sacct emitted. + raw.write_text(text, encoding="utf-8", newline="") + print(f"raw sacct output saved to {args.save_raw}") + + rows = parse_sacct(text, cluster=args.cluster, user=args.user) + if not rows: + print("no job records parsed — check the sacct format and the date range.") + return 1 + print_summary(rows, f"Parsed {len(rows):,} job record(s)") + if args.by_name: + print_by_name(rows) + + # The ledger belongs in the MAIN checkout: a scratch worktree is deleted when + # its session ends, which is how #139's $70.41 vanished (#143). + out = args.out or str(ledger.canonical_repo_root(REPO) / DEFAULT_COMPUTE_LOG_REL) + existing = ledger.read_rows(out) or [] + fresh = new_rows(rows, existing) + stamped = [dict(r, recorded_at=datetime.now(timezone.utc).isoformat(timespec="seconds")) + for r in fresh] + if args.dry_run: + print(f"\n[dry run] {len(fresh):,} new row(s) would be appended to " + f"{os.path.abspath(out)}") + return 0 + if not fresh: + print(f"\nnothing new: all {len(rows):,} record(s) already in " + f"{os.path.abspath(out)}") + return 0 + ledger.append_rows(out, stamped) + print(f"\nappended {len(fresh):,} new row(s) to {os.path.abspath(out)}") + print_summary(existing + stamped, "Ledger now holds") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/scripts/analysis/vertex_usage.py b/scripts/analysis/vertex_usage.py index 62634bf6..60e4b2f6 100644 --- a/scripts/analysis/vertex_usage.py +++ b/scripts/analysis/vertex_usage.py @@ -32,7 +32,9 @@ from pathlib import Path REPO = Path(__file__).resolve().parents[2] +sys.path.insert(0, str(REPO)) sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "model_comparison")) +from rampnet import ledger # noqa: E402 from pricing import estimate_cost, price_for # noqa: E402 TOKEN_METRIC = "aiplatform.googleapis.com/publisher/online_serving/token_count" @@ -43,13 +45,19 @@ def _load_dotenv(): """Reuse compare.py's .env loader so both halves of the harness read the same - credentials file. Imported inside the function (the export_model_cache idiom) - so the module still imports without the detector stack on the path.""" + credentials file, from this checkout and from the main checkout it belongs to. + Imported inside the function (the export_model_cache idiom) so the module still + imports without the detector stack on the path. + + The main checkout matters here for the same reason the ledger does (#143): run + from a scratch worktree, which carries no git-ignored `.env`, this script would + otherwise exit with "no project" — the tool whose job is to recover a lost spend + failing in exactly the situation that loses one.""" try: - from compare import load_dotenv + from compare import load_dotenv_for_run except ImportError: return - load_dotenv(str(REPO)) + load_dotenv_for_run(REPO) def fetch_token_series(project, days): @@ -102,6 +110,116 @@ def fetch_token_series(project, days): return series +def ledger_totals_by_model(rows, since=None): + """Per-model token totals from usage_log.jsonl rows, for reconciliation. + + ``since`` is an ISO date (YYYY-MM-DD); rows stamped earlier are skipped so the + comparison covers the same window the metric query did. Free legs carry no + token keys and are skipped: they have nothing to reconcile against a bill. + + **Recovered rows are totalled separately, and that separation is the point.** A + recovered row was read off this very bill (``rampnet.ledger.RECOVERED``), so + counting it as "logged" would compare the bill against itself and report ``ok`` + for the exact gap this function exists to find — turning the one check that + catches a silent no-write into a check that cannot. It is still worth reporting, + because a gap someone has already written down as unmeasured is not the same + finding as a gap nobody has looked at; ``reconcile`` subtracts it to get the part + that is genuinely unexplained.""" + out = defaultdict(lambda: defaultdict(float)) + for rec in rows or []: + if not rec.get("input_tokens") and not rec.get("output_tokens"): + continue + if since and (rec.get("ts") or "")[:10] < since: + continue + model = rec.get("model_id") or "?" + prefix = "recovered_" if ledger.row_kind(rec) == ledger.RECOVERED else "" + out[model][prefix + "input"] += rec.get("input_tokens") or 0 + out[model][prefix + "output"] += rec.get("output_tokens") or 0 + out[model][prefix + "rows"] += 1 + return {m: dict(v) for m, v in out.items()} + + +def reconcile(billed, logged, tolerance=0.02): + """Compare per-model billed tokens against what the ledger says we recorded. + + This is the only check that catches a **silent no-write** — a paid leg that ran, + billed, and left no row. #119's guard cannot: it proves a log path was accepted, + not that the file survived (#139 lost $70.41 that way). A missing row is only + recoverable while the metric is still retained, ~6 weeks, so the check has to be + run close to the run. + + Returns one dict per model with the billed, logged and recovered totals and a + verdict. Deliberately one-sided in what it treats as alarming: ledger > billed is + odd but harmless (a re-run, a mis-stamped window), while billed > ledger is spend + with no record, which is the failure this exists for. + + The gap that earns a verdict is ``billed - logged - recovered``. A recovered row + still never makes the bill agree with itself, because it is not counted as a + measurement — but it does say that the part of the gap it covers has already been + found, priced and written down, and reporting that part as unaccounted for would + make this check raise an emergency about the one thing that was handled.""" + rows = [] + for model in sorted(set(billed) | set(logged)): + b = billed.get(model, {}) + lg = logged.get(model, {}) + b_in, l_in = b.get("input", 0), lg.get("input", 0) + r_in, r_rows = lg.get("recovered_input", 0), int(lg.get("recovered_rows", 0)) + unexplained = b_in - l_in - r_in + if not l_in and not r_in and b_in: + verdict = "MISSING - billed, nothing logged" + elif b_in and abs(unexplained) / b_in > tolerance: + verdict = ("UNDER — ledger short" if unexplained > 0 + else "over — ledger exceeds billed") + elif r_rows: + verdict = f"ok ({r_rows} recovered)" + else: + verdict = "ok" + rows.append({ + "model_id": model, "billed_input": b_in, "billed_output": b.get("output", 0), + "logged_input": l_in, "logged_output": lg.get("output", 0), + "logged_rows": int(lg.get("rows", 0)), "recovered_input": r_in, + "recovered_output": lg.get("recovered_output", 0), + "recovered_rows": r_rows, "unexplained_input": unexplained, + "verdict": verdict, + }) + return rows + + +def print_reconciliation(rows): + print(f"\n== reconciliation: Cloud Monitoring vs analysis_out/usage_log.jsonl ==") + print(f"{'model':26s} {'billed in':>14s} {'logged in':>14s} {'recovered in':>14s} " + f"{'rows':>5s} verdict") + worst, recovered = [], [] + for r in rows: + print(f" {r['model_id']:24s} {r['billed_input']:14,.0f} " + f"{r['logged_input']:14,.0f} {r['recovered_input']:14,.0f} " + f"{r['logged_rows']:5d} {r['verdict']}") + if r["verdict"].startswith(("MISSING", "UNDER")): + worst.append(r) + elif r["recovered_rows"]: + recovered.append(r) + if worst: + gap = sum(r["unexplained_input"] for r in worst) + print(f"\n {len(worst)} model(s) billed more than the ledger explains " + f"({gap:,.0f} input tokens unaccounted for, over and above any " + f"recovered row).") + print(" A missing layer-1 row is an emergency with a deadline: this metric " + "retains ~6 weeks,\n after which the number is unrecoverable at any " + "price. Recovery is per-model per-DAY,\n so per-split attribution is " + "already gone - record the total against the run it came from.") + else: + print("\n every billed model has a ledger row within tolerance.") + if recovered: + # Stated rather than left to read as a fresh gap: this column is spend that + # WAS lost and has since been reconstructed from the bill, so an operator who + # sees it reported as an emergency every run will learn to ignore the check. + print(f" {len(recovered)} model(s) close the gap with a recovered row " + f"({sum(r['recovered_input'] for r in recovered):,.0f} input tokens) — " + f"a reconstruction\n from this same bill, not a measurement, so the " + f"per-split attribution stays gone.") + return worst + + def main(): ap = argparse.ArgumentParser(description=__doc__.split("\n", 1)[0]) # Same env var the Gemini legs run under (detectors.py GeminiDetector, and the @@ -113,6 +231,14 @@ def main(): "which compare.py also reads from a repo-root .env).") ap.add_argument("--days", type=float, default=30, help="Lookback window (metric retention is ~6 weeks).") + ap.add_argument("--reconcile", action="store_true", + help="Compare these billed totals against what " + "analysis_out/usage_log.jsonl recorded, per model. The only " + "check that catches a paid leg which ran, billed, and left " + "no row (#139, #143).") + ap.add_argument("--usage-log", help="Ledger to reconcile against (default: the " + "committed analysis_out/usage_log.jsonl in " + "the main checkout).") ap.add_argument("--min-tokens", type=int, default=1000, help="Hide rows below this many input tokens (smoke-test noise). " "Suppressed rows are counted and their cost reported.") @@ -185,6 +311,19 @@ def main(): f"excluded (~${suppressed_cost:.2f}): {', '.join(suppressed)}") print("\nEstimates only; the billing console is authoritative for spend.") + if args.reconcile: + log_path = args.usage_log or str( + ledger.canonical_repo_root(REPO) / "analysis_out" / "usage_log.jsonl") + rows = ledger.read_rows(log_path) + if rows is None: + print(f"\ncannot reconcile: no ledger at {os.path.abspath(log_path)}") + return + since = (datetime.now(timezone.utc) + - timedelta(days=args.days)).date().isoformat() + print(f"(ledger: {os.path.abspath(log_path)}, rows stamped >= {since})") + print_reconciliation(reconcile({m: dict(t) for m, t in totals.items()}, + ledger_totals_by_model(rows, since))) + if __name__ == "__main__": main() diff --git a/scripts/model_comparison/compare.py b/scripts/model_comparison/compare.py index 1430ed11..d70b5069 100644 --- a/scripts/model_comparison/compare.py +++ b/scripts/model_comparison/compare.py @@ -29,16 +29,19 @@ import hashlib import json import os +import socket +import subprocess import sys from collections import namedtuple from datetime import datetime, timezone from pathlib import Path +from time import perf_counter REPO_ROOT = Path(__file__).resolve().parents[2] sys.path.insert(0, str(REPO_ROOT)) # rampnet.* (editable install fallback) sys.path.insert(0, str(Path(__file__).resolve().parent)) # local detectors.py -from rampnet import roster # noqa: E402 +from rampnet import ledger, roster # noqa: E402 from rampnet.detection_eval import ( # noqa: E402 build_ground_truth, load_yolo_ground_truths, score_pano, aggregate, prediction_confidence, radius_sq_for, PANO_RADIUS_NORMALIZED, @@ -56,7 +59,26 @@ # (op_cache/, fp_taxonomy.json, silent_witness.json), and .gitignore re-includes # this file by name. DEFAULT_USAGE_LOG_REL = os.path.join("analysis_out", "usage_log.jsonl") -DEFAULT_USAGE_LOG = str(REPO_ROOT / DEFAULT_USAGE_LOG_REL) + + +def canonical_repo_root(start=None): + """The MAIN checkout, even when this is running from a linked worktree. + + ``REPO_ROOT`` is this file's own checkout, so from a worktree the default + ledger lands *inside that worktree* -- and scratch worktrees get deleted, + taking the ledger with them. That is not hypothetical: the #139 + claude-opus-5 leg spent **$70.41 and left no row**, recovered only because + Cloud Monitoring still had it inside its ~6-week window (#143). + + The #119 guard cannot see this failure. It proves a log path was *accepted*, + not that the file it wrote still exists -- the operator followed the rule and + lost the record anyway. See rampnet/ledger.py, which both ledgers share.""" + return ledger.canonical_repo_root(start or REPO_ROOT) + + +def default_usage_log(): + return str(canonical_repo_root() / DEFAULT_USAGE_LOG_REL) + # Generated from detectors.PROVIDERS so the roster cannot drift out of the help # text again (`claude` shipped working but undocumented in three places). @@ -68,7 +90,6 @@ "'yolo:' or --yolo-model." ) - def load_dotenv(root): """Load KEY=VALUE lines from a repo-root .env into os.environ (without overriding already-set vars), so a Gemini key can live in a git-ignored file @@ -85,6 +106,21 @@ def load_dotenv(root): os.environ.setdefault(key.strip(), val.strip().strip('"').strip("'")) +def load_dotenv_for_run(start=None): + """Load `.env` from this checkout and from the main checkout it belongs to. + + Same reason the ledger resolves that way (#143): a leg is often run from a + scratch worktree, which carries no `.env` because the file is git-ignored, so + a Gemini or Claude leg launched there finds no key and `vertex_usage.py` finds + no project. `load_dotenv` uses `setdefault`, so the worktree's own file is read + first and still wins wherever the two disagree.""" + root = Path(start or REPO_ROOT) + load_dotenv(str(root)) + canonical = canonical_repo_root(root) + if canonical != root: + load_dotenv(str(canonical)) + + def cache_key(label, signature, city, pano_id): """Stable hash over everything that determines a detector's output for one pano, so re-runs reuse cached detections and don't re-pay the API.""" @@ -250,7 +286,8 @@ class UnrecordedSpend(Exception): def score_model(detector, records, gts, panos_dir, radius_sq, label, city, cache, - max_consecutive_failures=10, spend_needs_recording=False): + max_consecutive_failures=10, spend_needs_recording=False, + timing=None): """Run one detector over every scored pano and aggregate the score. ``gts`` maps pano id -> GroundTruth (verdict-derived for city bundles, @@ -265,7 +302,21 @@ def score_model(detector, records, gts, panos_dir, radius_sq, label, city, cache detections are cached, so re-runs don't re-pay the API. A transient per-pano failure is recorded and skipped rather than crashing the run; ``max_consecutive_failures`` aborts the model early during an outage instead of - burning budget.""" + burning budget. + + ``timing``, when given, is filled in as the run proceeds: model-load seconds, + inference seconds, and how many panos actually reached the model. It is a + caller-owned dict rather than a return value on purpose -- a leg that dies + partway has still spent the time, and the caller reads it from a ``finally`` + where there is no ModelRun to read (#143).""" + if timing is None: + timing = {} + # panos_called counts ATTEMPTS, not successes: a call that raised still spent + # its wall-clock and, on a paid provider, still billed. It is the honest + # denominator for both seconds-per-pano and dollars-per-pano. + timing.setdefault("load_s", 0.0) + timing.setdefault("detect_s", 0.0) + timing.setdefault("panos_called", 0) sig = detector.signature() if hasattr(detector, "signature") else None keys = {pid: (cache_key(label, sig, city, pid) if sig is not None else None) for pid in gts} @@ -284,7 +335,9 @@ def score_model(detector, records, gts, panos_dir, radius_sq, label, city, cache f"--usage-log none. Token counts cannot be back-filled, so this spend " f"would go unrecorded. Drop --usage-log none, or pass " f"--allow-unrecorded-spend deliberately.") + t_load = perf_counter() detector.prepare() + timing["load_s"] = round(perf_counter() - t_load, 3) else: print(f"[{label}] all {len(cached)} panos already cached; model load skipped") pano_scores, failures, consecutive, scored = [], [], 0, [] @@ -299,6 +352,7 @@ def score_model(detector, records, gts, panos_dir, radius_sq, label, city, cache height=rec["pano"].get("height"), meta=rec["pano"], ) + t_pano = perf_counter() try: preds = detector.detect(sample) except Exception as e: # transient API/network failure: isolate this pano @@ -308,45 +362,105 @@ def score_model(detector, records, gts, panos_dir, radius_sq, label, city, cache failures.append(("", f"{consecutive} consecutive failures; stopped early")) break continue + finally: + # In a finally so the `continue` and `break` paths above are + # counted too: a failed call is spent time and spent money. + timing["detect_s"] += perf_counter() - t_pano + timing["panos_called"] += 1 consecutive = 0 if key: cache.put(key, preds) scored.append((preds, gt)) pano_scores.append(score_pano(preds, gt, radius_sq=radius_sq)) + timing["detect_s"] = round(timing["detect_s"], 3) return ModelRun(aggregate(pano_scores), failures, scored) -def report_usage(detector, label, city, panos_scored, usage_log_path): - """Print and (append-)log a paid model's token usage + estimated cost. +def hardware_note(): + """What this run had to compute with -- best effort, and cheap. - Standing rule: every experiment that spends API money records what it spent, - at the time it runs, so a paper can report cost alongside accuracy. Token - counts come from the provider's own usage metadata accumulated by the - detector during THIS run (cached panos made no call and cost nothing here); - the dollar figure is an estimate from the verified table in pricing.py, and - the billing console stays authoritative. Reconcile against actual project - token counts with scripts/analysis/vertex_usage.py. + Reports GPUs only when torch is ALREADY imported. A hosted-API leg must not + pay a multi-second torch import for bookkeeping, and "torch was never + loaded" is itself the honest answer: this harness ran no local model. + + The GPU list is what the MACHINE had, not proof this leg used it -- + ``device_map="auto"`` and the CPU fallbacks in detectors.py both exist. Read + it as the run's environment, and the .slurm job record (compute_log.jsonl) + as what was actually allocated.""" + note = {"host": socket.gethostname()} + torch = sys.modules.get("torch") + if torch is None: + return note + try: + if torch.cuda.is_available(): + note["gpus"] = [torch.cuda.get_device_name(i) + for i in range(torch.cuda.device_count())] + except Exception: + pass # a torch that cannot answer must not take down the cost record + return note + + +def report_usage(detector, label, city, panos_scored, usage_log_path, timing=None): + """Print and (append-)log what one leg cost: time always, tokens and dollars + when the provider bills for them. + + Standing rule (#143): every experiment on a non-free model or non-free + compute records BOTH time and money, at the time it runs, so a paper can + report cost alongside accuracy. Neither half is back-fillable -- a re-run + reads the detection cache, makes no calls, and returns in seconds, so it can + reproduce neither the token counts nor the runtime. + + Free local models bill no tokens but cost real GPU-hours, so they get a row + too. Before #143 they returned early here and the whole GPU half of the + roster -- OWLv2, Grounding DINO, Qwen, Molmo, YOLO, RampNet itself -- left no + record at all; their runtimes survive only as prose in docs/model_comparison.md. + + A leg that spent nothing still writes nothing: a fully cached re-score (model + load skipped, zero calls) and a leg that never became runnable both have no + cost to record, and a zero row per re-run would bury the rows that carry a + measurement. Called from a ``finally``, so it must survive being handed a half-finished run: a leg that dies or is interrupted after paying for 400 calls is exactly - the one whose spend must not vanish. It never raises for that reason — + the one whose spend must not vanish. It never raises for that reason -- bookkeeping that can kill the run it is bookkeeping is worse than no - bookkeeping — and it is a no-op when the model made no calls.""" - usage = getattr(detector, "usage", None) - if not usage or not usage.get("calls"): + bookkeeping.""" + timing = dict(timing or {}) + usage = getattr(detector, "usage", None) or {} + calls = usage.get("calls", 0) + panos_called = timing.get("panos_called", 0) + if not calls and not panos_called: + return + if not calls and getattr(detector, "replays_committed_detections", False): + # Reading detections back out of the bundle is not an experiment that cost + # anything. Logging it would put a zero row in a committed, append-only + # file every time anyone re-scores the rampnet arm, which is most runs. return model_id = getattr(detector, "model_id", None) - cost = estimate_cost(model_id, usage["input_tokens"], usage["output_tokens"], - cache_read_tokens=usage.get("cache_read_input_tokens", 0), - cache_write_tokens=usage.get("cache_write_input_tokens", 0)) - pricing = price_for(model_id) - cost_txt = (f" ~=${cost:.2f} (pricing as of {pricing['as_of']})" if cost is not None - else " (no verified price in pricing.py — record one)") - # .get() on thinking: most providers don't report it, and a KeyError here - # would take down a run that has already been paid for. - print(f"[{label}] API usage this run: {usage['calls']} calls, " - f"{usage['input_tokens']:,} in / {usage['output_tokens']:,} out tokens " - f"({usage.get('thoughts_tokens', 0):,} thinking){cost_txt}") + cost = pricing = None + if calls: + cost = estimate_cost(model_id, usage["input_tokens"], usage["output_tokens"], + cache_read_tokens=usage.get("cache_read_input_tokens", 0), + cache_write_tokens=usage.get("cache_write_input_tokens", 0)) + pricing = price_for(model_id) + cost_txt = (f" ~=${cost:.2f} (pricing as of {pricing['as_of']})" if cost is not None + else " (no verified price in pricing.py — record one)") + # .get() on thinking: most providers don't report it, and a KeyError here + # would take down a run that has already been paid for. + print(f"[{label}] API usage this run: {usage['calls']} calls, " + f"{usage['input_tokens']:,} in / {usage['output_tokens']:,} out tokens " + f"({usage.get('thoughts_tokens', 0):,} thinking){cost_txt}") + # Time, for every leg. The per-pano figure divides by panos actually put + # through the model, never by the bundle: on a resumed run most panos come + # from the cache and cost nothing, so len(gts) would understate it severalfold. + detect_s, load_s = timing.get("detect_s") or 0.0, timing.get("load_s") or 0.0 + s_per_pano = (detect_s / panos_called) if panos_called else None + elapsed = timing.get("elapsed_s") + if elapsed is not None: + per_txt = f", {s_per_pano:.2f} s/pano" if s_per_pano is not None else "" + print(f"[{label}] time this run: {elapsed:,.1f}s wall " + f"({load_s:,.1f}s model load, {detect_s:,.1f}s inference over " + f"{panos_called:,} pano(s){per_txt})") # Which BUILD answered, as distinct from the alias we asked for (#121). versions = getattr(detector, "model_versions", None) if versions: @@ -361,24 +475,16 @@ def report_usage(detector, label, city, panos_scored, usage_log_path): if abnormal: print(f"[{label}] ABNORMAL stop reasons: " + ", ".join(f"{k}={v:,}" for k, v in sorted(abnormal.items()))) - if not usage_log_path: - # The token counts are the one artifact that cannot be back-filled: a - # re-run reads the detection cache, makes zero calls, and so can never - # reproduce them. Losing them means the spend is gone for good, which is - # exactly what happened to #123's four Claude legs ($28.82, no record). - print(f"[{label}] WARNING: this leg spent money and its usage was NOT " - f"recorded — --usage-log is disabled. Token counts cannot be " - f"back-filled from a later run (a cached re-run makes no calls), so " - f"this spend is unrecoverable. The standing rule is that every paid " - f"experiment records what it spent, at the time it runs.\n" - f"[{label}] usage record: {json.dumps({'model_id': model_id, **usage})}") - return rec = { "ts": datetime.now(timezone.utc).isoformat(timespec="seconds"), "bundle": city, "label": label, "provider": getattr(detector, "name", None), "model_id": model_id, + # Whether this leg cost API money. Free legs cost GPU time instead and + # carry no token keys at all, so this is the unambiguous filter rather + # than testing for a key's absence. + "paid": bool(calls), # The build(s) that actually served this run, against the alias above. # Cannot be reconstructed later -- .model_cache stores points only -- so # a run that didn't record it never can (#121). @@ -387,6 +493,17 @@ def report_usage(detector, label, city, panos_scored, usage_log_path): # resumed run most panos come from the cache and cost nothing, so # len(gts) would understate cost-per-pano several-fold. "panos_scored": panos_scored, + # ...and panos this run actually put through the model. The two differ by + # the cache hits, which is exactly the difference between "what this leg + # measured" and "what this leg reported on". + "panos_called": panos_called, + "elapsed_s": elapsed, + "load_s": round(load_s, 3), + "detect_s": round(detect_s, 3), + "s_per_pano": round(s_per_pano, 4) if s_per_pano is not None else None, + # The machine, so a runtime can be read against the hardware that produced + # it. A GPU figure is meaningless without it. + "hardware": hardware_note(), # The rig is part of the price: the same model on the same bundle costs # ~6x more tiled than whole-pano, and without this two such runs log # identically. Same reasoning as the detections export (9e87290). @@ -397,6 +514,20 @@ def report_usage(detector, label, city, panos_scored, usage_log_path): "est_cost_usd": round(cost, 4) if cost is not None else None, "pricing": pricing, } + if not usage_log_path: + # The measurement is the one artifact that cannot be back-filled: a + # re-run reads the detection cache, makes zero calls, and so can never + # reproduce it. For a paid leg that means the spend is gone for good, + # which is exactly what happened to #123's four Claude legs ($28.82, no + # record); for a free one it means the runtime is. + what = "spent money and its usage was" if calls else "spent GPU time and its runtime was" + print(f"[{label}] WARNING: this leg {what} NOT recorded — --usage-log is " + f"disabled. It cannot be back-filled from a later run (a cached " + f"re-run makes no calls), so this measurement is unrecoverable. The " + f"standing rule is that every non-free experiment records what it " + f"cost, in time and money, at the time it runs.\n" + f"[{label}] usage record: {json.dumps(rec)}") + return try: os.makedirs(os.path.dirname(usage_log_path) or ".", exist_ok=True) # newline="" so a Windows run appends LF, not CRLF. This ledger is @@ -410,9 +541,18 @@ def report_usage(detector, label, city, panos_scored, usage_log_path): print(f"[{label}] WARNING: could not write {usage_log_path}: " f"{type(e).__name__}: {e}\n[{label}] usage record: {json.dumps(rec)}") return - print(f"[{label}] usage logged to {usage_log_path}") - - + # Absolute, and with the running total: a leg that logged somewhere + # unexpected has to be visible now, not six weeks later when the provider's + # usage telemetry has aged out and the number is gone at any price (#143). + print(f"[{label}] usage logged to {os.path.abspath(usage_log_path)}") + totals = ledger.ledger_totals(usage_log_path) + if totals: + rows, usd, hours, recovered = totals + # Recovered spend is called out rather than folded in: it is real money with + # no timing and no split attribution, so it must not read as an as-run number. + tail = (f" (of which ${recovered:,.2f} recovered, not measured)" + if recovered else "") + print(f"[{label}] ledger now: {rows:,} rows, ${usd:,.2f}, {hours:,.1f} h{tail}") def rescore(scored, radius_sq, min_confidence=0.0): """Re-aggregate a finished run with predictions below ``min_confidence`` dropped. @@ -684,13 +824,14 @@ def build_parser(): help="Where to cache per-pano detections (keyed by model + rig + pano). " "Re-runs reuse hits and don't re-pay the API.") ap.add_argument("--no-cache", action="store_true", help="Disable the detection cache.") - ap.add_argument("--usage-log", default=DEFAULT_USAGE_LOG, - help="Append one JSONL record per paid-model run (token counts + " - f"estimated cost; see pricing.py). Default: {DEFAULT_USAGE_LOG_REL} " - "(tracked in git — the spend record is a durable research fact, " - "not scratch). Pass 'none' to disable, which a paid model " - "refuses to run under unless --allow-unrecorded-spend is given " - "too.") + ap.add_argument("--usage-log", default=default_usage_log(), + help="Append one JSONL record per model run — wall-clock always, " + "token counts and estimated cost when the provider bills for " + f"them (see pricing.py). Default: {DEFAULT_USAGE_LOG_REL} in the " + "MAIN checkout, not this worktree (tracked in git — the cost " + "record is a durable research fact, not scratch). Pass 'none' " + "to disable, which a paid model refuses to run under unless " + "--allow-unrecorded-spend is given too.") ap.add_argument("--allow-unrecorded-spend", action="store_true", help="Permit a paid model to run with --usage-log none. Needed only " "to spend money without recording what it cost, which is not " @@ -707,7 +848,7 @@ def main(): ap = build_parser() args = ap.parse_args() - load_dotenv(str(REPO_ROOT)) + load_dotenv_for_run() specs = [parse_model_spec(t) for t in args.models.split(",") if t.strip()] records, verdicts, panos_dir = load_bundle(args.bundle) # Fail fast on a broken bundle before any (paid) detector call, then reduce @@ -734,6 +875,18 @@ def main(): city = os.path.basename(os.path.normpath(args.bundle)) cache = DetectionCache(args.cache_dir, enabled=not args.no_cache) usage_log = None if args.usage_log == "none" else args.usage_log + if usage_log: + # The #139 failure mode: the ledger written inside a scratch worktree that + # is deleted afterwards, so the run leaves no record and no guard notices + # ($70.41, recovered only from Cloud Monitoring — #143). The default now + # resolves to the main checkout; an explicit --usage-log can still land in + # a worktree, so say so while someone is watching. + canonical = canonical_repo_root() + if canonical != REPO_ROOT and Path(usage_log).resolve().is_relative_to(REPO_ROOT): + print(f"WARNING: --usage-log points inside this worktree " + f"({REPO_ROOT}), not the main checkout ({canonical}). A worktree " + f"is deleted when its session ends and takes the ledger with it; " + f"commit the log or point it at the main checkout.\n") # Whether a paid leg may run without recording what it spends. The check itself # happens in score_model, at the first pano that is NOT already cached -- still # before any money moves, but without refusing a re-score that provably cannot @@ -754,11 +907,12 @@ def main(): label = f"{label}#{seen[label]}" else: seen[label] = 1 - run = None + run, timing = None, {} + t_leg = perf_counter() try: run = score_model( detector, records, gts, panos_dir, radius_sq, label, city, cache, - spend_needs_recording=spend_needs_recording) + spend_needs_recording=spend_needs_recording, timing=timing) except UnrecordedSpend: # Not a "this model is not runnable here" condition: it is a deliberate # refusal, and swallowing it would let the next paid leg in the list @@ -780,8 +934,13 @@ def main(): # Exception, so on the success path alone it would unwind past this. # panos_scored is None when score_model didn't return — the token # counts are still exact, only the denominator is unknown. + # The wall clock is stopped here rather than inside score_model so it + # still covers a leg that raised partway -- the case this finally + # exists for. It brackets the model load and the pano loop both. + timing["elapsed_s"] = round(perf_counter() - t_leg, 3) report_usage(detector, label, city, - len(run.scored) if run is not None else None, usage_log) + len(run.scored) if run is not None else None, usage_log, + timing=timing) if run is None: continue report = operating_report(run.report, run.scored, radius_sq, args.op_threshold) diff --git a/scripts/model_comparison/detectors.py b/scripts/model_comparison/detectors.py index fbd0593e..17fcec55 100644 --- a/scripts/model_comparison/detectors.py +++ b/scripts/model_comparison/detectors.py @@ -58,6 +58,12 @@ class BundleRampNetDetector: """RampNet's baseline detections, read from the benchmark records.jsonl.""" name = "rampnet" + # This leg replays detections that are already committed: no model is loaded, + # nothing is inferred, and the "runtime" is a JSON read. It is excluded from the + # cost ledger (compare.py report_usage) so the near-universal `--models rampnet` + # arm does not append a meaningless zero row to a committed file on every run. + # A real RampNet inference run is stage_two/evaluate.py, not this class. + replays_committed_detections = True def __init__(self, records): # records: {pano_id: record_dict} from the bundle's records.jsonl. diff --git a/scripts/model_comparison/pricing.py b/scripts/model_comparison/pricing.py index b5f2bc78..5f12d5d0 100644 --- a/scripts/model_comparison/pricing.py +++ b/scripts/model_comparison/pricing.py @@ -101,3 +101,71 @@ def estimate_cost(model_id, input_tokens, output_tokens, if cache_write_tokens and "cache_write_per_m" in p: usd += cache_write_tokens * p["cache_write_per_m"] return usd / 1e6 + + +# --- compute, not tokens ---------------------------------------------------- +# +# The other half of what an experiment costs (#143). Same discipline as the token +# table above: verified-only, each entry carrying the date it was checked and where +# it came from. GPU-hours are the durable measurement; the dollar figure is an +# estimate and the billing system is authoritative. +# +# `usd_per_gpu_hour` is applied to GPU-hours = elapsed wall-clock x N GPUs, which +# is how Tillicum defines the unit -- an idle GPU in a 2-GPU job bills exactly like +# a busy one. `qos_usage_factor` is Slurm's own UsageFactor per QoS. +COMPUTE_PRICING = { + "tillicum": { + "usd_per_gpu_hour": 0.90, + "as_of": "2026-07-30", + "source": ("hyak.uw.edu/docs/systems/tillicum + the 2026-07-29 provisioning " + "email; QoS factors from `sacctmgr show qos`, read 2026-07-31"), + "qos_usage_factor": { + "debug": 0.0, "normal": 1.0, "interactive": 1.0, + "urgent": 1.0, "long": 1.0, "wide": 1.0, + }, + # This caveat has to travel with any "free" figure quoted from `debug`: + # Slurm bills that QoS at UsageFactor 0, but `hyakusage` charged the 2-minute + # smoke job (198638) 0.03 GPU-hours / $0.03 anyway -- raw wall-clock x rate, + # the factor apparently not applied -- even though its own header says + # "billable GPU hours = raw GPU hours x QOS multiplier". The two tools state + # different things and we do not know which one ITBill follows. Exposure is + # capped at $0.90/job (debug is 1 h x 1 GPU), so this is unresolved, not + # urgent. See docs/tillicum.md. + "note": ("`debug` is UsageFactor 0 in Slurm but `hyakusage` bills it anyway; " + "this table follows Slurm. Never quote a debug-QoS cost without " + "saying which tool it came from."), + }, + "klone": { + # Lab-owned and scavenger partitions alike: no per-hour charge. GPU-hours + # are still recorded, because the scientific cost of a run is its compute + # whether or not an invoice follows, and because the #51 baseline's 496.5 + # GPU-hours is a real number that belongs in the paper. + "usd_per_gpu_hour": 0.0, + "as_of": "2026-07-30", + "source": "hyak.uw.edu — condo model, no usage billing", + "qos_usage_factor": {}, + "note": "Free at the point of use; ckpt is preemptable, which costs restarts.", + }, +} + + +def compute_price_for(cluster): + """The compute-rate entry for a cluster, or None when we have no verified rate. + + None rather than $0: an unpriced cluster must be visible as unpriced, not + silently free. klone is $0 because that was checked, which is a different + statement.""" + return COMPUTE_PRICING.get((cluster or "").lower()) + + +def estimate_compute_cost(cluster, gpu_hours, qos=None): + """Estimated USD for a job's GPU-hours, or None without a verified rate. + + ``qos`` applies Slurm's UsageFactor when the cluster publishes one; an + unknown QoS is charged at full rate rather than assumed free, because + guessing downward is the expensive direction to be wrong in.""" + p = compute_price_for(cluster) + if p is None: + return None + factor = p.get("qos_usage_factor", {}).get((qos or "").lower(), 1.0) + return gpu_hours * p["usd_per_gpu_hour"] * factor diff --git a/tests/test_model_comparison.py b/tests/test_model_comparison.py index 795a80c5..1359cb23 100644 --- a/tests/test_model_comparison.py +++ b/tests/test_model_comparison.py @@ -7,6 +7,8 @@ """ import json import os +import shutil +import subprocess import sys import pytest @@ -34,10 +36,10 @@ score_model, validate_bundle, validate_manual_bundle, DetectionCache, cache_key, ground_truths_from_verdicts, has_confidences, load_bundle, load_manual_ground_truths, operating_report, report_usage, rescore, sweep_rows, - DEFAULT_USAGE_LOG, ) import pricing # noqa: E402 from pricing import estimate_cost, price_for # noqa: E402 +from rampnet import ledger # noqa: E402 from rampnet.detection_eval import GroundTruth, radius_sq_for # noqa: E402 from prepare_yolo_dataset import ( # noqa: E402 parse_box_size, _ground_distance_m, _box_wh, _resolve_distances, write_data_yaml, @@ -1596,17 +1598,256 @@ class _Det: assert '"calls": 2' in out +# --- time is recorded too, and free legs are not invisible (#143) ----------- + +class _FreeDetector: + """A local GPU model: no API bill, and before #143 no ledger row either.""" + name = "owlv2" + + def __init__(self): + self.model_id = "owlv2-large-patch14-ensemble" + self.usage = None # the shape every free detector has + self.model_versions = None + + def signature(self): + return {"provider": "owlv2", "model_id": self.model_id} + + +def test_a_free_leg_still_gets_a_row(tmp_path): + """OWLv2, Grounding DINO, Qwen, Molmo, YOLO and RampNet itself bill no tokens + and cost real GPU-hours. Before #143 report_usage returned early on them, so + the entire GPU half of the roster left no record and its runtimes survive only + as prose in docs/model_comparison.md.""" + log = tmp_path / "usage_log.jsonl" + report_usage(_FreeDetector(), "owlv2", "annapolis", 125, str(log), + timing={"elapsed_s": 900.0, "load_s": 60.0, "detect_s": 800.0, + "panos_called": 125}) + rec = json.loads(log.read_text(encoding="utf-8").splitlines()[-1]) + assert rec["paid"] is False + assert rec["est_cost_usd"] is None # free in API terms... + assert rec["elapsed_s"] == 900.0 # ...but not free in time + assert rec["detect_s"] == 800.0 and rec["panos_called"] == 125 + assert rec["s_per_pano"] == pytest.approx(6.4) + # No token keys at all rather than zeros: a free leg spent no tokens, and a + # zero would average into a per-token figure as if it had. + assert "input_tokens" not in rec + + +def test_a_paid_leg_records_time_beside_the_tokens(tmp_path): + log = tmp_path / "usage_log.jsonl" + det = ClaudeDetector(model_id="claude-sonnet-5") + det.accumulate_usage(1000, 50, 0) + report_usage(det, "claude-sonnet-5", "annapolis", 125, str(log), + timing={"elapsed_s": 1200.5, "load_s": 0.0, "detect_s": 1190.0, + "panos_called": 100}) + rec = json.loads(log.read_text(encoding="utf-8").splitlines()[-1]) + assert rec["paid"] is True and rec["input_tokens"] == 1000 + assert rec["elapsed_s"] == 1200.5 + # Per-pano divides by panos actually put through the model (100), never by + # the panos reported on (125) — the rest came from the cache and cost nothing. + assert rec["s_per_pano"] == pytest.approx(11.9) + + +def test_a_leg_that_spent_nothing_writes_nothing(tmp_path): + """A fully cached re-score makes no calls and loads no model; a leg that was + never runnable does neither either. Writing a zero row per re-run would bury + the rows that carry a measurement.""" + log = tmp_path / "usage_log.jsonl" + report_usage(_FreeDetector(), "owlv2", "annapolis", 125, str(log), + timing={"elapsed_s": 0.4, "load_s": 0.0, "detect_s": 0.0, + "panos_called": 0}) + assert not log.exists() + + +class _AlwaysFailsDetector: + """Every call raises — an outage, or a model that cannot answer.""" + name = "always-fails" + + def prepare(self): + pass + + def signature(self): + return None + + def detect(self, sample): + raise RuntimeError("simulated transient API failure") + + +def test_replaying_committed_detections_is_not_logged_as_a_cost(tmp_path): + """`--models rampnet` reads detections back out of the bundle: no model is + loaded and nothing is inferred, so it is not an experiment that cost anything. + It is also in nearly every run, so a zero row per run would bury the ledger.""" + log = tmp_path / "usage_log.jsonl" + det = BundleRampNetDetector({}) + assert det.replays_committed_detections is True + report_usage(det, "rampnet", "richmond", 124, str(log), + timing={"elapsed_s": 0.002, "load_s": 0.0, "detect_s": 0.0, + "panos_called": 124}) + assert not log.exists() + + +def test_score_model_fills_in_the_timing_it_was_handed(): + """timing is caller-owned rather than returned because report_usage reads it + from a finally, where a leg that died partway has no ModelRun to read.""" + records, gts = _aligned_gts() + timing = {} + score_model(_FixedDetector(), records, gts, "", radius_sq_for(), "fixed", + "richmond", DetectionCache("x", enabled=False), timing=timing) + assert timing["panos_called"] == len(gts) + assert timing["detect_s"] >= 0.0 and "load_s" in timing + + +def test_a_failed_call_still_counts_as_time_spent(): + """A call that raised burnt wall-clock and, on a paid provider, still billed. + Counting only successes would understate both — and an outage would look like + a suspiciously cheap run rather than a broken one.""" + records, gts = _aligned_gts() + timing = {} + run = score_model(_AlwaysFailsDetector(), records, gts, "", radius_sq_for(), + "fails", "richmond", DetectionCache("x", enabled=False), + max_consecutive_failures=99, timing=timing) + assert run.failures and timing["panos_called"] == len(gts) + + +# --- the ledger has to land where it outlives the run (#143) ---------------- + def test_the_default_usage_log_is_tracked_not_in_the_gitignored_cache(): # The whole point of recording spend is that it outlives the machine. Defaulting # into .model_cache/ (gitignored) is the bug export_model_cache.py exists to undo. - assert ".model_cache" not in DEFAULT_USAGE_LOG - assert DEFAULT_USAGE_LOG.replace("\\", "/").endswith("analysis_out/usage_log.jsonl") + default = compare.default_usage_log() + assert ".model_cache" not in default + assert default.replace(chr(92), "/").endswith("analysis_out/usage_log.jsonl") with open(os.path.join(REPO_ROOT, ".gitignore"), encoding="utf-8") as fh: gitignore = fh.read() assert "!analysis_out/usage_log.jsonl" in gitignore, \ "analysis_out/* is ignored, so the log needs an explicit re-include" +def _main_and_worktree(tmp_path): + """A real checkout with a linked worktree — the shape that lost #139's $70.41.""" + main = tmp_path / "main" + main.mkdir() + run = lambda *a: subprocess.run(a, cwd=str(main), check=True, capture_output=True) + run("git", "init", "-q") + run("git", "config", "user.email", "t@example.com") + run("git", "config", "user.name", "t") + (main / "f.txt").write_text("x", encoding="utf-8") + run("git", "add", "f.txt") + run("git", "commit", "-qm", "init") + wt = tmp_path / "wt" + run("git", "worktree", "add", "-q", str(wt), "HEAD") + return main, wt + + +@pytest.mark.skipif(shutil.which("git") is None, reason="needs git on PATH") +def test_the_ledger_resolves_to_the_main_checkout_from_a_worktree(tmp_path): + """The #139 failure: a leg run from a scratch worktree wrote its ledger inside + that worktree, the worktree was deleted, and $70.41 of spend left no record — + invisible to #119's guard, which proves a path was accepted and nothing about + whether the file survives. Every worktree must append to one canonical ledger.""" + main, wt = _main_and_worktree(tmp_path) + assert compare.canonical_repo_root(wt).resolve() == main.resolve() + assert compare.canonical_repo_root(main).resolve() == main.resolve() + + +@pytest.mark.skipif(shutil.which("git") is None, reason="needs git on PATH") +def test_credentials_resolve_to_the_main_checkout_too(tmp_path, monkeypatch): + """`.env` is git-ignored, so a scratch worktree does not carry one. Reading it + only from the running file's checkout means a leg launched from a worktree finds + no API key and vertex_usage.py exits with "no project" — the recovery tool + failing in exactly the situation that loses a record. The worktree's own file is + still read first, so a deliberate local override wins.""" + main, wt = _main_and_worktree(tmp_path) + (main / ".env").write_text("RAMPNET_TEST_KEY=from-main\nRAMPNET_TEST_BOTH=main\n", + encoding="utf-8") + (wt / ".env").write_text("RAMPNET_TEST_BOTH=worktree\n", encoding="utf-8") + monkeypatch.setattr(os, "environ", dict(os.environ)) + for key in ("RAMPNET_TEST_KEY", "RAMPNET_TEST_BOTH"): + os.environ.pop(key, None) + compare.load_dotenv_for_run(wt) + assert os.environ["RAMPNET_TEST_KEY"] == "from-main" + assert os.environ["RAMPNET_TEST_BOTH"] == "worktree" + + +def test_the_ledger_path_falls_back_when_git_cannot_answer(tmp_path): + """A tarball or an HF clone is not a git checkout. Bookkeeping must never be + the reason a run refuses to start.""" + assert compare.canonical_repo_root(tmp_path).resolve() == tmp_path.resolve() + + +def test_ledger_totals_tolerate_the_rows_written_before_this_change(tmp_path): + """The ledger is append-only and committed, so rows predating #143 carry no + timing keys and free rows carry no cost. A running total that choked on them + would be a regression in the one artifact that is supposed to be durable.""" + log = tmp_path / "usage_log.jsonl" + log.write_text( + json.dumps({"label": "old-paid-row", "est_cost_usd": 0.25}) + "\n" + + json.dumps({"label": "free", "elapsed_s": 3600.0}) + "\n" + + "not json at all\n" + + json.dumps({"label": "both", "est_cost_usd": 0.75, "elapsed_s": 1800.0}) + "\n", + encoding="utf-8", newline="") + rows, usd, hours, recovered = ledger.ledger_totals(str(log)) + assert (rows, usd, hours) == (3, 1.0, 1.5) + # No row carries a kind, so every one of them reads as measured. + assert recovered == 0 + assert ledger.ledger_totals(str(tmp_path / "nope.jsonl")) is None + + +def test_a_recovered_row_counts_toward_cost_but_never_toward_reconciliation(tmp_path): + """The #139 case, as a fixture. + + A recovered row is real spend read off the provider's bill after layer 1 failed + to write. Two things have to be true at once, and they pull in opposite + directions: cost totals must include it (otherwise every table under-reports by + the whole amount), and reconciliation must never count it as a measurement + (otherwise the bill is compared against itself and the missing measurement reads + as ``ok``). What it may do is explain the gap, which is a different statement + from closing it. + + The numbers are the committed ledger's: two measured richmond smoke legs + totalling 48,744 input tokens against a bill of 11,988,993. + """ + sys.path.insert(0, os.path.join(REPO_ROOT, "scripts", "analysis")) + from vertex_usage import ledger_totals_by_model, reconcile + + measured = [ + {"ts": "2026-08-18T23:29:11+00:00", "label": "claude-opus-5", + "model_id": "claude-opus-5", "input_tokens": 12_186, "output_tokens": 780, + "est_cost_usd": 0.0804}, + {"ts": "2026-08-18T23:54:02+00:00", "label": "claude-opus-5", + "model_id": "claude-opus-5", "input_tokens": 36_558, "output_tokens": 1_972, + "est_cost_usd": 0.2321}, + ] + recovery = {"ts": "2026-08-18T00:00:00+00:00", "kind": ledger.RECOVERED, + "label": "claude-opus-5", "model_id": "claude-opus-5", + "input_tokens": 11_940_249, "output_tokens": 415_751, + "est_cost_usd": 70.095} + billed = {"claude-opus-5": {"input": 11_988_993, "output": 418_503}} + + # Before the recovery was written, the gap is unexplained and gets the verdict. + short = reconcile(billed, ledger_totals_by_model(measured))[0] + assert short["verdict"].startswith("UNDER") + assert short["unexplained_input"] == 11_940_249 + + log = tmp_path / "usage_log.jsonl" + ledger.append_rows(str(log), measured + [recovery]) + + rows, usd, hours, recovered = ledger.ledger_totals(str(log)) + assert rows == 3 + assert usd == pytest.approx(70.4075) # the money is all there + assert recovered == pytest.approx(70.095) # and it is labelled + + # Reconciliation still counts only the measured rows as logged... + logged = ledger_totals_by_model(ledger.read_rows(str(log))) + assert logged["claude-opus-5"]["input"] == 48_744 + assert logged["claude-opus-5"]["rows"] == 2 + # ...but the gap they leave is the one already written down, so it is reported + # as explained rather than as an emergency that repeats every run. + row = reconcile(billed, logged)[0] + assert row["verdict"] == "ok (1 recovered)" + assert row["recovered_input"] == 11_940_249 and row["unexplained_input"] == 0 + + # --- tiled detect() end-to-end (no live model) ------------------------------ class _FakeTiledVLM(_VLMDetector): diff --git a/tests/test_slurm_usage.py b/tests/test_slurm_usage.py new file mode 100644 index 00000000..fb9870d6 --- /dev/null +++ b/tests/test_slurm_usage.py @@ -0,0 +1,210 @@ +"""The compute half of what an experiment cost (#143). + +The fixtures below are shaped like the two Tillicum jobs whose cost is already +written down in docs/tillicum.md, so the parser is checked against numbers that +were arrived at independently of it rather than against itself. +""" +import json +import os +import sys +from pathlib import Path + +import pytest + +REPO_ROOT = str(Path(__file__).resolve().parents[1]) +sys.path.insert(0, REPO_ROOT) +sys.path.insert(0, os.path.join(REPO_ROOT, "scripts", "analysis")) +sys.path.insert(0, os.path.join(REPO_ROOT, "scripts", "model_comparison")) + +from slurm_usage import ( # noqa: E402 + gpus_from_tres, is_terminal, latest_rows, new_rows, parse_sacct, print_by_name, + row_key, sacct_command, summarize, SACCT_FIELDS, COLUMNS, +) +from rampnet import ledger # noqa: E402 + + +def _line(job_id, name, cluster, part, qos, state, start, end, elapsed, tres, + nodes=1, exit_code="0:0", submit="2026-07-31T00:00:00"): + return "|".join([job_id, name, cluster, part, qos, state, submit, start, end, + str(elapsed), tres, str(nodes), exit_code]) + + +# 4.67 GPU-hours on one H200 at `normal` = the $4.20 data-prep job in docs/tillicum.md. +PREP = _line("198910", "yolo_data_prep", "tillicum", "", "normal", "COMPLETED", + "2026-07-31T01:00:00", "2026-07-31T05:40:12", 16812, + "billing=8,cpu=8,gres/gpu=1,mem=200G,node=1") +# The 2-minute smoke job on `debug`, which Slurm bills at UsageFactor 0. +SMOKE = _line("198638", "tillicum_smoke", "tillicum", "", "debug", "COMPLETED", + "2026-07-31T00:10:00", "2026-07-31T00:12:00", 120, + "billing=8,cpu=8,gres/gpu=1,mem=100G,node=1") + + +def test_gpu_hours_and_dollars_match_the_documented_tillicum_job(): + """docs/tillicum.md: 'It cost $4.20 — 4.67 GPU-hours at normal QoS.'""" + rec, = parse_sacct(PREP) + assert rec["gpus"] == 1 + assert rec["gpu_hours"] == pytest.approx(4.67, abs=0.005) + assert rec["est_cost_usd"] == pytest.approx(4.20, abs=0.005) + assert rec["cluster"] == "tillicum" and rec["qos"] == "normal" + + +def test_the_debug_qos_is_priced_at_slurms_usage_factor_not_wall_clock(): + """`debug` is UsageFactor 0.0 in `sacctmgr show qos`. hyakusage disagrees and + charged this job $0.03; that conflict is unresolved and recorded in + pricing.py's note, so a reader is never handed a bare 'free' with no source.""" + rec, = parse_sacct(SMOKE) + assert rec["est_cost_usd"] == 0.0 + # The row carries the rate it was priced at and when that was checked; the + # caveat itself lives in the versioned table, not repeated in every row. + assert rec["rate_usd_per_gpu_hour"] == 0.90 and rec["rate_as_of"] == "2026-07-30" + from pricing import compute_price_for + assert "hyakusage" in compute_price_for("tillicum")["note"] + + +def test_gpu_hours_multiply_by_gpu_count(): + """Tillicum's unit is elapsed x N GPUs — an idle GPU in a 2-GPU job bills + exactly like a busy one, which is the whole 2-GPU trap in docs/tillicum.md.""" + two = _line("1", "two_gpu", "tillicum", "", "normal", "COMPLETED", + "2026-08-01T00:00:00", "2026-08-01T01:00:00", 3600, + "billing=16,cpu=16,gres/gpu=2,mem=400G,node=1") + rec, = parse_sacct(two) + assert rec["gpu_hours"] == 2.0 and rec["est_cost_usd"] == pytest.approx(1.80) + + +def test_typed_and_generic_gpu_tres_are_not_double_counted(): + """Slurm reports the same GPUs twice, generically and by type. Summing both + would double every GPU-hour in the ledger.""" + assert gpus_from_tres("cpu=8,gres/gpu=2,gres/gpu:a40=2,mem=200G") == (2, "a40") + assert gpus_from_tres("cpu=8,gres/gpu:l40s=4,mem=200G") == (4, "l40s") + assert gpus_from_tres("cpu=8,mem=200G") == (0, None) + assert gpus_from_tres(None) == (0, None) + assert gpus_from_tres("cpu=8,gres/gpu:a40=1,gres/gpu:l40s=1") == (2, "a40,l40s") + + +def test_a_cpu_only_klone_job_is_free_but_still_recorded(): + """klone is free at the point of use; the GPU-hours are still a real cost of + the science and the #51 baseline's 496.5 of them belong in the paper.""" + rec, = parse_sacct(_line("42", "prep", "klone", "ckpt-all", "ckpt", "COMPLETED", + "2026-07-24T00:00:00", "2026-07-24T02:00:00", 7200, + "cpu=12,mem=100G,node=1")) + assert rec["gpus"] == 0 and rec["gpu_hours"] == 0.0 + assert rec["est_cost_usd"] == 0.0 # priced at zero, not unpriced + + +def test_an_unpriced_cluster_is_visibly_unpriced_not_silently_free(): + rec, = parse_sacct(_line("7", "j", "somewhere_else", "gpu", "normal", "COMPLETED", + "2026-08-01T00:00:00", "2026-08-01T01:00:00", 3600, + "gres/gpu=1")) + assert rec["est_cost_usd"] is None and rec["rate_usd_per_gpu_hour"] is None + assert summarize([rec])["somewhere_else"]["unpriced"] == 1 + + +def test_overriding_the_cluster_name_says_so(capsys): + """A dump can legitimately span clusters, and restamping one silently would + price its jobs at the wrong rate and attribute its GPU-hours to the wrong + machine. Nothing downstream can detect that, so it has to be loud here.""" + rows = parse_sacct(PREP, cluster="klone") + assert rows[0]["cluster"] == "klone" and rows[0]["rate_usd_per_gpu_hour"] == 0.0 + out = capsys.readouterr().out + assert "WARNING" in out and "tillicum" in out + # ...and no warning when the override agrees with sacct. + parse_sacct(PREP, cluster="tillicum") + assert "WARNING" not in capsys.readouterr().out + + +def test_lines_that_are_not_job_records_are_skipped(): + text = "\n".join(["", "sacct: warning: something", "a|b|c", PREP]) + assert len(parse_sacct(text)) == 1 + + +def test_requeued_incarnations_are_separate_rows_not_one(): + """klone's ckpt partition preempts and requeues: the paper's Stage 2 run was 15 + preemptions. sacct -D reports each incarnation under the SAME job id, so keying + on the id alone would throw away all but the last one's compute.""" + a = _line("999", "train", "klone", "ckpt-all", "ckpt", "PREEMPTED", + "2026-08-01T00:00:00", "2026-08-01T03:00:00", 10800, "gres/gpu=4") + b = _line("999", "train", "klone", "ckpt-all", "ckpt", "COMPLETED", + "2026-08-01T04:00:00", "2026-08-01T09:00:00", 18000, "gres/gpu=4") + rows = parse_sacct(a + "\n" + b) + assert len({row_key(r) for r in rows}) == 2 + assert summarize(rows)["klone"]["gpu_hours"] == pytest.approx(32.0) + + +def test_appending_twice_does_not_double_count(): + """Someone will run this again next week. It has to add what is new and + nothing else, or the ledger inflates every time anyone checks it.""" + rows = parse_sacct(PREP + "\n" + SMOKE) + assert len(new_rows(rows, [])) == 2 + assert new_rows(rows, rows) == [] + + +def test_a_job_recorded_while_running_is_re_recorded_once_it_finishes(): + """Its elapsed time was still growing when we first saw it, so the first row + understates the cost. Readers take the last row per key.""" + running = parse_sacct(_line("500", "train", "tillicum", "", "normal", "RUNNING", + "2026-08-01T00:00:00", "Unknown", 3600, "gres/gpu=1")) + done = parse_sacct(_line("500", "train", "tillicum", "", "normal", "COMPLETED", + "2026-08-01T00:00:00", "2026-08-01T05:00:00", 18000, + "gres/gpu=1")) + assert len(new_rows(done, running)) == 1 + assert new_rows(done, done) == [] # ...but only once + + +def test_a_re_recorded_job_is_counted_once_not_twice(capsys): + """The other half of re-appending: the ledger then holds both the RUNNING row + and the finished one, and totalling every row bills the job for both. 5.0 + GPU-hours, not 6.0.""" + running = parse_sacct(_line("500", "train", "tillicum", "", "normal", "RUNNING", + "2026-08-01T00:00:00", "Unknown", 3600, "gres/gpu=1")) + done = parse_sacct(_line("500", "train", "tillicum", "", "normal", "COMPLETED", + "2026-08-01T00:00:00", "2026-08-01T05:00:00", 18000, + "gres/gpu=1")) + ledger_rows = running + new_rows(done, running) + assert len(ledger_rows) == 2 + assert [r["state"] for r in latest_rows(ledger_rows)] == ["COMPLETED"] + agg = summarize(ledger_rows)["tillicum"] + assert agg["jobs"] == 1 + assert agg["gpu_hours"] == pytest.approx(5.0) + assert agg["usd"] == pytest.approx(4.50) + print_by_name(ledger_rows) + assert "5.0" in capsys.readouterr().out + + +def test_terminal_states_include_the_ones_with_a_suffix(): + assert is_terminal("CANCELLED by 12345") and is_terminal("COMPLETED") + assert is_terminal("PREEMPTED") and not is_terminal("RUNNING") + assert not is_terminal("PENDING") and not is_terminal("") + # A requeued incarnation is finished: it has an End time and its elapsed will + # not grow, and the next incarnation carries a different start. + assert is_terminal("REQUEUED") + + +def test_the_sacct_command_asks_for_duplicates_and_the_pinned_columns(): + """-D is not optional: without it Slurm reports only the last incarnation of a + requeued job, and most of a preempted run's compute silently disappears.""" + cmd = sacct_command("jfroehli", "2026-07-01") + assert "-D" in cmd and "-X" in cmd and "-P" in cmd + assert "--format=" + ",".join(SACCT_FIELDS) in cmd + # The parser indexes by position, so the two lists must stay in step. + assert len(COLUMNS) == len(SACCT_FIELDS) + + +def test_the_ledger_round_trips_through_the_shared_writer(tmp_path): + log = tmp_path / "compute_log.jsonl" + ledger.append_rows(str(log), parse_sacct(PREP + "\n" + SMOKE)) + assert log.read_bytes().count(b"\r\n") == 0 # LF, on Windows too + back = ledger.read_rows(str(log)) + assert [r["job_id"] for r in back] == ["198910", "198638"] + # Both ledgers name the duration the same, so one reader can total them. + rows, usd, hours, recovered = ledger.ledger_totals(str(log)) + assert rows == 2 and usd == pytest.approx(4.20, abs=0.005) + assert hours == pytest.approx((16812 + 120) / 3600.0) + assert recovered == 0 # sacct rows are measured, never reconstructed + + +def test_the_compute_ledger_is_re_included_in_gitignore(): + """analysis_out/* is ignored wholesale, so a new committed artifact under it + needs an explicit re-include or it is silently never committed — which is the + class of failure this whole issue is about.""" + with open(os.path.join(REPO_ROOT, ".gitignore"), encoding="utf-8") as fh: + assert "!analysis_out/compute_log.jsonl" in fh.read() diff --git a/tests/test_vertex_usage.py b/tests/test_vertex_usage.py new file mode 100644 index 00000000..06e43c02 --- /dev/null +++ b/tests/test_vertex_usage.py @@ -0,0 +1,145 @@ +"""Reconciling the committed ledger against what the provider actually billed (#143). + +The numbers in these fixtures are the real #139 incident: a claude-opus-5 leg billed +11,988,993 input tokens (~$70.41) and wrote no row to analysis_out/usage_log.jsonl. +This is the check that would have said so on the day, while the metric was still +inside its ~6-week retention window. + +No network and no cloud credentials: only the pure comparison functions are exercised, +because `fetch_token_series` imports google-auth lazily inside itself. +""" +import os +import sys +from pathlib import Path + +import pytest + +REPO_ROOT = str(Path(__file__).resolve().parents[1]) +sys.path.insert(0, REPO_ROOT) +sys.path.insert(0, os.path.join(REPO_ROOT, "scripts", "analysis")) +sys.path.insert(0, os.path.join(REPO_ROOT, "scripts", "model_comparison")) + +from rampnet import ledger # noqa: E402 +from vertex_usage import ( # noqa: E402 + ledger_totals_by_model, print_reconciliation, reconcile, +) + +OPUS_BILLED = {"input": 11_988_993, "output": 418_503} +SONNET_BILLED = {"input": 12_594, "output": 480} + + +def _row(model, ts="2026-08-18T14:54:02+00:00", **kw): + return dict({"ts": ts, "model_id": model}, **kw) + + +def test_a_leg_that_billed_and_logged_nothing_is_flagged_missing(): + """The #139 failure exactly: $70.41 of opus with no ledger row. #119's guard + cannot see it — that one proves a log path was accepted, never that the file it + wrote survived — so this comparison is the only thing that catches it.""" + logged = ledger_totals_by_model([_row("claude-sonnet-5", input_tokens=12_594, + output_tokens=480)]) + rows = reconcile({"claude-opus-5": OPUS_BILLED, + "claude-sonnet-5": SONNET_BILLED}, logged) + verdicts = {r["model_id"]: r["verdict"] for r in rows} + assert verdicts["claude-opus-5"].startswith("MISSING") + assert verdicts["claude-sonnet-5"] == "ok" + + +def test_a_ledger_that_matches_reconciles_clean(): + logged = ledger_totals_by_model([ + _row("claude-opus-5", input_tokens=11_000_000, output_tokens=400_000), + _row("claude-opus-5", input_tokens=988_993, output_tokens=18_503), + ]) + rows = reconcile({"claude-opus-5": OPUS_BILLED}, logged) + assert rows[0]["verdict"] == "ok" and rows[0]["logged_rows"] == 2 + + +def test_a_short_ledger_is_flagged_under_and_an_over_one_is_not_alarming(): + """Asymmetric on purpose: billed > logged is spend with no record, which is the + failure this exists for. logged > billed is odd but harmless — a re-run, or a + row stamped just outside the queried window.""" + under = reconcile({"m": {"input": 1_000_000}}, + ledger_totals_by_model([_row("m", input_tokens=500_000)])) + over = reconcile({"m": {"input": 1_000_000}}, + ledger_totals_by_model([_row("m", input_tokens=1_500_000)])) + assert under[0]["verdict"].startswith("UNDER") + assert over[0]["verdict"].startswith("over") + + +def test_small_drift_is_within_tolerance(): + """Cloud Monitoring's daily rows are 24 h windows ending at query time-of-day, + not calendar days, so an exact match is not the bar — a leg straddling the + boundary moves a little either way.""" + rows = reconcile({"m": {"input": 1_000_000}}, + ledger_totals_by_model([_row("m", input_tokens=990_000)])) + assert rows[0]["verdict"] == "ok" + + +def test_free_legs_are_not_reconciled_against_a_bill(): + """A row with no token keys is a GPU leg (#143). It has no bill to compare to, + and counting it as a model with zero tokens would invent a MISSING verdict.""" + logged = ledger_totals_by_model([_row("owlv2-large-patch14-ensemble", paid=False, + elapsed_s=900.0)]) + assert logged == {} + + +def test_rows_outside_the_window_are_not_counted_against_it(): + """The ledger is append-only and covers all time; the metric query covers + --days. Comparing the two without trimming would report a spurious 'over'.""" + rows = [_row("m", ts="2026-06-01T00:00:00+00:00", input_tokens=9_000_000), + _row("m", ts="2026-08-18T00:00:00+00:00", input_tokens=1_000_000)] + assert ledger_totals_by_model(rows, since="2026-08-01")["m"]["input"] == 1_000_000 + assert ledger_totals_by_model(rows)["m"]["input"] == 10_000_000 + + +def test_a_recorded_recovery_explains_the_gap_instead_of_repeating_the_alarm(): + """The #139 gap is closed: it was found, priced, and written into the ledger as + a recovery. The check must still refuse to count that row as a measurement — it + was read off this same bill — but reporting the same 11,940,249 tokens as + unaccounted for every run teaches an operator to ignore the one check that + catches a silent no-write.""" + logged = ledger_totals_by_model([ + _row("claude-opus-5", input_tokens=48_744, output_tokens=2_752), + _row("claude-opus-5", kind=ledger.RECOVERED, input_tokens=11_940_249, + output_tokens=415_751), + ]) + assert logged["claude-opus-5"]["input"] == 48_744 # not the recovered row + assert logged["claude-opus-5"]["recovered_input"] == 11_940_249 + row = reconcile({"claude-opus-5": OPUS_BILLED}, logged)[0] + assert row["verdict"] == "ok (1 recovered)" + assert row["logged_rows"] == 1 and row["unexplained_input"] == 0 + + +def test_a_partial_recovery_still_flags_the_part_nobody_has_looked_at(): + """A recovery explains only what it covers. The remainder is spend with no + record, which is exactly what the check exists to say.""" + logged = ledger_totals_by_model([ + _row("m", kind=ledger.RECOVERED, input_tokens=400_000)]) + row = reconcile({"m": {"input": 1_000_000}}, logged)[0] + assert row["verdict"].startswith("UNDER") + assert row["unexplained_input"] == 600_000 + + +def test_the_report_prints_the_recovered_column_and_does_not_cry_emergency(capsys): + logged = ledger_totals_by_model([ + _row("claude-opus-5", input_tokens=48_744), + _row("claude-opus-5", kind=ledger.RECOVERED, input_tokens=11_940_249), + ]) + worst = print_reconciliation(reconcile({"claude-opus-5": OPUS_BILLED}, logged)) + out = capsys.readouterr().out + assert worst == [] + assert "recovered in" in out and "11,940,249" in out + assert "emergency with a deadline" not in out + assert "not a measurement" in out # still not evidence the leg was logged + + +def test_the_report_says_what_to_do_about_a_gap(capsys): + """A missing row is recoverable for ~6 weeks and then not at all, so the output + has to carry the deadline rather than just the discrepancy.""" + worst = print_reconciliation(reconcile({"claude-opus-5": OPUS_BILLED}, + ledger_totals_by_model([]))) + out = capsys.readouterr().out + assert len(worst) == 1 + assert "emergency with a deadline" in out and "6 weeks" in out + assert "per-model per-DAY" in out # per-split attribution is already gone + assert "11,988,993" in out