ANN when to add new hidden layerAre there cases where it is better to use sigmoid activation over ReLuUsing relu activation function destroys the modelHow to study the effect of each data on a deep neural network model?TensorFlow: Neural Network accuracy always 100% on train and test setsAccuracy of Model not change, remain at zeroUserWarning: Update your `Dense` call to the Keras 2 API:Something fundamentally wrong in this tensorflow model of two layeris normal behaviour in ANNs for the reduction of the loss function to be dependent on the number of neuron in the hidden layer?How to avoid Softmax activation failure when using ReLU in hidden layers?Neural Network predictions too large

How to set Output path correctly for a Single Image render?

Is XSS in canonical link possible?

Is it possible to have a strip of cold climate in the middle of a planet?

Difference between -| and |- in TikZ

How will losing mobility of one hand affect my career as a programmer?

Should I install hardwood flooring or cabinets first?

Have I saved too much for retirement so far?

Proving a function is onto where f(x)=|x|.

Can a significant change in incentives void an employment contract?

Can a Necromancer reuse the corpses left behind from slain undead?

Greco-Roman egalitarianism

A social experiment. What is the worst that can happen?

Filling the middle of a torus in Tikz

Folder comparison

How can "mimic phobia" be cured or prevented?

Are sinusoidal travelling waves also normal modes of vibration?

Why has "pence" been used in this sentence, not "pences"?

Why we can't differentiate a polynomial equation as many times as we wish?

Why don’t women say שלא עשני גויה and שפחה, according to Ashkenazim?

How much character growth crosses the line into breaking the character

Do Legal Documents Require Signing In Standard Pen Colors?

Extending the spectral theorem for bounded self adjoint operators to bounded normal operators

What is the gram­mat­i­cal term for “‑ed” words like these?

What major Native American tribes were around Santa Fe during the late 1850s?



ANN when to add new hidden layer


Are there cases where it is better to use sigmoid activation over ReLuUsing relu activation function destroys the modelHow to study the effect of each data on a deep neural network model?TensorFlow: Neural Network accuracy always 100% on train and test setsAccuracy of Model not change, remain at zeroUserWarning: Update your `Dense` call to the Keras 2 API:Something fundamentally wrong in this tensorflow model of two layeris normal behaviour in ANNs for the reduction of the loss function to be dependent on the number of neuron in the hidden layer?How to avoid Softmax activation failure when using ReLU in hidden layers?Neural Network predictions too large













-1















I have dataset based on some stocks.



I am using ANN to train my data. By default have the input and out put layer as follow:



 my_classifi = Sequential()

my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu', input_dim = 11))

my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu'))

my_classifi.add(Dense(output_dim = 1, init = 'uniform', activation = 'sigmoid'))

my_classifi.compile(optimizer = 'adam', loss = 'binary_crossentropy', metrics = ['accuracy'])

# Fitting the ANN
my_classifi.fit(X_train, y_train, batch_size = 50, nb_epoch = 100)


I get Acc of 0.8368



When I add a new hidden layer:



 my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu', input_dim = 11))

my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu'))
my_classifi.add(Dense(output_dim = 4, init = 'uniform', activation = 'relu'))

my_classifi.add(Dense(output_dim = 1, init = 'uniform', activation = 'sigmoid'))

my_classifi.compile(optimizer = 'adam', loss = 'binary_crossentropy', metrics = ['accuracy'])


I get Acc of 0.8640



My questions are:



1) when I train the model again (with the extra layer), Accuracy falls back to 0.83. Why is so? I thought it should be around 0.86



2) what is the rule of thumb for adding (or not adding a new hidden layer). if so, what should be the output_dim



Thanks










share|improve this question

















  • 1





    Welcome to SO; your question is way too broad, please do take some time to read How to Ask and What topics can I ask about here?.

    – desertnaut
    Mar 21 at 13:52











  • There are no general rules of thumb; similarly for general reasons regarding variations like that in the accuracy (which are arguably not that great) when adding/removing single layers...

    – desertnaut
    Mar 21 at 13:54















-1















I have dataset based on some stocks.



I am using ANN to train my data. By default have the input and out put layer as follow:



 my_classifi = Sequential()

my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu', input_dim = 11))

my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu'))

my_classifi.add(Dense(output_dim = 1, init = 'uniform', activation = 'sigmoid'))

my_classifi.compile(optimizer = 'adam', loss = 'binary_crossentropy', metrics = ['accuracy'])

# Fitting the ANN
my_classifi.fit(X_train, y_train, batch_size = 50, nb_epoch = 100)


I get Acc of 0.8368



When I add a new hidden layer:



 my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu', input_dim = 11))

my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu'))
my_classifi.add(Dense(output_dim = 4, init = 'uniform', activation = 'relu'))

my_classifi.add(Dense(output_dim = 1, init = 'uniform', activation = 'sigmoid'))

my_classifi.compile(optimizer = 'adam', loss = 'binary_crossentropy', metrics = ['accuracy'])


I get Acc of 0.8640



My questions are:



1) when I train the model again (with the extra layer), Accuracy falls back to 0.83. Why is so? I thought it should be around 0.86



2) what is the rule of thumb for adding (or not adding a new hidden layer). if so, what should be the output_dim



Thanks










share|improve this question

















  • 1





    Welcome to SO; your question is way too broad, please do take some time to read How to Ask and What topics can I ask about here?.

    – desertnaut
    Mar 21 at 13:52











  • There are no general rules of thumb; similarly for general reasons regarding variations like that in the accuracy (which are arguably not that great) when adding/removing single layers...

    – desertnaut
    Mar 21 at 13:54













-1












-1








-1








I have dataset based on some stocks.



I am using ANN to train my data. By default have the input and out put layer as follow:



 my_classifi = Sequential()

my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu', input_dim = 11))

my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu'))

my_classifi.add(Dense(output_dim = 1, init = 'uniform', activation = 'sigmoid'))

my_classifi.compile(optimizer = 'adam', loss = 'binary_crossentropy', metrics = ['accuracy'])

# Fitting the ANN
my_classifi.fit(X_train, y_train, batch_size = 50, nb_epoch = 100)


I get Acc of 0.8368



When I add a new hidden layer:



 my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu', input_dim = 11))

my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu'))
my_classifi.add(Dense(output_dim = 4, init = 'uniform', activation = 'relu'))

my_classifi.add(Dense(output_dim = 1, init = 'uniform', activation = 'sigmoid'))

my_classifi.compile(optimizer = 'adam', loss = 'binary_crossentropy', metrics = ['accuracy'])


I get Acc of 0.8640



My questions are:



1) when I train the model again (with the extra layer), Accuracy falls back to 0.83. Why is so? I thought it should be around 0.86



2) what is the rule of thumb for adding (or not adding a new hidden layer). if so, what should be the output_dim



Thanks










share|improve this question














I have dataset based on some stocks.



I am using ANN to train my data. By default have the input and out put layer as follow:



 my_classifi = Sequential()

my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu', input_dim = 11))

my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu'))

my_classifi.add(Dense(output_dim = 1, init = 'uniform', activation = 'sigmoid'))

my_classifi.compile(optimizer = 'adam', loss = 'binary_crossentropy', metrics = ['accuracy'])

# Fitting the ANN
my_classifi.fit(X_train, y_train, batch_size = 50, nb_epoch = 100)


I get Acc of 0.8368



When I add a new hidden layer:



 my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu', input_dim = 11))

my_classifi.add(Dense(output_dim = 6, init = 'uniform', activation = 'relu'))
my_classifi.add(Dense(output_dim = 4, init = 'uniform', activation = 'relu'))

my_classifi.add(Dense(output_dim = 1, init = 'uniform', activation = 'sigmoid'))

my_classifi.compile(optimizer = 'adam', loss = 'binary_crossentropy', metrics = ['accuracy'])


I get Acc of 0.8640



My questions are:



1) when I train the model again (with the extra layer), Accuracy falls back to 0.83. Why is so? I thought it should be around 0.86



2) what is the rule of thumb for adding (or not adding a new hidden layer). if so, what should be the output_dim



Thanks







python-3.x machine-learning neural-network






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 21 at 13:41









Fred DowFred Dow

41




41







  • 1





    Welcome to SO; your question is way too broad, please do take some time to read How to Ask and What topics can I ask about here?.

    – desertnaut
    Mar 21 at 13:52











  • There are no general rules of thumb; similarly for general reasons regarding variations like that in the accuracy (which are arguably not that great) when adding/removing single layers...

    – desertnaut
    Mar 21 at 13:54












  • 1





    Welcome to SO; your question is way too broad, please do take some time to read How to Ask and What topics can I ask about here?.

    – desertnaut
    Mar 21 at 13:52











  • There are no general rules of thumb; similarly for general reasons regarding variations like that in the accuracy (which are arguably not that great) when adding/removing single layers...

    – desertnaut
    Mar 21 at 13:54







1




1





Welcome to SO; your question is way too broad, please do take some time to read How to Ask and What topics can I ask about here?.

– desertnaut
Mar 21 at 13:52





Welcome to SO; your question is way too broad, please do take some time to read How to Ask and What topics can I ask about here?.

– desertnaut
Mar 21 at 13:52













There are no general rules of thumb; similarly for general reasons regarding variations like that in the accuracy (which are arguably not that great) when adding/removing single layers...

– desertnaut
Mar 21 at 13:54





There are no general rules of thumb; similarly for general reasons regarding variations like that in the accuracy (which are arguably not that great) when adding/removing single layers...

– desertnaut
Mar 21 at 13:54












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55281774%2fann-when-to-add-new-hidden-layer%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55281774%2fann-when-to-add-new-hidden-layer%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해