Commit Graph
103 Commits
Author SHA1 Message Date
Raja Mukerji 2d31d64857 fix(bayesian): surface skipped optimization and clamp warm start to search space 2026-09-07 00:36:39 -07:00
Joseph Magly 985c9e9363 feat: add safe distributed checkpoint intake and preflight 2026-09-04 19:43:53 -04:00
Pliny the YoungerandClaude Fable 5.1 89b63ce216 feat(abliteration): update offloaded fused MoE expert tensors in place (#115)
transformers 5 stores routed experts as fused 3D parameters
(experts.gate_up_proj / experts.down_proj) for Mixtral, Qwen3-MoE,
DeepSeek-V3, GLM-4 MoE, Llama 4, gpt-oss and OLMoE. When such a layer is
CPU- or disk-offloaded by Accelerate, EXCISE failed closed with
"offloaded fused expert tensors are not yet a supported surgery layout",
so every frontier MoE checkpoint large enough to need offload could not be
abliterated at all.

Route the three fused projections and the fused bias projection through the
existing LogicalParameterTransaction adapter: a meta-resident fused
parameter is resolved to a private copy of its authoritative backing value,
projected per expert, and committed atomically; the live parameter stays on
meta and quantized or unknown backing layouts still fail before mutation.
Thread offload_roots through the MoE dispatch call sites so parent-prefixed
Accelerate hooks resolve, and drop the preflight rejection of 3D meta
parameters (validate_offloaded_parameters already resolves them).

Tests: fused 3D, bias, granular and selective-inversion projections on
offloaded backing stores, bounded norm restoration, parent-prefixed hook
resolution, quantized fail-closed, commit-failure rollback, and a full
offline pipeline run on a disk-offloaded tiny Mixtral fixture that verifies
the saved checkpoint carries the updated experts with no meta tensors.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-02 11:54:14 -04:00
Joseph Magly d6d4f5ba22 feat: evaluate saved Qwen3.8 checkpoints 2026-08-29 19:14:04 -04:00
Joseph Magly 95c0cd606d fix(eval): score full anchored completions 2026-08-29 19:00:51 -04:00
Joseph Magly 4b737cba64 feat(qwen38): add E03 coherence recovery candidate 2026-08-29 18:45:57 -04:00
Joseph Magly 941869d909 feat: add tune-only Qwen3.8 E02 candidate (#185) 2026-08-29 03:54:53 -04:00
Joseph Magly 9e149bf656 feat: add held-out Qwen3.8 experiment protocol (#185) 2026-08-29 00:17:41 -04:00
Joseph Magly e8a36d796c feat: add durable reconnect-safe experiment runs (#184) 2026-08-28 23:50:45 -04:00
Joseph Magly 41654bdcdf fix: make spectral evidence fail inconclusive (#183) 2026-08-28 23:25:14 -04:00
Joseph Magly 1f428f60cf fix: make KL optimization measured and reversible (#182) 2026-08-28 23:11:26 -04:00
Joseph Magly 683b39ba53 fix: surface bounded GPU admission failures 2026-08-28 10:42:41 -04:00
Joseph Magly 691a5da746 fix(qwen): recognize saved text derivatives 2026-08-27 20:17:09 -04:00
Joseph Magly 44f7842c9c fix(qwen): preserve validated runtime on checkpoint reload 2026-08-27 20:12:43 -04:00
Joseph Magly 827ba8e106 fix: validate Qwen hybrid runtime placement 2026-08-27 01:12:20 -04:00
Joseph Magly 270db39e27 fix(qwen): preserve checkpoint multi-EOS stops 2026-08-26 23:45:01 -04:00
Joseph Magly 2145a22d41 fix(gpu): permit bounded CUDA context residue 2026-08-26 23:21:03 -04:00
Joseph Magly f31d182456 test(gpu): cover benchmark lifecycle orchestration 2026-08-26 22:57:37 -04:00
Joseph Magly 5aa11828a1 feat(surgery): add validated Qwen3.8 output-writer contract 2026-08-26 22:32:14 -04:00
Joseph Magly 1c6c7a47ca fix(validation): use chat contract for deterministic probes 2026-08-26 22:20:09 -04:00
Joseph Magly 31ceb7041c fix: gate GPU allocation on supervisor admission 2026-08-24 21:02:58 -04:00
Joseph Magly 4b677be612 feat: publish GPU model lifecycle events 2026-08-24 20:27:21 -04:00
Joseph Magly b8b7a12493 fix(pipeline): tolerate missing cancellation state 2026-08-24 14:36:39 -04:00
Joseph Magly ccba4f5d85 fix(surgery): guard unvalidated Qwen hybrid layouts 2026-08-24 13:54:31 -04:00
Joseph Magly d8d0a76231 fix(pipeline): fail closed on invalid output 2026-08-24 13:42:13 -04:00
Joseph Magly f354effc72 fix(ui): refresh GPU memory gauge periodically 2026-08-24 12:51:02 -04:00
Joseph Magly 8c4c68760d feat: make UI model loading configurable 2026-08-24 11:53:18 -04:00
Joseph Magly f6ee663e1b fix(device): fall back when psutil memory query fails 2026-08-23 21:48:06 -04:00
Joseph Magly 34218cf6f7 feat(models): add Qwen3.8 27B preset 2026-08-23 20:43:23 -04:00
Joseph Magly 3aaa7e563c test(ui): keep VRAM renderer dependency-light 2026-08-23 20:13:16 -04:00
Joseph Magly 5ce65e8193 fix(ui): show VRAM for every visible GPU 2026-08-23 20:06:08 -04:00
Joseph Magly cad100dd70 feat: refresh model catalog and shared-host guidance 2026-08-23 18:57:13 -04:00
Joseph Magly 6b6a0fe3d8 test(device): restore release branch coverage 2026-08-23 11:46:39 -04:00
Joseph Magly ad883cef0b feat: harden local runtime and verification 2026-08-23 11:16:10 -04:00
Joseph Magly 3390fe551b feat(secrets): add provider-neutral credential hooks 2026-08-22 10:02:49 -04:00
Joseph Magly 3c0f83ac4b feat: add Mistral 3 and 4 architecture contracts 2026-08-21 18:55:10 -04:00
Joseph Magly 306d12c925 fix(abliteration): propagate offload integrity failures 2026-08-21 18:39:07 -04:00
Joseph Magly d1c0ee664d feat(abliteration): support safe offloaded weight surgery 2026-08-21 18:36:18 -04:00
Joseph Magly cf2b5ae869 test: cover single-prompt flattened routing 2026-08-21 14:43:00 -04:00
Joseph Magly f2446f68a7 fix: preserve per-prompt MoE router observations 2026-08-21 14:33:13 -04:00
Joseph Magly b746a87a00 fix: harden checkpoint blending contracts 2026-08-21 12:12:14 -04:00
faber 17f1d5eb59 feat: add complementary abliteration blending
Carry the coherent blending contribution and research summary from PR #127 while splitting the capacity and recovery proposals into issues #132 and #133.
2026-08-21 11:58:11 -04:00
faber 522b2111dc capability-check CLI + risk map 2026-08-19 22:25:38 -04:00
faber cd09c259c0 restore-multimodal CLI + risk map 2026-08-19 21:06:06 -04:00
faber 482dfed8c0 2026-08-19 11:33:45 -04:00
Joseph Magly b25b3f3b66 fix: harden quantized checkpoint integration 2026-08-16 12:57:17 -04:00
Brian Bell 62b006f6c4 feat: FP8 and NVFP4 checkpoint support (dequantize, surgery in float, BF16 output)
Point obliteratus at an FP8 or NVFP4 checkpoint and it just works:
the loader detects the format from config.json + safetensors metadata
(no weight loads), dequantizes shard-by-shard to a temporary BF16 copy,
then runs the normal float pipeline and saves BF16.

Supported layouts:
- FP8 DeepSeek-style block-wise (weight_scale_inv + weight_block_size)
- FP8 per-channel / per-tensor (compressed-tensors, ModelOpt)
- NVFP4 ModelOpt (uint8 nibbles + FP8 group scales + FP32 global),
  including MIXED_PRECISION checkpoints (FP8 mixer + NVFP4 experts)
- NVFP4 compressed-tensors (reciprocal scales)

Design:
- New pure-torch obliteratus/models/quant_dequant.py; no new deps.
  NVFP4 unpack uses torch.float4_e2m1fn_x2 when a runtime probe proves
  it works, else a chunked nibble LUT (bounds transient int64 index
  memory; a naive implementation OOMed at 96GB on a 30B model).
- Scale keys are dropped only when their base weight exists in the
  same shard, so legitimate params ending in _scale (logit_scale et al.)
  survive.
- Unsupported schemes (fbgemm, quanto, W4A4, ...) fail loudly at load,
  naming the scheme.
- Surgery guards: float8 or packed uint8 reaching _dequantize_weight or
  any fused-MoE path raises RuntimeError instead of silently upcasting
  (bitsandbytes quant_state params are explicitly excluded).
- Save path strips quantization metadata and logs that output is BF16;
  re-quantization for serving is out of scope (llm-compressor/modelopt).
- CLI: new --trust-remote-code flag; help text documents auto-detection.

Validated end-to-end on 1x A100-80GB (see PR description):
Nemotron-3-Nano-Omni-30B NVFP4 (mixed) and FP8, Qwen3-8B-FP8
(block-wise) vs Qwen3-8B BF16 baseline (perplexity 4.23 vs 4.33).
2026-08-16 12:11:07 -04:00
Brian Bell 84b97f6620 compat: transformers 5.x + custom-architecture loader shims, nemotron_h support
Loading custom-architecture checkpoints (Nemotron Omni family) against
transformers 5.14 surfaced API drift and wrapper mismatches:

- flash_attention_2 pinned in config but flash-attn not installed:
  recursively fall back to eager attention, incl. nested sub-configs
  (multimodal llm_config).
- all_tied_weights_keys shim: expected by the accelerate device-map
  integration and assigned by 5.x post_init, but absent on older remote
  code. Settable property aggregating legacy _tied_weights_keys,
  filtering keys that don't resolve on multimodal wrappers.
- prepare_inputs_for_generation: 5.x may pass cache_position=None;
  older remote code assumes a tensor. Wrap and synthesize it.
- Legacy list-style _tied_weights_keys normalized post-load so
  save_pretrained works (emptied when tie_word_embeddings is false).
- Multimodal wrappers whose forward() requires media inputs are
  unwrapped to their language_model submodule for text-only surgery.
- Register nemotron_h architecture (hybrid Mamba/attention/MoE, all
  layer content under layer.mixer) in strategies/utils.py.
2026-08-16 12:09:36 -04:00
Joseph Magly acc6b3b254 test: close Gate 3 tiny-runtime semantics 2026-08-16 07:53:00 -04:00
Joseph Magly d299deb3a3 fix: contain Watchtower result downloads 2026-08-16 06:18:45 -04:00