Training a Neural Network

조회 수: 5 (최근 30일)
Benjamin Currie
Benjamin Currie 2021년 3월 18일
답변: Seth Furman 2021년 3월 18일
Is it possible to use string data to train a NN? I am trying to use 'labels' obtained from a previous network that labels an image. I want to use this data to predict the image. When I am using th is data it is stating it has to be a numerical/logical value.
  댓글 수: 1
Olof Engström
Olof Engström 2021년 3월 18일
Neural networks can only take numbers as input, so you have to convert your text features to numerical features. If the 'labels' are categorical you could for example use one-hot encoding. There are also more advanced text embeddings where semantically similar texts are encoded into similar (numerical) vector representations (for example word2vec).

댓글을 달려면 로그인하십시오.

답변 (1개)

Seth Furman
Seth Furman 2021년 3월 18일
To add to Olof's answer, the categorical type allows you to efficiently represent a finite set of discrete categories that you might otherwise represent with strings.
Take a look at the following example from the documentation demonstrating how to make predictions using categorical features.

카테고리

Help CenterFile Exchange에서 Agriculture에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by