stadiello commited on
Commit
d376b6c
·
verified ·
1 Parent(s): 9ffe0a4

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +12 -1
README.md CHANGED
@@ -27,7 +27,10 @@ pipeline_tag: audio-classification
27
 
28
  thumbnail: https://huggingface.co/front/assets/huggingface_logo.svg
29
  ---
 
 
30
 
 
31
  Task: bioacoustic coarse classification
32
 
33
  Classes: bird, human, motor, rain_wind, insect, animal
@@ -42,4 +45,12 @@ Test accuracy: 87.44 %
42
 
43
  Datasets: ESC-50, FSD50K, InsectSet32, filtered bird dataset
44
 
45
- Limitations: modèle expérimental, pas encore validé terrain
 
 
 
 
 
 
 
 
 
27
 
28
  thumbnail: https://huggingface.co/front/assets/huggingface_logo.svg
29
  ---
30
+ ## Resume
31
+ Tiny audio classifier designed for environmental monitoring on ultra-low-power microcontrollers such as the Raspberry Pi Pico 2 W. The model classifies environmental sounds into six coarse classes and is optimized for TinyML deployment.
32
 
33
+ ## Specifications
34
  Task: bioacoustic coarse classification
35
 
36
  Classes: bird, human, motor, rain_wind, insect, animal
 
45
 
46
  Datasets: ESC-50, FSD50K, InsectSet32, filtered bird dataset
47
 
48
+ Limitations: modèle expérimental, pas encore validé terrain
49
+
50
+ ## Usage
51
+
52
+ ```py
53
+ import tensorflow as tf
54
+
55
+ model = tf.keras.models.load_model("ecopulse_cnn.keras")
56
+ ```