The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Neural Net output layer coding
Hi,
Is it possible to change output layer coding in Neural Net model? Currently coding is one neuron is one class. Is it possible to change it somehow to binary coding? If yes how can i do that?
Is it possible to change output layer coding in Neural Net model? Currently coding is one neuron is one class. Is it possible to change it somehow to binary coding? If yes how can i do that?
Tagged:
0
Answers
if your training data contains a binary label then the output of the Neural Net will be a binominal attribute. The underlying net cannot be changed, but why do you want to do it?
Best regards,
Marius
I have three classes in my data and as far as i know it can be correctly calculated with only two neurons (binary):
Class 1
N1: 1
N2: 0
Class 2:
N1: 0
N2: 1
Class 3:
N1: 1
N2: 1
Is there any way i can manage to do that?