Add 1328 native resolution for Qwen Image training (#749)

* Add 1328 native resolution for Qwen Image training

Qwen-Image and Qwen-Image-2512 have a native 1:1 resolution of 1328x1328
as documented in the official model card's aspect ratio table. Adding it
to the resolution buckets and UI allows training at the model's native
resolution for improved quality.

* Revert example config change (24GB OOM at 1328)
This commit is contained in:
Rayane
2026-03-28 19:09:15 +01:00
committed by GitHub
parent 5ce87fa48b
commit ca72eb1515

View File

@@ -967,8 +967,8 @@ export default function SimpleJob({
<FormGroup label="Resolutions" className="pt-2">
<div className="grid grid-cols-2 gap-2">
{[
[256, 512, 768],
[1024, 1280, 1536],
[256, 512, 768, 1024],
[1280, 1328, 1536],
].map(resGroup => (
<div key={resGroup[0]} className="space-y-2">
{resGroup.map(res => (