vineeths96 / Spoken-Keyword-Spotting

In this repository, we explore using a hybrid system consisting of a Convolutional Neural Network and a Support Vector Machine for Keyword Spotting task.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

question

SamanaBS opened this issue · comments

why is the OCSVM taking input from the penultimate dense layer of CNN ?

We use the CNN model as a feature extractor. Since we have trained a model to perform word classification, we expect it to learn rich latent representations. Hence, we pick the output of a dense layer as our feature for OCSVM.

Infact, you can use any layer's output as your feature. You should probably try with different ones. But typically, the deeper the better

okay thank