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










0












$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?










share|improve this question









$endgroup$
















    0












    $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?










    share|improve this question









    $endgroup$














      0












      0








      0





      $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?










      share|improve this question









      $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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Apr 5 at 19:17









      user145959user145959

      1579




      1579




















          1 Answer
          1






          active

          oldest

          votes


















          2












          $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']






          share|improve this answer











          $endgroup$












          • $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




            $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












          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
          );



          );













          draft saved

          draft discarded


















          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









          2












          $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']






          share|improve this answer











          $endgroup$












          • $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




            $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
















          2












          $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']






          share|improve this answer











          $endgroup$












          • $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




            $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














          2












          2








          2





          $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']






          share|improve this answer











          $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']







          share|improve this answer














          share|improve this answer



          share|improve this answer








          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? using hist['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






          • 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


















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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

          Adding axes to figuresAdding axes labels to LaTeX figuresLaTeX equivalent of ConTeXt buffersRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizeNumerical conditional within tikz keys?adding axes to shapesAlign axes across subfiguresAdding figures with a certain orderLine up nested tikz enviroments or how to get rid of themAdding axes labels to LaTeX figures

          Luettelo Yhdysvaltain laivaston lentotukialuksista Lähteet | Navigointivalikko

          Gary (muusikko) Sisällysluettelo Historia | Rockin' High | Lähteet | Aiheesta muualla | NavigointivalikkoInfobox OKTuomas "Gary" Keskinen Ancaran kitaristiksiProjekti Rockin' High