| 1 | # Echo 1.5 FP8 low-VRAM inference profile. |
| 2 | |
| 3 | paths: |
| 4 | checkpoint: checkpoints/echo15_fp8 |
| 5 | gemma_path: checkpoints/gemma-3-12b |
| 6 | requests_dir: examples/the_last_visa/requests |
| 7 | requests_glob: "*.json" |
| 8 | output_root: inference_result/low_vram_fp8 |
| 9 | # Set this after precomputing complete text/image/audio R2V conditioning. |
| 10 | conditioning_cache_dir: |
| 11 | |
| 12 | video: |
| 13 | num_frames: 241 |
| 14 | height: 736 |
| 15 | width: 1280 |
| 16 | fps: 25 |
| 17 | seed: 42 |
| 18 | |
| 19 | video_vae: |
| 20 | decode_mode: tiled |
| 21 | tile_size_frames: 64 |
| 22 | tile_overlap_frames: 24 |
| 23 | tile_size_pixels: 512 |
| 24 | tile_overlap_pixels: 64 |
| 25 | |
| 26 | denoising: |
| 27 | steps: [1000, 994, 988, 981, 975, 909, 725, 422, 0] |
| 28 | sigmas: [1.0, 0.99375, 0.9875, 0.98125, 0.975, 0.909375, 0.725, 0.421875, 0.0] |
| 29 | |
| 30 | memory: |
| 31 | max_size: 7 |
| 32 | downscale_factor: 1 |
| 33 | enable_audio: true |
| 34 | position_mode: slot_center |
| 35 | position_offset: 500.0 |
| 36 | position_slot_stride: 50.0 |
| 37 | voice_filter: |
| 38 | enabled: true |
| 39 | backend: msst_speech |
| 40 | min_output_rms: 0.004 |
| 41 | msst_dir: third_party/MSST-WebUI |
| 42 | msst_model_path: checkpoints/msst/model_bandit_plus_dnr_sdr_11.47.chpt |
| 43 | msst_config_path: third_party/MSST-WebUI/configs_backup/multi_stem_models/model_bandit_plus_dnr_sdr_11.47.chpt.yaml |
| 44 | msst_model_type: bandit |
| 45 | msst_sample_rate: 44100 |
| 46 | msst_device: auto |
| 47 | msst_local_rank_env: LOCAL_RANK |
| 48 | |
| 49 | inference: |
| 50 | device: cuda |
| 51 | dtype: bfloat16 |
| 52 | prompt_max_chars: 1500 |
| 53 | text_batch_size: 1 |
| 54 | image_batch_size: 1 |
| 55 | audio_batch_size: 1 |
| 56 | dit_layerwise_offload: |
| 57 | enabled: true |
| 58 | resident_blocks: 0 |
| 59 | prefetch_blocks: 1 |
| 60 | pin_memory: true |
| 61 |