Skip to content

Commit

Permalink
Export and fix high-res model (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
wesselb authored Aug 29, 2024
1 parent 8060f55 commit b8a0999
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aurora/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
"""Copyright (c) Microsoft Corporation. Licensed under the MIT license."""

from aurora.batch import Batch, Metadata
from aurora.model.aurora import Aurora, AuroraSmall
from aurora.model.aurora import Aurora, AuroraHighRes, AuroraSmall
from aurora.rollout import rollout

__all__ = [
"Aurora",
"AuroraHighRes",
"AuroraSmall",
"Batch",
"Metadata",
Expand Down
1 change: 1 addition & 0 deletions aurora/model/aurora.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ def load_checkpoint(self, repo: str, name: str, strict: bool = True) -> None:

AuroraHighRes = partial(
Aurora,
patch_size=10,
encoder_depths=(6, 8, 8),
decoder_depths=(8, 8, 6),
)

0 comments on commit b8a0999

Please sign in to comment.