boly38 / botEnSky

BlueSky bot account that bring happiness to BlueSky users
https://bsky.app/profile/botensky.bsky.social
MIT License
0 stars 0 forks source link

Identify Birds ! #57

Closed boly38 closed 1 day ago

boly38 commented 3 weeks ago

Need

Check if a free api exist in order to do a bird identification plugin

Candidates

relevant candidates list:

need to dig more list

(seems) đŸŸĨ out-of-scope list

💲 💲 NOT free

other references

boly38 commented 3 weeks ago

Roboflow > bird-v2

credit;

James Gallagher. (Feb 20, 2023). How to Use the Roboflow Bird Detection API. Roboflow Blog: https://blog.roboflow.com/bird-detection-api/

ℹī¸ current model training " the model only detects the species of around 30 birds," (but could increase over the time) ℹī¸ there is a feature to augment the input image with box+class_label around (1..N) detection(s) (seen in python) image

free plan limits seems to be 10k call per month image

➕ 2 simple examples to test, ✔ī¸ it works, it'sfree ➖ give only "class" (result extract, cf gist) :

  confidence: 0.6883782148361206,
  class: 'orchard-oriole',
  class_id: 19,
  detection_id: '4c4c2404-f16b-4bd9-9416-e5525e2566fc'

⁉ī¸ is it possible to get result class details ? it seems that "class" is the final result. ⁉ī¸ what is an acceptable confident ratio ? => do more tests

More tests :

boly38 commented 3 weeks ago

Google cloud vision API

image image

boly38 commented 2 weeks ago

BioCLIP

repo - demo + integration samples

I've got NO error until now on my fiew (10) manual tests 😲

Example1 image

Example2 image +avibase example2


Deep tests :

+huggingface discussion about NodeJS + REX

boly38 commented 1 day ago

Github actions : support cron timezone : discussion and ticket

Interesting discussion extract workaround

schedule:
    # During "Central European Time" (CET): Offset from UTC: -1
    - cron: '42  7,10,13,16  *  11-12,1-3 1-5'
    # During "Central European Summer Time" (CEST): Offset from UTC: -2
    - cron: '42  6,9,12,15   *  4-10      1-5'
During winter-months, it runs on a 1-hour offset, during summer-months on a 2-hour offset.