DiogenesAnalytics / autoencoder

Python library implementing various autoencoders.
https://colab.research.google.com/github/DiogenesAnalytics/autoencoder/blob/master/notebooks/demo/anomaly_detection.ipynb
MIT License
0 stars 0 forks source link

Feature: FeatureExtractor Class #30

Open DiogenesAnalytics opened 8 months ago

DiogenesAnalytics commented 8 months ago

Problem

One of the issues encountered in developing autoencoders (and likely any neural network-based model) is understanding what features are present in the data, and what features is your model learning.

Solution

A class devoted to extracting features from data (e.g. ImageFeatureExtractor).

References