mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-05-11 08:20:35 +00:00
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:
@@ -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 => (
|
||||
|
||||
Reference in New Issue
Block a user