Classification of hand crafted Features with pre train CNN models

4 visualizaciones (últimos 30 días)
Asaf Raza
Asaf Raza el 5 de Mzo. de 2021
Respondida: Jayanti el 24 de Oct. de 2024
How I can classify hand crafted features with Pretrain CNN?

Respuestas (1)

Jayanti
Jayanti el 24 de Oct. de 2024
Hi Asaf,
As per my understanding, CNN models are better suited for tasks like image classification and segmentation using dataset containing images. However, if you want to apply it to your handcrafted dataset follow the strategies given below:
  1. Determine if the dataset can be transformed into a two-dimensional format, such as a matrix or heatmap, and then apply convolutional layers to it.
  2. Try modifying the pretrained CNN to accept non-image data. CNN models generally expect image data, specifically 2D matrices with three color channels. But since the features are typically 1D vectors, change the first layer of model to accept a 1D vector instead of a 3D image. You might also need to replace some convolutional layers with dense (fully connected) layers that are better suited for 1D data. Then adjust the final layers to output the desired number of classes.
I hope this is beneficial.

Categorías

Más información sobre Deep Learning Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by