Skip to content

Commit

Permalink
Changed CLI description
Browse files Browse the repository at this point in the history
  • Loading branch information
kahst committed Sep 18, 2023
1 parent 1e2dbde commit 432d675
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion embeddings.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def analyzeFile(item):

if __name__ == "__main__":
# Parse arguments
parser = argparse.ArgumentParser(description="Analyze audio files with BirdNET")
parser = argparse.ArgumentParser(description="Extract feature embeddings with BirdNET")
parser.add_argument(
"--i", default="example/", help="Path to input file or folder. If this is a file, --o needs to be a file too."
)
Expand Down
2 changes: 1 addition & 1 deletion train.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def trainModel(on_epoch_end=None):

if __name__ == "__main__":
# Parse arguments
parser = argparse.ArgumentParser(description="Analyze audio files with BirdNET")
parser = argparse.ArgumentParser(description="Train a custom classifier with BirdNET")
parser.add_argument("--i", default="train_data/", help="Path to training data folder. Subfolder names are used as labels.")
parser.add_argument(
"--o", default="checkpoints/custom/Custom_Classifier.tflite", help="Path to trained classifier model output."
Expand Down

0 comments on commit 432d675

Please sign in to comment.