You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, command-line arguments in train_using_detecto.py are baked firmly into the main method. These should be kept in main, and the rest of the main method moved to a function that takes the command-line arguments as parameters instead.
This paves the way for unit tests in the future: calling the function with any arguments is much simpler than entering command-line arguments each time.
The text was updated successfully, but these errors were encountered:
Currently, command-line arguments in train_using_detecto.py are baked firmly into the main method. These should be kept in main, and the rest of the main method moved to a function that takes the command-line arguments as parameters instead.
This paves the way for unit tests in the future: calling the function with any arguments is much simpler than entering command-line arguments each time.
The text was updated successfully, but these errors were encountered: