Mamba
Evo2StyleMCoreMambaModel
Bases: MambaModel
Custom version of MCoreMambaModel that implements reweighted loss calculation.
Note that this is similar to the HyenaModel for uppercase/lowercase handling.
Source code in bionemo/evo2/models/mamba.py
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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 |
|
__init__(*args, **kwargs)
Initializes Evo2StyleMCoreMambaModel
with unique parameters for the Evo2 variant of MCoreMambaModel
.
Source code in bionemo/evo2/models/mamba.py
144 145 146 147 148 149 150 151 152 153 154 155 156 |
|
forward(input_ids, position_ids, attention_mask, decoder_input=None, labels=None, inference_context=None, runtime_gather_output=None, *, inference_params=None, loss_mask=None)
Forward pass with custom loss calculation for uppercase/lowercase reweighting.
Note that this mimics the behavior in hyena_model.py lines 273-292.
Forward function of the Mamba model. This function passes the input tensors through the embedding layer, and then the decoder and finally into the post processing layer (optional).
It either returns the Loss values if labels are given or the final hidden units
Source code in bionemo/evo2/models/mamba.py
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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 |
|
HybridMambaConfig8BEvo2Loss
dataclass
Bases: NemotronHConfigBase
Config for 8B hybrid Mamba model.
Source code in bionemo/evo2/models/mamba.py
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 |
|
__post_init__()
Post-init logic for Evo2 to enable backwards compatibility with old configs.
Source code in bionemo/evo2/models/mamba.py
339 340 341 342 343 344 345 346 347 348 349 350 351 352 |
|
configure_model(tokenizer, pre_process=None, post_process=None, vp_stage=None)
Configures the model for training or inference.
Source code in bionemo/evo2/models/mamba.py
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 |
|
MambaModel
Bases: GPTModel
Mamba model that extends GPTModel for integration with NeMo.
Note that the loss calculation is handled by CustomMCoreMambaModel instead.
Source code in bionemo/evo2/models/mamba.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 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 |
|
forward(input_ids, position_ids, attention_mask=None, labels=None, decoder_input=None, inference_context=None, packed_seq_params=None, inference_params=None, runtime_gather_output=None, loss_mask=None)
Forward pass that delegates to CustomMCoreMambaModel, which handles loss calculation.
Source code in bionemo/evo2/models/mamba.py
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 |
|
get_inference_wrapper(params_dtype, inference_batch_times_seqlen_threshold, inference_max_seq_length=8192)
Gets the inference wrapper for the Mamba model.
Source code in bionemo/evo2/models/mamba.py
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
|
mamba_forward_step(model, batch)
Forward step function for Mamba models, similar to hyena_forward_step.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model
|
The Mamba model |
required | |
batch
|
Dictionary containing input batch data |
required |
Returns:
Type | Description |
---|---|
Tensor
|
torch.Tensor: Output from the model forward pass |
Source code in bionemo/evo2/models/mamba.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|
mamba_no_weight_decay_cond(name, param, exclude_embeddings=False)
Condition for no weight decay for Mamba parameters.
Note that this follows the same pattern as in the original Mamba implementation.
Source code in bionemo/evo2/models/mamba.py
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
|
mamba_no_weight_decay_cond_with_embeddings(name, param)
Condition for no weight decay for Mamba parameters with embeddings.
Note that this follows the same pattern as in the original Mamba implementation but also skips WD on embeddings.
Source code in bionemo/evo2/models/mamba.py
289 290 291 292 293 294 |
|