Views
No views yet
| Variant | Folder | Size | Use case |
|---|---|---|---|
| Monolithic | monolithic/ | ~7.3 GB | Original ONNX export with one DiT step graph plus VAE encoder/decoder. |
| Block-sharded | blocks/ | ~7.29 GB | FP16 block-sharded export for block-streaming execution and lower peak memory loaders. |
hf download Merserk/SeedVR2-3B-ONNX --include "monolithic/*" --include "config.json" --include "bucket_shapes.json" --include "versions*.json"1from huggingface_hub import snapshot_download
2
3snapshot_download(
4 "Merserk/SeedVR2-3B-ONNX",
5 allow_patterns=[
6 "monolithic/*",
7 "config.json",
8 "bucket_shapes.json",
9 "versions*.json",
10 ],
11)hf download Merserk/SeedVR2-3B-ONNX --include "blocks/*" --include "config.json" --include "bucket_shapes.json" --include "versions*.json"1from huggingface_hub import snapshot_download
2
3snapshot_download(
4 "Merserk/SeedVR2-3B-ONNX",
5 allow_patterns=[
6 "blocks/*",
7 "config.json",
8 "bucket_shapes.json",
9 "versions*.json",
10 ],
11)monolithic/.onnx file together with its matching .onnx.data file:1monolithic/
2 seedvr2_step_cfg.onnx
3 seedvr2_step_cfg.onnx.data
4 seedvr2_vae_encoder.onnx
5 seedvr2_vae_encoder.onnx.data
6 seedvr2_vae_decoder.onnx
7 seedvr2_vae_decoder.onnx.databatch=1, frames=5, height=480, width=848blocks/1blocks/
2 seedvr2_cfg_combine.onnx
3 seedvr2_dit_embed.onnx
4 seedvr2_dit_block_00.onnx
5 ...
6 seedvr2_dit_block_31.onnx
7 seedvr2_dit_out.onnx
8 seedvr2_vae_encoder.onnx
9 seedvr2_vae_decoder.onnx1bucket_f1_256x256
2batch=1, frames=1, height=256, width=256[1,3,1,256,256], produces latent [1,16,1,32,32], and the decoder returns [1,3,1,256,256].config.json lists both variants and the exact paths inside this repository.bucket_shapes.json lists bucket shapes for both variants.versions.json points to variant-specific version metadata.versions_monolithic.json records the monolithic export metadata.versions_block.json records the block-sharded export metadata.ByteDance-Seed/SeedVR2-3B.