We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d80d6 commit 5690a5cCopy full SHA for 5690a5c
src/ai_models_gencast/model.py
@@ -296,8 +296,9 @@ def run(self):
296
stepper = self.stepper(self.hour_steps)
297
298
with stepper:
299
- with warnings.catch_warnings(action="ignore", category=FutureWarning):
+ with warnings.catch_warnings(action="ignore"):
300
# Remove GraphCast/GenCast xarray future warnings
301
+ warnings.filterwarnings("ignore", category=FutureWarning)
302
for i, chunk in enumerate(
303
rollout.chunked_prediction_generator_multiple_runs(
304
self.model,
0 commit comments