diff --git a/studio/frontend/src/features/images/train/diffusion-train-panel.tsx b/studio/frontend/src/features/images/train/diffusion-train-panel.tsx index 6ef3599e34..d3f089a42c 100644 --- a/studio/frontend/src/features/images/train/diffusion-train-panel.tsx +++ b/studio/frontend/src/features/images/train/diffusion-train-panel.tsx @@ -812,52 +812,29 @@ export function DiffusionTrainPanel({ {isDiT ? ( - <> -
- - -

- How the frozen base weights are quantised. nf4 (4-bit) uses the least VRAM; - bf16 is fastest but needs the most. Auto picks this family's recommended - mode. -

-
- {supportsCompile && ( -
- - -

- torch.compile the transformer. Adds a one-time warmup, then speeds up each - step. -

-
- )} - +
+ + +

+ How the frozen base weights are quantised. nf4 (4-bit) uses the least VRAM; + bf16 is fastest but needs the most. Auto picks this family's recommended + mode. +

+
) : (
@@ -876,6 +853,27 @@ export function DiffusionTrainPanel({

)} + {supportsCompile && ( +
+ + +

+ torch.compile the transformer blocks. Adds a one-time warmup, then speeds up + each step. +

+
+ )} );