File size: 764 Bytes
00c7b31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from .framepack_length import (
    framepack_align_context_actions_to_latents,
    framepack_length_compress_context_latents,
)
from .framepack_weight import apply_framepack_token_weights
from .geometry_spatial_memory import GeometrySpatialMemory
from .mixture_of_contexts import MixtureOfContexts
from .spatial_grid_memory import (
    SpatialCrossAttnReadout,
    SpatialGridMemory,
    apply_spatial_cross_attn_readout,
    inject_spatial_memory,
)
from .videossm_hybrid import HybridStateSpaceMemory

from .block_wise_ssm import BlockWiseStateSpaceMemory
from .u_vit_cgla_blocks import CGLATransformerBlock, remap_wan_to_cgla

from .uncertainty import (
    UncertaintyHead,
    per_token_mse_map,
    recover_x0_flow_match,
    retrieval_uncertainty_loss,
)