Lewis34cs.github.io


Mel-Spectrograms

Spectrograms are immensely useful tools that we can use to help dissect information from audio files and process into images. In a spectrogram, the horizontal axis represents time, the vertical axis represents frequency, and the color intensity represents the amplitude of a frequency at a certain point in time. In case you can’t quite picture that, here is an example of what a spectrogram looks like:


Shoutout to the Callbacks

from tensorflow.keras.callbacks import EarlyStopping, ModelCheckpoint, ReduceLROnPlateau


The Complex Simplicity of Pipelines

Pipelines are common in machine learning systems, and help with speeding up and simplifying some preprocessing situations. They are also useful when it comes to spitting out base models and comparing them to see which may give a better result for a particular metric/metrics, but it can also be tricky to access certain parts of a pipeline. The skeleton of a pipeline for one model is fairly simple.


Mel-Spectrograms

Spectrograms are immensely useful tools that we can use to help dissect information from audio files and process into images. In a spectrogram, the horizontal axis represents time, the vertical axis represents frequency, and the color intensity represents the amplitude of a frequency at a certain point in time. In case you can’t quite picture that, here is an example of what a spectrogram looks like:


The Mysteries of the Fabled Violin Plot

What is the violin plot? Where did it come from? Can you play it?