Skip to content

Commit

Permalink
added release_cache in instansiate
Browse files Browse the repository at this point in the history
  • Loading branch information
einrone committed Jan 9, 2025
1 parent b4446f3 commit d902569
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions bris/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@

LOGGER = logging.getLogger(__name__)


def main():

parser = ArgumentParser()
parser.add_argument("--debug", action="store_true")
parser.add_argument("--config", type=str, required=True)
Expand Down Expand Up @@ -58,6 +56,7 @@ def main():
data_reader=datamodule.data_reader,
forecast_length=config.leadtimes,
variable_indices=decoder_variable_indices,
release_cache=config.release_cache,
)

callbacks = list()
Expand All @@ -79,7 +78,5 @@ def main():
output.finalize()

print("Hello world")


if __name__ == "__main__":
main()

0 comments on commit d902569

Please sign in to comment.