-
I am hoping to follow the steps laid out here to perform distributed training on maxxvitv2, but when reproducing the command I get unrecognized argument errors with an ImageFolder. My data folder containing train and validation is 'data' and is in the same directory as The relevant portion of my config looks like this
Running the following command gives If I try the following script and add -d, I get Could this be related to the positional data argument getting deprecated? Thanks!! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
@jturner116 yeah, probably the deprecation, if you load a config file that has it set it will use the value in the config (since it is prioritized over the positional) .. by -d did you mean --data-dir? don't think there is a -d , specifying |
Beta Was this translation helpful? Give feedback.
-
Thanks for the reply, you are quite right! Working great now :D |
Beta Was this translation helpful? Give feedback.
@jturner116 yeah, probably the deprecation, if you load a config file that has it set it will use the value in the config (since it is prioritized over the positional) ..
by -d did you mean --data-dir? don't think there is a -d , specifying
--data-dir data
should override the config value