about inference
I have a question about inference. Is there a part for generating prediction files? I couldn't find it. What I got were some performance metrics of the predictions.I mean, the various meteorological data of the predictions.
When running inference using the script provided in the README:
python inference/inference.py
--config=afno_backbone
--run_num=0
--weights '/path/to/weights/backbone.ckpt'
--override_dir '/path/to/output/scratch/directory/ '
If you add "--vis"
python inference/inference.py
--config=afno_backbone
--run_num=0
--weights 'required/weights/backbone.ckpt'
--override_dir 'required/override/'
--vis
It will output a h5 file of the predictions to wherever your inference_out.log is being outputted.
This fixes te outcome for a single (the first) initial condition. Is there a way to print to file all of the ics?
Or should I simply comment out lines 354 and 355 https://github.com/NVlabs/FourCastNet/blob/master/inference/inference.py#L354-L355
and maybe also uncomment lines 422 and 423 https://github.com/NVlabs/FourCastNet/blob/master/inference/inference.py#L422-L423
???