DeMemWM / algorithms /worldmem /dememwm_memory_dit.py
BonanDing's picture
Initial commit
b47a1ce
raw
history blame contribute delete
470 Bytes
from __future__ import annotations
from .dememwm.algorithm import MemoryDiTMixin
from .df_video import BaseVideoDiTMinecraft
class DeMemWMMinecraft(MemoryDiTMixin, BaseVideoDiTMinecraft):
"""Standalone DeMemWM / Memory-DiT algorithm.
Reuses the base video-DiT VAE/diffusion/training infrastructure,
but owns memory construction/injection. Does not route through the legacy memory method.
"""
pass
DeMemWMMemoryDiTMinecraft = DeMemWMMinecraft