Skip to content

Commit

Permalink
fixed typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
dscripka committed Feb 11, 2024
1 parent 6ed9fe7 commit dbf2da8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openwakeword/custom_verifier_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ def train_custom_verifier(
for i in tqdm(positive_reference_clips, desc="Processing positive reference clips")]
)
if positive_features.shape[0] == 0:
raise ValueError("The positive features were created! Make sure that"
raise ValueError("The positive features were not created! Make sure that"
" the positive reference clips contain the appropriate audio"
" for the desired model")
" for the desired model.")

# Get features from negative reference clips
negative_features = np.vstack(
Expand Down

0 comments on commit dbf2da8

Please sign in to comment.