micmon icon indicating copy to clipboard operation
micmon copied to clipboard

A Python library and set of scripts to create labelled audio datasets from raw audio files and use them to train sound detection models.

Results 7 micmon issues
Sort by recently updated
recently updated
newest added

I've build a baby monitor based on your great article: https://towardsdatascience.com/create-your-own-smart-baby-monitor-with-a-raspberrypi-and-tensorflow-5b25713410ca In my application using the micmon library the memory leaks, so that I have to perform regularly restarts as...

Hi, Many thanks for your work. Very helpfull. Could you upload your trained model? For babycries detection, have you tried pre-trained sound classification models? How good they are between yours...

Hello! I wanted to install tensorflow on my raspbian, but I couldn't. My python version is 3.9. Can you help me?

Calling `AudioFile(audio_dir)` where `audio_dir` is a `AudioDirectory` object was causing an `AttributeError`, since the `audio_file` variable was being replaced by a string, before the `labels_file` variable was read out from...

First of all, great code, I like it. I am newbe a python with my raspberry pi. I read your article ,"towardsdatascience.com/create-your-own-smart-baby-monitor-with-a-raspberrypi". I have this error with the train.py and...

import os from micmon.audio import AudioDirectory, AudioPlayer, AudioFile from micmon.dataset import DatasetWriter basedir = os.path.expanduser('~/BabyCare') audio_dir = os.path.join(basedir, 'audio/sample_1') print(audio_dir) # print just [ ] datasets_dir = os.path.join(basedir, 'data') cutoff_frequencies...

Hey! Great library! Please tell me what could be the problem. When I run the train.py, I get an error: `Traceback (most recent call last): File "train.py", line 50, in...