Skip to content

Commit

Permalink
Merge branch 'hillst/pydantic-ux' of github.com:NVIDIA/bionemo-framew…
Browse files Browse the repository at this point in the history
…ork into hillst/pydantic-ux
  • Loading branch information
skothenhill-nv committed Nov 5, 2024
2 parents 13d56c2 + 0566901 commit bfcb2c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ the default pretraining DataConfig and DataModule will be insufficient. See ESM2
> ⚠️ **Warning:** This setup does NO configuration of Weights and Biases. Edit your config JSON and populate it with your WandB details.
```bash
bionemo-esm2-train \
bionemo-geneformer-train \
--data-config-t bionemo.geneformer.run.config_models.GeneformerPretrainingDataConfig \
--model-config-t bionemo.geneformer.run.config_models.ExposedGeneformerPretrainConfig \
--config my_config.json
Expand Down
4 changes: 2 additions & 2 deletions sub-packages/bionemo-esm2/src/bionemo/esm2/run/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@

def main(): # noqa: D103
def parse_args():
parser = argparse.ArgumentParser(description="Run Geneformer pretraining")
parser = argparse.ArgumentParser(description="Run ESM2 pretraining")
parser.add_argument("--config", type=str, required=True, help="Path to the JSON configuration file")
parser.add_argument(
"--model-config-t",
default=ExposedESM2PretrainConfig,
required=False,
help="fully resolvable python import path to the ModelConfig object. Builtin options are ExposedGeneformerPretrainConfig and ExposedFineTuneSeqLenBioBertConfig.",
help="fully resolvable python import path to the ModelConfig object. Builtin options are ExposedESM2PretrainConfig.",
)
parser.add_argument(
"--data-config-t",
Expand Down

0 comments on commit bfcb2c9

Please sign in to comment.