stages ¶
Classes¶
fastvideo.pipelines.basic.minimax_h3.stages.MiniMaxH3AudioDecodingStage ¶
MiniMaxH3AudioDecodingStage(audio_vae: MiniMaxH3AudioVAE)
Bases: PipelineStage
Drop audio condition rows and decode the target stereo waveform.
Source code in fastvideo/pipelines/basic/minimax_h3/stages/minimax_h3_decoding.py
Methods:¶
fastvideo.pipelines.basic.minimax_h3.stages.MiniMaxH3AudioDecodingStage.forward ¶
forward(batch: ForwardBatch, fastvideo_args: FastVideoArgs) -> ForwardBatch
Decode H3 audio latents into a stereo CPU waveform.
Source code in fastvideo/pipelines/basic/minimax_h3/stages/minimax_h3_decoding.py
fastvideo.pipelines.basic.minimax_h3.stages.MiniMaxH3ConditioningStage ¶
MiniMaxH3ConditioningStage(conditioner: MiniMaxH3Qwen3VLConditioner, tokenizer: Any, processor: Any, *, ref2va: bool = False)
Bases: PipelineStage
Encode the prompt and ordered visual presentation with Qwen3-VL.
Source code in fastvideo/pipelines/basic/minimax_h3/stages/minimax_h3_conditioning.py
Methods:¶
fastvideo.pipelines.basic.minimax_h3.stages.MiniMaxH3ConditioningStage.forward ¶
forward(batch: ForwardBatch, fastvideo_args: FastVideoArgs) -> ForwardBatch
Encode one H3 prompt presentation and attach its packed text features.
Source code in fastvideo/pipelines/basic/minimax_h3/stages/minimax_h3_conditioning.py
fastvideo.pipelines.basic.minimax_h3.stages.MiniMaxH3DenoisingStage ¶
Bases: PipelineStage
Build both schedules and denoise both modalities in one transformer call.
Source code in fastvideo/pipelines/basic/minimax_h3/stages/minimax_h3_denoising.py
Methods:¶
fastvideo.pipelines.basic.minimax_h3.stages.MiniMaxH3DenoisingStage.forward ¶
forward(batch: ForwardBatch, fastvideo_args: FastVideoArgs) -> ForwardBatch
Denoise the packed H3 video and audio streams over one shared schedule.
Source code in fastvideo/pipelines/basic/minimax_h3/stages/minimax_h3_denoising.py
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | |
fastvideo.pipelines.basic.minimax_h3.stages.MiniMaxH3InputPreparationStage ¶
Bases: PipelineStage
Prepare FL2VA/T2VA or Ref2VA inputs without a parallel family state object.
Source code in fastvideo/pipelines/basic/minimax_h3/stages/minimax_h3_input_preparation.py
fastvideo.pipelines.basic.minimax_h3.stages.MiniMaxH3LatentPreparationStage ¶
MiniMaxH3LatentPreparationStage(transformer: Any, vae: Any, audio_vae: Any, scheduler: Any, *, ref2va: bool = False)
Bases: PipelineStage
Encode fixed conditions, build the row layout, then draw target noise.
Source code in fastvideo/pipelines/basic/minimax_h3/stages/minimax_h3_latent_preparation.py
fastvideo.pipelines.basic.minimax_h3.stages.MiniMaxH3VideoDecodingStage ¶
MiniMaxH3VideoDecodingStage(vae: AutoencoderKLMiniMaxH3, transformer: Any)
Bases: PipelineStage
Drop visual condition rows, unpatchify, and decode the target video.
Source code in fastvideo/pipelines/basic/minimax_h3/stages/minimax_h3_decoding.py
Methods:¶
fastvideo.pipelines.basic.minimax_h3.stages.MiniMaxH3VideoDecodingStage.forward ¶
forward(batch: ForwardBatch, fastvideo_args: FastVideoArgs) -> ForwardBatch
Decode H3 video latents into normalized CPU pixels.