Views
No views yet
Lance_3B image-focused checkpoint (text-to-image, image edit, image understanding).Lance_3B — image-focused (this one). 24.7 GB F32 source. No bundled ViT, smaller latent_pos_embed (image grid only).Lance_3B_Video — video-focused. 28.4 GB F32 source. Bundles the Qwen2.5-VL ViT in its safetensors + larger video-grid latent_pos_embed. Quantized variant: Reza2kn/Lance-3B-Video-AWQ-INT4.language_model.* (252 understanding-path + 252 generation-expert _moe_gen variants), 360 with AWQ scale fusion into the preceding RMSNorm, 144 with plain per-group min-max (o_proj, down_proj). The ViT, projection layers, time embedder, latent positional embeds, and lm_head are kept in bf16.x2t_image (Lance's 6-sample example set, full 30 timesteps) → 252 und-path linears, 85.3 M tokens of activation datat2i (Lance's 11-sample example set, 2 denoising timesteps) → all 504 linears (both und and gen paths)Lance_3B-AWQ-INT4/
├── awq_state_dict.safetensors # ~6 GB: packed INT4 + bf16 pass-through
├── awq_meta.json # per-weight scheme + group_size + shape
└── README.mdqweight / scales / zeros byte layout.Lance PreTrainedModel (in github.com/bytedance/Lance). Use the runtime swap-in approach: build Lance normally, then replace nn.Linear modules in language_model.* with the WQLinearINT4 reference module and stream the AWQ buffers in.WQLinearINT4 + run_quant_eval.py) is at: https://github.com/Reza2kn/lance-quant--group_size 64 (was 128 in v1). Same AWQ calibration data,
same scale-fusion recipe. Storage: ~6.15 GB (was 6.02 GB); the +2.5% size is
the cost of 2× more per-group scales.| variant | exact-match | char similarity | difflib ratio | word Jaccard |
|---|---|---|---|---|
| v1 (group_size=128) | 33.3 % | 60.4 % | 53.7 % | 55.3 % |
| v2 (group_size=64) | 50.0 % | 69.8 % | 62.1 % | 66.3 % |
"According to the data from the proprietary market research, the total amount spent on the promotional meetings and events during 1998 was approximately $1.3 billion."
o_proj and
down_proj (the linears we can't fuse AWQ scales into), which were responsible
for the long-form generation drift.