Recipes
GeneformerRecipes
Bases: BaseModel
Pre-baked recipes for Geneformer.
THIS PYDANTIC MODEL IS NOT MEANT FOR SERIALIZATION. Only used to facilitate argparse. Each recipe should take args
as the only argument. We use partials so we can provide this information at runtime. Add new recipes to this model.
Source code in bionemo/geneformer/run/recipes.py
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 |
|
default_adam_optimizer_with_cosine_annealing_recipe()
Default optimizer scheduler config for Geneformer. See OptimizerSchedulerConfig for defaults.
Source code in bionemo/geneformer/run/recipes.py
468 469 470 |
|
default_trainer_config_recipe()
Default trainer config for Geneformer.
Source code in bionemo/geneformer/run/recipes.py
375 376 377 |
|
experiment_config_recipe()
Default experiment config for Geneformer. Used in testing.
Source code in bionemo/geneformer/run/recipes.py
473 474 475 476 477 478 479 480 481 482 483 484 |
|
finetune_test_recipe(args)
Recipe for finetuning a regression head on the masked tokens.
Source code in bionemo/geneformer/run/recipes.py
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 |
|
geneformer_106m_experiment_config(result_dir)
Experiment config for Geneformer 106m.
Source code in bionemo/geneformer/run/recipes.py
180 181 182 183 184 185 186 187 |
|
geneformer_106m_model_config(seq_length=2048, precision='bf16-mixed', nemo1_init_path=None, initial_ckpt_path=None, biobert_spec_option=BiobertSpecOption.bert_layer_with_transformer_engine_spec)
Geneformer 106m model config settings.
Source code in bionemo/geneformer/run/recipes.py
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 |
|
geneformer_106m_parallel_config()
Base parallel config for Geneformer.
Source code in bionemo/geneformer/run/recipes.py
168 169 170 171 172 173 174 175 176 177 |
|
geneformer_106m_pretrain_recipe(args)
Recipe for pretraining the 106m model. Uses 8 GPUs for data parallelism.
Source code in bionemo/geneformer/run/recipes.py
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 |
|
geneformer_106m_wandb_config()
Wandb config for Geneformer 106m.
Source code in bionemo/geneformer/run/recipes.py
190 191 192 193 194 195 196 197 198 199 200 201 202 |
|
geneformer_10m_experiment_config(result_dir)
Experiment config for Geneformer 10m.
Source code in bionemo/geneformer/run/recipes.py
142 143 144 145 146 147 148 149 |
|
geneformer_10m_finetune_config(seq_length=2048, precision='bf16-mixed', nemo1_init_path=None, initial_ckpt_path=None, biobert_spec_option=BiobertSpecOption.bert_layer_with_transformer_engine_spec)
Geneformer 10m finetuning config settings.
Source code in bionemo/geneformer/run/recipes.py
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 |
|
geneformer_10m_finetune_recipe(args)
Recipe for finetuning the 10m model on a token regression head. Used as an example and for testing.
Source code in bionemo/geneformer/run/recipes.py
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 |
|
geneformer_10m_model_config(seq_length=2048, precision='bf16-mixed', nemo1_init_path=None, initial_ckpt_path=None, biobert_spec_option=BiobertSpecOption.bert_layer_with_transformer_engine_spec)
Geneformer 10m model config settings.
Source code in bionemo/geneformer/run/recipes.py
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 |
|
geneformer_10m_pretrain_recipe(args)
Recipe for pretraining the 10m model.
Source code in bionemo/geneformer/run/recipes.py
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 |
|
geneformer_10m_shortpretrain_recipe(args)
Recipe for pretraining the 10m model.
Source code in bionemo/geneformer/run/recipes.py
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 |
|
geneformer_10m_wandb_config()
Wandb config for Geneformer 10m.
Source code in bionemo/geneformer/run/recipes.py
152 153 154 155 156 157 158 159 160 161 162 163 164 |
|
geneformer_1b_experiment_config(result_dir)
Experiment config for Geneformer 1B.
Source code in bionemo/geneformer/run/recipes.py
262 263 264 265 266 267 268 269 |
|
geneformer_1b_model_config(seq_length=2048, precision='bf16-mixed', nemo1_init_path=None, initial_ckpt_path=None, biobert_spec_option=BiobertSpecOption.bert_layer_with_transformer_engine_spec)
Geneformer 1B model config settings.
Source code in bionemo/geneformer/run/recipes.py
287 288 289 290 291 292 293 294 295 296 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 |
|
geneformer_1b_optimizer_scheduler_config()
Optimizer scheduler config for Geneformer 1B.
Source code in bionemo/geneformer/run/recipes.py
58 59 60 61 62 63 64 65 66 67 68 69 70 |
|
geneformer_1b_parallel_config()
Base parallel config for Geneformer 1B. Increase devices as needed for DDP.
Source code in bionemo/geneformer/run/recipes.py
250 251 252 253 254 255 256 257 258 259 |
|
geneformer_1b_pretrain_recipe(args)
Recipe for pretraining the 1B model. Uses tensor and pipeline parallelism across multiple nodes.
Source code in bionemo/geneformer/run/recipes.py
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 |
|
geneformer_1b_training_config()
Training config for Geneformer 1B.
Source code in bionemo/geneformer/run/recipes.py
80 81 82 |
|
geneformer_1b_wandb_config()
Wandb config for Geneformer 1B.
Source code in bionemo/geneformer/run/recipes.py
272 273 274 275 276 277 278 279 280 281 282 283 284 |
|
geneformer_base_optimizer_scheduler_config()
Base optimizer scheduler config for Geneformer.
Source code in bionemo/geneformer/run/recipes.py
53 54 55 |
|
geneformer_base_parallel_config()
Base parallel config for Geneformer.
Source code in bionemo/geneformer/run/recipes.py
41 42 43 44 45 46 47 48 49 50 |
|
geneformer_base_training_config()
Base training config for Geneformer.
Source code in bionemo/geneformer/run/recipes.py
73 74 75 76 77 |
|
geneformer_data_recipe(data_dir)
Recipe that produces the base geneformer small data configuration.
Source code in bionemo/geneformer/run/recipes.py
92 93 94 |
|
geneformer_finetuning_regression_head_recipe(precision='bf16-mixed', nemo1_init_path=None, initial_ckpt_path=None, initial_ckpt_skip_keys_with_these_prefixes=None)
Recipe for finetuning a regression head on the masked tokens.
Source code in bionemo/geneformer/run/recipes.py
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
|
geneformer_short_base_training_config()
Base training config for Geneformer.
Source code in bionemo/geneformer/run/recipes.py
85 86 87 88 89 |
|
geneformer_tiny_config(seq_length=2048, precision='bf16-mixed', nemo1_init_path=None, initial_ckpt_path=None, biobert_spec_option=BiobertSpecOption.bert_layer_with_transformer_engine_spec)
Geneformer tiny model config settings, used in testing.
Source code in bionemo/geneformer/run/recipes.py
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 |
|
pretrain_tiny_test_recipe(args)
Recipe for pretraining a tiny model. Used in testing.
Source code in bionemo/geneformer/run/recipes.py
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 |
|
simple_parallel_recipe(tensor_model_parallel_size=1, pipeline_model_parallel_size=1, num_devices=1, accumulate_grad_batches=1)
Simple parallel config for Geneformer, only used in testing.
Source code in bionemo/geneformer/run/recipes.py
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 |
|