Views
No views yet
model.pt: FadeMem training checkpoint at step 4,000. The FadeMem inference
loader reads the generator_lora state dictionary from this file.inference.yaml: inference configuration compatible with the official
FadeMem code release.1git clone https://github.com/aniki-ly/FadeMem.git
2cd FadeMem
3
4conda create -n fademem python=3.10 -y
5conda activate fademem
6
7pip install torch==2.8.0 torchvision==0.23.0 \
8 --index-url https://download.pytorch.org/whl/cu128
9pip install -r requirements.txt
10pip install flash-attn==2.8.3 --no-build-isolationbash scripts/download_models.sh inferencefademem_models/FadeMem-FT:1hf download sanity2025/FadeMem-FT \
2 --local-dir fademem_models/FadeMem-FT1FadeMem/
2|-- fademem_models/FadeMem-FT/
3| |-- inference.yaml
4| `-- model.pt
5|-- longlive_models/models/longlive_base.pt
6`-- wan_models/Wan2.1-T2V-1.3B/prompts/example.txt, then run:bash scripts/infer.sh fademem_models/FadeMem-FT/inference.yaml1generator_ckpt: longlive_models/models/longlive_base.pt
2lora_ckpt: fademem_models/FadeMem-FT/model.ptNUM_GPUS=2 bash scripts/infer.sh fademem_models/FadeMem-FT/inference.yamlNUM_GPUS. Generated videos are written to outputs/inference/.critic_lora state dictionary.
The official inference loader ignores it and loads only generator_lora.1@article{lu2026fademem,
2 title = {FadeMem: Distance-Aware Memory Consolidation for Autoregressive Video Diffusion},
3 author = {Lu, Yu and Yang, Junjie and Koniusz, Piotr and Song, YuXin and Yang, Yi},
4 journal = {arXiv preprint arXiv:2606.10671},
5 year = {2026}
6}