Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two failures seen on dev today that the worker handled badly, plus a doc correction.
A quantised model crash-looped instead of reporting itself
ovedrive/Qwen-Image-Edit-2511-4bitexits at startup with:BitsAndBytesConfig.to_dict()emits the private backing fields next to the public ones — that repo'stransformer/config.jsoncontains_load_in_4bit,_load_in_8bit,load_in_4bitandload_in_8bit— and the engine splats the whole dict into a dataclass declaring only the public names. The repo is correctly formed; this will hit every bitsandbytes-quantised diffusers repo on v0.28.0.classifyreturnedNonefor it, so the worker exited 1 and respawned every 30s. It now answers with the cause, since no restart can fix a config the loader rejects.A runtime OOM never reached the caller
Wan-AI/Wan2.2-I2V-A14B-Diffuserskeeps both transformers resident: 126GB of fp32 on disk loads into 64.21 GiB, and on an 80GB card the first request dies in the VAE encode with 1.55 GiB free. The engine is healthy, soclassify— which only runs before the server comes up — never sees it.The proxy returned the raw CUDA text, several paragraphs of allocator state, and the platform then rejected the result:
So the caller got nothing at all.
classify_runtime_errornow replaces an OOM response with one sentence naming the fix. It sits besideclassifybecause the output is the same kind of thing at a different moment; anything it does not recognise passes through untouched.I have not confirmed the 400 was caused by the payload size — that is inference from the shape of it. Shortening the message is worth doing either way.
README
The architecture count said "~72";
scripts/omni_supported_archs.jsonhas 48. Corrected to 48, which matters more now that the console reads that file at runtime rather than keeping its own copy.Three tests added, 43 passing. I checked the previous classifier against both inputs to confirm the gaps were real:
classifyreturnedNonefor the quantisation error, andclassify_runtime_errordid not exist.Not reproduced on a GPU — both classifiers are written against log output captured from the real dev failures.
🤖 Generated with Claude Code