Updated/added functions to support auto training of new wakeword models, tests not yet passing [skip ci]

This commit is contained in:
dscripka 2023-08-15 22:00:13 -04:00
parent ab329a5f34
commit 6aef18da2c
4 changed files with 350 additions and 6 deletions

View file

@ -22,10 +22,10 @@ import argparse
parser=argparse.ArgumentParser()
parser.add_argument(
"--chunk_size",
help="How much audio (in samples) to predict on at once",
help="How much audio (in number of samples) to predict on at once",
type=int,
default=1280,
required=True
required=False
)
parser.add_argument(
"--model_path",