File size: 501 Bytes
5085882 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# A simple use of Audio Masked AutoEncoder (AudioMAE)
Reference code: https://github.com/facebookresearch/AudioMAE
Paper: https://arxiv.org/abs/2207.06405
Install the required python packages:
```
pip install -r requirments.txt
```
See the usage in example.py
```
python example.py
"""
Load AudioMAE from /mnt/bn/data-xubo/project/Masked_AudioEncoder checkpoint/finetuned.pth / message: <All keys matched successfully>
Start evaluation on AudioSet ...
mAP: 0.463003
"""
``` |