Skip to content

Commit

Permalink
More neuralgcm fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses committed Nov 8, 2024
1 parent 9876c72 commit f04cec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/neuralgcm_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def setUp(self):
if os.getenv("NEURALGCM_LARGE") is not None:
inner_steps = 24 # save model outputs once every 24 hours
outer_steps = 4 * 24 // inner_steps # total of 4 days
elif s.getenv("NEURALGCM_MEDIUM") is not None:
elif os.getenv("NEURALGCM_MEDIUM") is not None:
inner_steps = 4 # save model outputs once every 24 hours
outer_steps = 4 * 4 // inner_steps # total of 4 days
else:
Expand Down

0 comments on commit f04cec0

Please sign in to comment.