Skip to content

Commit

Permalink
Change case
Browse files Browse the repository at this point in the history
  • Loading branch information
stefantaubert committed Jul 23, 2024
1 parent 96f8146 commit 8e4f851
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -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
```

Expand All @@ -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
```

Expand Down

0 comments on commit 8e4f851

Please sign in to comment.