rithwiks commited on
Commit
cdb36d2
1 Parent(s): b1e028f

Updated help string

Browse files
Files changed (1) hide show
  1. utils/eval_baselines.py +1 -1
utils/eval_baselines.py CHANGED
@@ -153,7 +153,7 @@ if __name__ == "__main__":
153
  parser.add_argument(
154
  "dimension",
155
  choices=['2d', '2d-top', '2d-bottom', '3dt', '3dw', 'tw', '3dt_reshape', '3dw_reshape'],
156
- help="Specify whether the data is 2d, 3dt (3d time dimension), or 3dw (3d wavelength dimension)."
157
  )
158
  args = parser.parse_args()
159
  dim = args.dimension.lower()
 
153
  parser.add_argument(
154
  "dimension",
155
  choices=['2d', '2d-top', '2d-bottom', '3dt', '3dw', 'tw', '3dt_reshape', '3dw_reshape'],
156
+ help="Specify whether the data is 2d, 3dt (3d time dimension), 3dw (3d wavelength dimension), 2d-top (only top 8 bits), 2d-bottom (only bottom 8 bits), tw (only a single x,y spatial location but all timesteps and wavelengths), 3dt_reshape or 3dw_reshape for the 2D flattened 3D evals, for use on JPEG-LS or RICE."
157
  )
158
  args = parser.parse_args()
159
  dim = args.dimension.lower()