How can I access to loss value in Keras LSTM implementation? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara 2019 Moderator Election Q&A - Questionnaire 2019 Community Moderator Election ResultsKeras categorical_crossentropy loss (and accuracy)Keras custom loss - operation on additional dataKeras LSTM: use weights from Keras model to replicate predictions using numpyKeras custom loss using multiple inputUnderstanding LSTM behaviour: Validation loss smaller than training loss throughout training for regression problemKeras- LSTM answers different sizeKeras LSTM accuracy stuck at 50%Is there any standard or normal range for the amount of LSTM loss function?How to design a many-to-many LSTM?How to balance Keras loss functions of different magnitudes
Retract an already submitted recommendation letter (written for an undergrad student)
"Rubric" as meaning "signature" or "personal mark" -- is this accepted usage?
Is there any pythonic way to find average of specific tuple elements in array?
Will I lose my paid in full property
A strange hotel
Double-nominative constructions and “von”
Why did C use the -> operator instead of reusing the . operator?
Could moose/elk survive in the Amazon forest?
First instead of 1 when referencing
Mistake in years of experience in resume?
Has a Nobel Peace laureate ever been accused of war crimes?
How would this chord from "Rocket Man" be analyzed?
Tikz positioning above circle exact alignment
Multiple fireplaces in an apartment building?
Check if a string is entirely made of the same substring
Air bladders in bat-like skin wings for better lift?
Why does Arg'[1. + I] return -0.5?
What's the difference between using dependency injection with a container and using a service locator?
Map material from china not allowed to leave the country
When do you need buffers/drivers on buses in a microprocessor design?
How does the mezzoloth's teleportation work?
Do I need to protect SFP ports and optics from dust/contaminants? If so, how?
All ASCII characters with a given bit count
A faster way to compute the largest prime factor
How can I access to loss value in Keras LSTM implementation?
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar Manara
2019 Moderator Election Q&A - Questionnaire
2019 Community Moderator Election ResultsKeras categorical_crossentropy loss (and accuracy)Keras custom loss - operation on additional dataKeras LSTM: use weights from Keras model to replicate predictions using numpyKeras custom loss using multiple inputUnderstanding LSTM behaviour: Validation loss smaller than training loss throughout training for regression problemKeras- LSTM answers different sizeKeras LSTM accuracy stuck at 50%Is there any standard or normal range for the amount of LSTM loss function?How to design a many-to-many LSTM?How to balance Keras loss functions of different magnitudes
$begingroup$
I use Keras library and it's LSTM model. When I train my network I can see loss
value in my program execution console. I like to know how can I access to this value in my code?
keras lstm loss-function
$endgroup$
add a comment |
$begingroup$
I use Keras library and it's LSTM model. When I train my network I can see loss
value in my program execution console. I like to know how can I access to this value in my code?
keras lstm loss-function
$endgroup$
add a comment |
$begingroup$
I use Keras library and it's LSTM model. When I train my network I can see loss
value in my program execution console. I like to know how can I access to this value in my code?
keras lstm loss-function
$endgroup$
I use Keras library and it's LSTM model. When I train my network I can see loss
value in my program execution console. I like to know how can I access to this value in my code?
keras lstm loss-function
keras lstm loss-function
asked Apr 5 at 19:17
user145959user145959
1579
1579
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
You can access it by assigning a variable when calling fit
hist = model.fit(X, y)
Where hist is a dictionary containing history of various variables during training. To get your training loss you would do hist['loss']
$endgroup$
$begingroup$
Do you know how can I access to the last loss value? usinghist['loss']
gives me an array with the same length with iteration number.
$endgroup$
– user145959
Apr 5 at 19:54
1
$begingroup$
It is a numpy array, accessing the last index is done by: last_loss = hist['loss'][-1]. -1 stands for the last index in the array, -2 would be the second to last.. and so on.
$endgroup$
– Simon Larsson
Apr 5 at 19:58
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "557"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f48707%2fhow-can-i-access-to-loss-value-in-keras-lstm-implementation%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
You can access it by assigning a variable when calling fit
hist = model.fit(X, y)
Where hist is a dictionary containing history of various variables during training. To get your training loss you would do hist['loss']
$endgroup$
$begingroup$
Do you know how can I access to the last loss value? usinghist['loss']
gives me an array with the same length with iteration number.
$endgroup$
– user145959
Apr 5 at 19:54
1
$begingroup$
It is a numpy array, accessing the last index is done by: last_loss = hist['loss'][-1]. -1 stands for the last index in the array, -2 would be the second to last.. and so on.
$endgroup$
– Simon Larsson
Apr 5 at 19:58
add a comment |
$begingroup$
You can access it by assigning a variable when calling fit
hist = model.fit(X, y)
Where hist is a dictionary containing history of various variables during training. To get your training loss you would do hist['loss']
$endgroup$
$begingroup$
Do you know how can I access to the last loss value? usinghist['loss']
gives me an array with the same length with iteration number.
$endgroup$
– user145959
Apr 5 at 19:54
1
$begingroup$
It is a numpy array, accessing the last index is done by: last_loss = hist['loss'][-1]. -1 stands for the last index in the array, -2 would be the second to last.. and so on.
$endgroup$
– Simon Larsson
Apr 5 at 19:58
add a comment |
$begingroup$
You can access it by assigning a variable when calling fit
hist = model.fit(X, y)
Where hist is a dictionary containing history of various variables during training. To get your training loss you would do hist['loss']
$endgroup$
You can access it by assigning a variable when calling fit
hist = model.fit(X, y)
Where hist is a dictionary containing history of various variables during training. To get your training loss you would do hist['loss']
edited Apr 5 at 19:27
answered Apr 5 at 19:21
Simon LarssonSimon Larsson
1,140216
1,140216
$begingroup$
Do you know how can I access to the last loss value? usinghist['loss']
gives me an array with the same length with iteration number.
$endgroup$
– user145959
Apr 5 at 19:54
1
$begingroup$
It is a numpy array, accessing the last index is done by: last_loss = hist['loss'][-1]. -1 stands for the last index in the array, -2 would be the second to last.. and so on.
$endgroup$
– Simon Larsson
Apr 5 at 19:58
add a comment |
$begingroup$
Do you know how can I access to the last loss value? usinghist['loss']
gives me an array with the same length with iteration number.
$endgroup$
– user145959
Apr 5 at 19:54
1
$begingroup$
It is a numpy array, accessing the last index is done by: last_loss = hist['loss'][-1]. -1 stands for the last index in the array, -2 would be the second to last.. and so on.
$endgroup$
– Simon Larsson
Apr 5 at 19:58
$begingroup$
Do you know how can I access to the last loss value? using
hist['loss']
gives me an array with the same length with iteration number.$endgroup$
– user145959
Apr 5 at 19:54
$begingroup$
Do you know how can I access to the last loss value? using
hist['loss']
gives me an array with the same length with iteration number.$endgroup$
– user145959
Apr 5 at 19:54
1
1
$begingroup$
It is a numpy array, accessing the last index is done by: last_loss = hist['loss'][-1]. -1 stands for the last index in the array, -2 would be the second to last.. and so on.
$endgroup$
– Simon Larsson
Apr 5 at 19:58
$begingroup$
It is a numpy array, accessing the last index is done by: last_loss = hist['loss'][-1]. -1 stands for the last index in the array, -2 would be the second to last.. and so on.
$endgroup$
– Simon Larsson
Apr 5 at 19:58
add a comment |
Thanks for contributing an answer to Data Science Stack Exchange!
- 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.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f48707%2fhow-can-i-access-to-loss-value-in-keras-lstm-implementation%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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