From 8e4f8517581b056e6e944e5e7e9eed85d7462fb4 Mon Sep 17 00:00:00 2001 From: Stefan Taubert <23339395+stefantaubert@users.noreply.github.com> Date: Tue, 23 Jul 2024 18:39:54 +0200 Subject: [PATCH] Change case --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 84f5383..66a92ac 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ predictions = model.predict_species_within_audio_file(audio_path) # get most probable prediction at time interval 0s-3s prediction, confidence = list(predictions[(0.0, 3.0)].items())[0] print(f"predicted '{prediction}' with a confidence of {confidence:.6f}") -# Output: +# output: # predicted 'Poecile atricapillus_Black-capped Chickadee' with a confidence of 0.814056 ``` @@ -51,7 +51,7 @@ predictions = model.predict_species_at_location_and_time(42.5, -76.45, week=4) # get most probable prediction first_prediction, confidence = list(predictions.items())[0] print(f"predicted '{first_prediction}' with a confidence of {confidence:.6f}") -# Output: +# output: # predicted 'Cyanocitta cristata_Blue Jay' with a confidence of 0.927620 ``` @@ -77,7 +77,7 @@ predictions = model.predict_species_within_audio_file( # get most probable prediction at time interval 0s-3s prediction, confidence = list(predictions[(0.0, 3.0)].items())[0] print(f"predicted '{prediction}' with a confidence of {confidence:.6f}") -# Output: +# output: # predicted 'Poecile atricapillus_Black-capped Chickadee' with a confidence of 0.814056 ```