Website overhaul

This commit is contained in:
2025-03-27 22:57:31 +01:00
parent 2b75326eac
commit 755fd297bb
70 changed files with 1389 additions and 709 deletions
404.md_bibliography.bib
_layouts
_posts
projects
research
2018-11-01-learned-trajectory-annotation.md2018-11-01-trajectory-annotation.md2019-07-01-neural-self-replication.md2019-07-01-self-replication.md2019-07-05-deep-audio-baselines.md2019-07-05-deep-neural-baselines.md2020-03-01-soccer-team-vectors.md2020-05-01-3d-primitive-segmentation.md2020-05-01-hybrid-poin-cloud-segmentation.md2020-06-01-ood-classification.md2020-06-01-peoc-ood-detection.md2020-07-15-av-meantime-coverage.md2020-07-15-what-to-do-in-the-meantime.md2020-10-25-surgical-mask-detection copy.md2020-10-25-surgical-mask-detection.md2021-03-01-Feature_Representations_Anomalous_Sound.md2021-03-01-anomalous-sound-features.md2021-03-02-AD_by_Image_Transfer_Learning.md2021-03-02-sound-anomaly-transfer.md2021-03-03-Water_Networks.md2021-03-03-acoustic-leak-detection.md2021-03-04-Recurrent_Primate_Classification.md2021-03-04-primate-vocalization-classification.md2021-03-05-Vision_Transformer.md2021-03-05-audio-vision-transformer.md2021-03-06-SR_Goals.md2021-03-06-tasked-self-replication.md2022-05-09-AD_in_RL.md2022-05-09-rl-anomaly-detection.md2022-08-01-SR_journal.md2022-08-01-extended-self-replication.md2022-12-01-organism-network-emergence.md2022-12-01-organism_networks.md2023-02-24-voronoi-data-augmentation.md2023-02-24-voronoi_patches.md2023-05-01-emergent-social-dynamics.md2023-05-01-surprised_soup.md2023-06-25-binary_primates.md2023-06-25-primate-subsegment-sorting.md2024-01-13-aquarium-marl-environment.md2024-01-13-aquarium.md2024-10-27-emergence-mas.md2024-10-27-mas-emergence-safety.md
teaching
_sass/minimal-mistakes
about.mdblog.mdindex.html.bakindex.mdnginx_default.confprojects.mdpublications.mdresearch.md

@ -0,0 +1,30 @@
---
layout: single
title: "Anomalous Sound Features"
categories: research
tags: anomaly-detection audio-classification deep-learning transfer-learning feature-extraction
excerpt: "Pretrained networks extract features for anomalous industrial sound detection."
header:
teaser: /assets/figures/8_anomalous_sound_teaser.jpg
scholar_link: "https://scholar.google.de/citations?user=NODAd94AAAAJ&hl=en"
---
![Diagram showing features extracted by different pretrained networks visualized in a latent space](\assets\figures\8_anomalous_sound_features.jpg)
{:style="display:block; width:40%" .align-right}
Detecting anomalous sounds, particularly in industrial settings, is crucial for predictive maintenance and safety. This often involves unsupervised or semi-supervised approaches where models learn a representation of 'normal' sounds. This research explores the effectiveness of leveraging **transfer learning** for this task by using **pretrained deep neural networks** as fixed feature extractors.
The core methodology involves:
1. Taking pretrained networks trained on large datasets from various domains.
2. Using these networks to extract high-level, potentially semantically rich feature vectors from audio signals (specifically, industrial machine noises relevant to challenges like DCASE - Detection and Classification of Acoustic Scenes and Events).
3. Modeling the distribution of features extracted from 'normal' sounds using a **Gaussian Mixture Model (GMM)**.
4. Identifying anomalous sounds as those whose extracted features have low likelihood under the learned normality model.
A key aspect of this study was comparing feature extractors pretrained on distinctly different domains:
* **Images** (e.g., models trained on ImageNet)
* **Environmental Sounds** (e.g., models trained on AudioSet or ESC-50)
* **Music** (e.g., models trained on music tagging datasets)
These were evaluated alongside a baseline autoencoder trained directly on the target machine sound data.
Surprisingly, the results indicated that features derived from networks pretrained on **music data** often yielded the best performance in detecting anomalous industrial sounds, frequently surpassing features from environmental sound models and the autoencoder baseline. This counter-intuitive finding suggests that direct domain similarity between the pretraining dataset and the target application data is not necessarily the primary factor determining the utility of transferred features for anomaly detection. {% cite muller2020analysis %}