Hi. I ran into an error while I tried to load a model and to run a test inference. I modified DATA.TEST.PATH, DATA.TEST.MASK_PATH, and PATHS.CHECKPOINT_FILE. As you can see, I don't have any masks, so I put an empty string.
The error points to simple_data_generator and I saw that it computes max on mask variable, which is actually None. When I put if statement to avoid executing that line, I don't have the error anymore.
Hi, I was aware about the issue but did not push the changes because we are making lots of new things these days to publish the library. Thanks for highlighting the error!
Desc
Hi. I ran into an error while I tried to load a model and to run a test inference. I modified
DATA.TEST.PATH
,DATA.TEST.MASK_PATH
, andPATHS.CHECKPOINT_FILE
. As you can see, I don't have any masks, so I put an empty string.The error points to
simple_data_generator
and I saw that it computes max onmask
variable, which is actuallyNone
. When I put if statement to avoid executing that line, I don't have the error anymore.Config file
What I did
Error msg