blumenstiel commited on
Commit
f4421c9
1 Parent(s): 9ffe66d

Fix inference

Browse files
Files changed (1) hide show
  1. inference.py +2 -2
inference.py CHANGED
@@ -320,9 +320,9 @@ def main(
320
  print(
321
  f"\nTreating {len(data_files)} files as {len(data_files)} time steps from the same location\n"
322
  )
323
- if len(data_files) != 3:
324
  print(
325
- "The original model was trained for 3 time steps (expecting 3 files). \nResults with different numbers of timesteps may vary"
326
  )
327
 
328
  if torch.cuda.is_available():
 
320
  print(
321
  f"\nTreating {len(data_files)} files as {len(data_files)} time steps from the same location\n"
322
  )
323
+ if len(data_files) != 4:
324
  print(
325
+ "The original model was trained for four time steps. \nResults with different numbers of time steps may vary"
326
  )
327
 
328
  if torch.cuda.is_available():