mirror of
https://github.com/huggingface/lerobot.git
synced 2026-07-24 02:06:15 +00:00
141c353206
* Add FastWAM policy * Add FastWAM policy review updates * big refactor to use models from diffusers and transformers * changing reproducable results * preparing for training adding some temporary debug code aswell to visualize model output * re-parenting of some layers to enable proper zero-3 FSDP * linting * small fix for the preprocessor and padded images * removing some preprocessors * removing temporary debug code * cleaning up * updating uv lock after rebasing * adding lazy imports * linting * fixing stale assertion * make tokenizer/text-encoder model ids configurable + some nits * moving and renaming files to have a cleaner file tree * removed asserts from the model, added guard instead and completely removed useless asserts * cleaning up imports * removing is_main_process and custom logging logic * removing unused / stale attention path, removing some of the stale forwards within wan/models --------- Co-authored-by: ZibinDong <zibindong@outlook.com> Co-authored-by: Steven Palma <imstevenpmwork@ieee.org>
1.5 KiB
1.5 KiB
FastWAM wan package
This package holds FastWAM's model implementation. It mixes a small vendored subset of the official Wan2.2 source tree with FastWAM's own code, kept flat in a single directory.
Vendored from Wan2.2
- Upstream repository: https://github.com/Wan-Video/Wan2.2
- Upstream commit:
42bf4cfaa384bc21833865abc2f9e6c0e67233dc - License: Apache-2.0, matching the license in
LICENSE.txtfrom the upstream repository
Copied files:
model.py(waswan/modules/model.py), trimmed: the flash-attention path (the vendoredattention.pyand the block/modelforwards) was removed. FastWAM's DiT uses SDPA instead (seevideo_dit.py).get_sampling_sigmasinvideo_dit.py(waswan/utils/fm_solvers.py), inlined next to its only caller.
This subset only backs FastWAM's custom MoT video DiT. The Wan2.2 VAE,
UMT5 text encoder, and tokenizer are no longer vendored - they come from
diffusers.AutoencoderKLWan, transformers.UMT5EncoderModel, and
transformers.AutoTokenizer (see components.py and adapters.py).
FastWAM's own code
video_dit.pybuilds onmodel(sinusoidal_embedding_1d,rope_params,rope_apply, …) and computes attention with SDPA (fastwam_masked_attention). ItsWanContinuousFlowMatchSchedulerusesget_sampling_sigmasfor Wan-compatible inference timesteps.components.py/adapters.pyload the VAE, text encoder, tokenizer, and the custom DiT weights.modular.pydefines the FastWAM model (ActionDiT,MoT,FastWAM, …).