Add waypoint-1.5-1B support - #464
Conversation
Greptile SummaryThe PR adds the Waypoint 1.5 1B integration and extends TAEHV with Hunyuan Video 1.5 encoding support.
Confidence Score: 5/5The PR appears safe to merge. No blocking failure remains. Important Files Changed
Sequence DiagramsequenceDiagram
participant Runner
participant Pipeline
participant Encoder as TAEHV Encoder
participant Transformer as Waypoint DiT
participant Decoder as TAEHV Decoder
Runner->>Pipeline: initialize_cache(seed_pixels)
Pipeline->>Encoder: encode four seed frames
Encoder-->>Pipeline: one seed latent
Pipeline->>Transformer: commit seed as action 0
Pipeline->>Decoder: decode seed once into causal history
loop Actions 1..N
Runner->>Pipeline: generate(action, controls)
Pipeline->>Transformer: denoise next latent
Transformer-->>Pipeline: generated latent
Pipeline->>Decoder: decode four RGB frames
Decoder-->>Runner: output frames
end
Reviews (2): Last reviewed commit: "Add waypoint-1.5-1B support" | Re-trigger Greptile |
This patch adds support for waypoint-1.5-1B, a realtime interactive video world model, which is designed to generate on consumer hardware. This patch: 1) extends the existing taehv to support encoder; 2) implements the necessary bits, e.g. DiT, adaptive RMSNorm, etc; 3) supports using JSON file to pass in controls conditions. Signed-off-by: Lin, Peiyong <linpyong@gmail.com>
|
Thanks for the patch! What's the perf you're seeing on this so far? |
|
@jarcherNV @csyonghe do we have a normative way to update the public landing page on which models we support and what perf we're getting so that as we get patches the world knows where we stand in terms of model support and leading perf? |
|
@natduca On an RTX5090, I enabled Full command I ran was |
|
@aidanfnv Is that issue related to the documentation stuff you are working on? |
This patch adds support for waypoint-1.5-1B, a real time interactive video world model, which is designed to generate on consumer hardware.
This patch: