Skip to content

budzianowski/VAEB

Repository files navigation

VAEB

##Adding command line args In order to add command line arguments:

  1. Add the argument name as key in dictionary at top of VAEB.py, add the default value at the argument type as keys
  2. Can then access the argument in main fucntion using: args['arg-name'] To add command line flag:
  3. Add name of flag and default tuthness to flag dictionary at top of VAEB.py
  4. Can access flag as args['flag-name']