def populate_parser()

in src/speech_reps/featurize.py [0:0]


    def populate_parser(cls, parser):
        parser.add_argument('--model', type=str, choices=['decoar', 'decoar2', 'bertphone'],
            help="Which model to featurize with")
        parser.add_argument('--params', type=str,
            help="Model parameter file")
        parser.add_argument('--gpu', type=int,
            help="GPU to use")
        # Valid pair: .wav --> .npy
        parser.add_argument('--in-wav', type=str,
            help="Input .wav file")
        parser.add_argument('--out-npy', type=str,
            help="Output .npy file")
        parser.set_defaults(func=cls.factory)