chore: add issue templates with FAQ/Roadmap checks and auto-labels - #375
Merged
Conversation
MT-z
added a commit
to MT-z/FreeToken
that referenced
this pull request
Sep 11, 2026
…QuantConfig scheme reader This stack was cut at 86214a9 (FlashML-org#375). Upstream has since replaced the qwen3_5_moe dense reader with one road through the QuantConfig (FlashML-org#438, squashed at 0ffd5c8), so the vision work has to sit on top of that reader rather than the old cascade. Three files conflicted, and all three resolve the same way: take upstream's side whole, then put the vision line back. config.py: the quant-detection cascade collapses into _expert_quant(hf_config, text); the vision_config block above it stays, and vision_config=vision_cfg still reaches ModelConfig. The result is byte-identical to try/all's. model.py: ParallelLMHead now takes quant_config=config.quant instead of the lm_head_quant special case. Take that, keep `self.visual = ... if config.is_multimodal else None`. weight.py: took origin/main's file and re-applied the vision delta -- _rename regains include_vision, threaded from config.is_multimodal through _iter_shards, and visual.* is yielded straight rather than through the reader. That delta is byte-identical to the one on try/all: this branch and try/all had the same vision threading in weight.py before the merge (git diff over the vision lines is empty). Assisted-by: Claude Opus 5
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.
Adds issue templates (Desktop bug, Engine bug, Support Model Checkpoint, Feature request) that require checking the FAQ (#84) and Roadmap (#79) first, plus a workflow that labels issues from the form answers. Also replaces the expired Discord invite in CONTRIBUTING.md.