Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh committed Nov 27, 2024
1 parent 3ce2f25 commit 2d5cd3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/train/OLMo2-ladder.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class BaselineModelLadder(ModelLadder):
}

def get_model_config(self, *, size: ModelSize) -> TransformerConfig:
return getattr(TransformerConfig, f"olmo_{size}")(
return getattr(TransformerConfig, f"olmo2_{size}")(
vocab_size=self.tokenizer.padded_vocab_size(),
init_seed=self.init_seed,
compile=True,
Expand Down

0 comments on commit 2d5cd3e

Please sign in to comment.