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

          Marja Vauras Lähteet | Aiheesta muualla | NavigointivalikkoMarja Vauras Turun yliopiston tutkimusportaalissaInfobox OKSuomalaisen Tiedeakatemian varsinaiset jäsenetKasvatustieteiden tiedekunnan dekaanit ja muu johtoMarja VaurasKoulutusvienti on kestävyys- ja ketteryyslaji (2.5.2017)laajentamallaWorldCat Identities0000 0001 0855 9405n86069603utb201588738523620927

          Which is better: GPT or RelGAN for text generation?2019 Community Moderator ElectionWhat is the difference between TextGAN and LM for text generation?GANs (generative adversarial networks) possible for text as well?Generator loss not decreasing- text to image synthesisChoosing a right algorithm for template-based text generationHow should I format input and output for text generation with LSTMsGumbel Softmax vs Vanilla Softmax for GAN trainingWhich neural network to choose for classification from text/speech?NLP text autoencoder that generates text in poetic meterWhat is the interpretation of the expectation notation in the GAN formulation?What is the difference between TextGAN and LM for text generation?How to prepare the data for text generation task

          Is this part of the description of the Archfey warlock's Misty Escape feature redundant?When is entropic ward considered “used”?How does the reaction timing work for Wrath of the Storm? Can it potentially prevent the damage from the triggering attack?Does the Dark Arts Archlich warlock patrons's Arcane Invisibility activate every time you cast a level 1+ spell?When attacking while invisible, when exactly does invisibility break?Can I cast Hellish Rebuke on my turn?Do I have to “pre-cast” a reaction spell in order for it to be triggered?What happens if a Player Misty Escapes into an Invisible CreatureCan a reaction interrupt multiattack?Does the Fiend-patron warlock's Hurl Through Hell feature dispel effects that require the target to be on the same plane as the caster?What are you allowed to do while using the Warlock's Eldritch Master feature?