Why doesn't the learning rate (LR) go below 1e-08 in pytorch?2019 Community Moderator ElectionWhy is it faster to process a sorted array than an unsorted array?Keras MNIST Gradient Descent Stuck / Learning Very SlowlyHow to Train on a small dataset (Fine tunning vgg16 VS small model)How training rate changes between epochs in Keras/TensorflowCNN TensorFlow/Keras validation loss/acc staying constantImplement variable learning rate TensorflowNet does not change weights during training, pytorchLoss not changing no matter the learning ratekeras: how to use learning rate decay with model.train_on_batch()Pytorch Adam optimizer's awkward behavior? better with restart?

Was Luke Skywalker the leader of the Rebel forces on Hoth?

What Happens when Passenger Refuses to Fly Boeing 737 Max?

What are some noteworthy "mic-drop" moments in math?

cat shows nothing

Is "history" a male-biased word ("his+story")?

Can you reject a postdoc offer after the PI has paid a large sum for flights/accommodation for your visit?

Should I tell my boss the work he did was worthless

Getting bad quality map when exporting as PDF?

What would be the most expensive material to an intergalactic society?

Single word request: Harming the benefactor

Reversed Sudoku

What official source details what an Empire citizen knows of WFRP's monsters?

Professor expects me to attend a conference, I can't afford even with 50% funding

Could you please stop shuffling the deck and play already?

Conservation of Mass and Energy

What was the Kree's motivation in Captain Marvel?

Having the player face themselves after the mid-game

In the quantum hamiltonian, why does kinetic energy turn into an operator while potential doesn't?

How strictly should I take "Candidates must be local"?

Do I really need to have a scientific explanation for my premise?

Do f-stop and exposure time perfectly cancel?

IBM PAT Number Sequence

Intuition behind counterexample of Euler's sum of powers conjecture

What problems would a superhuman have whose skin is constantly hot?



Why doesn't the learning rate (LR) go below 1e-08 in pytorch?



2019 Community Moderator ElectionWhy is it faster to process a sorted array than an unsorted array?Keras MNIST Gradient Descent Stuck / Learning Very SlowlyHow to Train on a small dataset (Fine tunning vgg16 VS small model)How training rate changes between epochs in Keras/TensorflowCNN TensorFlow/Keras validation loss/acc staying constantImplement variable learning rate TensorflowNet does not change weights during training, pytorchLoss not changing no matter the learning ratekeras: how to use learning rate decay with model.train_on_batch()Pytorch Adam optimizer's awkward behavior? better with restart?










0















I am training a model. To overcome overfitting I have done optimization, data augmentation etc etc. I have an updated LR (I tried for both SGD and Adam), and when there is a plateu (also tried step), the learning rate is decreased by a factor until it reaches LR 1e-08 but won't go below than that and my model's validation gets stuck after this point. I tried passing the epsilon parameter to Adam to suggest a smaller value, but it still got stuck at LR 1e-08. I also pass a weight decay, but it doesn't change the situation. Neither did setting the amsgrad to true.



I did some research and people suggest that Adam optimizer has inherent problems but nothing is mentioned about the learning rate - and every discussion added that with SGD, there is no problem.



Why is this? Is it a bug or is it designed so because authors think it is meaninglessly a small value after that? It seems like it would really help to have a smaller learning rate for my dataset because all seems well up until learning rate is down to LR 1e-08.










share|improve this question




























    0















    I am training a model. To overcome overfitting I have done optimization, data augmentation etc etc. I have an updated LR (I tried for both SGD and Adam), and when there is a plateu (also tried step), the learning rate is decreased by a factor until it reaches LR 1e-08 but won't go below than that and my model's validation gets stuck after this point. I tried passing the epsilon parameter to Adam to suggest a smaller value, but it still got stuck at LR 1e-08. I also pass a weight decay, but it doesn't change the situation. Neither did setting the amsgrad to true.



    I did some research and people suggest that Adam optimizer has inherent problems but nothing is mentioned about the learning rate - and every discussion added that with SGD, there is no problem.



    Why is this? Is it a bug or is it designed so because authors think it is meaninglessly a small value after that? It seems like it would really help to have a smaller learning rate for my dataset because all seems well up until learning rate is down to LR 1e-08.










    share|improve this question


























      0












      0








      0








      I am training a model. To overcome overfitting I have done optimization, data augmentation etc etc. I have an updated LR (I tried for both SGD and Adam), and when there is a plateu (also tried step), the learning rate is decreased by a factor until it reaches LR 1e-08 but won't go below than that and my model's validation gets stuck after this point. I tried passing the epsilon parameter to Adam to suggest a smaller value, but it still got stuck at LR 1e-08. I also pass a weight decay, but it doesn't change the situation. Neither did setting the amsgrad to true.



      I did some research and people suggest that Adam optimizer has inherent problems but nothing is mentioned about the learning rate - and every discussion added that with SGD, there is no problem.



      Why is this? Is it a bug or is it designed so because authors think it is meaninglessly a small value after that? It seems like it would really help to have a smaller learning rate for my dataset because all seems well up until learning rate is down to LR 1e-08.










      share|improve this question
















      I am training a model. To overcome overfitting I have done optimization, data augmentation etc etc. I have an updated LR (I tried for both SGD and Adam), and when there is a plateu (also tried step), the learning rate is decreased by a factor until it reaches LR 1e-08 but won't go below than that and my model's validation gets stuck after this point. I tried passing the epsilon parameter to Adam to suggest a smaller value, but it still got stuck at LR 1e-08. I also pass a weight decay, but it doesn't change the situation. Neither did setting the amsgrad to true.



      I did some research and people suggest that Adam optimizer has inherent problems but nothing is mentioned about the learning rate - and every discussion added that with SGD, there is no problem.



      Why is this? Is it a bug or is it designed so because authors think it is meaninglessly a small value after that? It seems like it would really help to have a smaller learning rate for my dataset because all seems well up until learning rate is down to LR 1e-08.







      optimization deep-learning pytorch gradient-descent






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 6 at 15:28







      dusa

















      asked Mar 6 at 15:23









      dusadusa

      302213




      302213






















          2 Answers
          2






          active

          oldest

          votes


















          2














          Personally I'm not aware of a lower limit on the learning rate (other than 0.0). But you can achieve the effect of a lower learning rate by reducing the loss before computing the backwards pass:



          outputs = model(batch)
          loss = criterion(outputs, targets)

          # Equivalent to lowering the learning rate by a factor of 100
          loss = loss / 100

          self.optimizer.zero_grad()
          loss.backward()
          self.optimizer.step()





          share|improve this answer























          • Indeed a nice trick :)

            – mr_mo
            Mar 6 at 19:24











          • Hey thanks, it is a nice trick!

            – dusa
            Mar 7 at 0:16


















          0














          Richard's work around should work pretty well, but I have also gotten an official answer if anyone would care to know.



          Setting a smaller value to ReduceLROnPlateau scheduler's (and not Adam's) eps parameter has worked.



          eps ( float ) – Minimal decay applied to lr. If the difference between new and old lr is smaller than eps, the update is ignored. Default: 1e-8.






          share|improve this answer























          • That's good to know, thanks for the update.

            – Richard
            2 hours ago










          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%2f55026544%2fwhy-doesnt-the-learning-rate-lr-go-below-1e-08-in-pytorch%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2














          Personally I'm not aware of a lower limit on the learning rate (other than 0.0). But you can achieve the effect of a lower learning rate by reducing the loss before computing the backwards pass:



          outputs = model(batch)
          loss = criterion(outputs, targets)

          # Equivalent to lowering the learning rate by a factor of 100
          loss = loss / 100

          self.optimizer.zero_grad()
          loss.backward()
          self.optimizer.step()





          share|improve this answer























          • Indeed a nice trick :)

            – mr_mo
            Mar 6 at 19:24











          • Hey thanks, it is a nice trick!

            – dusa
            Mar 7 at 0:16















          2














          Personally I'm not aware of a lower limit on the learning rate (other than 0.0). But you can achieve the effect of a lower learning rate by reducing the loss before computing the backwards pass:



          outputs = model(batch)
          loss = criterion(outputs, targets)

          # Equivalent to lowering the learning rate by a factor of 100
          loss = loss / 100

          self.optimizer.zero_grad()
          loss.backward()
          self.optimizer.step()





          share|improve this answer























          • Indeed a nice trick :)

            – mr_mo
            Mar 6 at 19:24











          • Hey thanks, it is a nice trick!

            – dusa
            Mar 7 at 0:16













          2












          2








          2







          Personally I'm not aware of a lower limit on the learning rate (other than 0.0). But you can achieve the effect of a lower learning rate by reducing the loss before computing the backwards pass:



          outputs = model(batch)
          loss = criterion(outputs, targets)

          # Equivalent to lowering the learning rate by a factor of 100
          loss = loss / 100

          self.optimizer.zero_grad()
          loss.backward()
          self.optimizer.step()





          share|improve this answer













          Personally I'm not aware of a lower limit on the learning rate (other than 0.0). But you can achieve the effect of a lower learning rate by reducing the loss before computing the backwards pass:



          outputs = model(batch)
          loss = criterion(outputs, targets)

          # Equivalent to lowering the learning rate by a factor of 100
          loss = loss / 100

          self.optimizer.zero_grad()
          loss.backward()
          self.optimizer.step()






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 6 at 16:13









          RichardRichard

          870414




          870414












          • Indeed a nice trick :)

            – mr_mo
            Mar 6 at 19:24











          • Hey thanks, it is a nice trick!

            – dusa
            Mar 7 at 0:16

















          • Indeed a nice trick :)

            – mr_mo
            Mar 6 at 19:24











          • Hey thanks, it is a nice trick!

            – dusa
            Mar 7 at 0:16
















          Indeed a nice trick :)

          – mr_mo
          Mar 6 at 19:24





          Indeed a nice trick :)

          – mr_mo
          Mar 6 at 19:24













          Hey thanks, it is a nice trick!

          – dusa
          Mar 7 at 0:16





          Hey thanks, it is a nice trick!

          – dusa
          Mar 7 at 0:16













          0














          Richard's work around should work pretty well, but I have also gotten an official answer if anyone would care to know.



          Setting a smaller value to ReduceLROnPlateau scheduler's (and not Adam's) eps parameter has worked.



          eps ( float ) – Minimal decay applied to lr. If the difference between new and old lr is smaller than eps, the update is ignored. Default: 1e-8.






          share|improve this answer























          • That's good to know, thanks for the update.

            – Richard
            2 hours ago















          0














          Richard's work around should work pretty well, but I have also gotten an official answer if anyone would care to know.



          Setting a smaller value to ReduceLROnPlateau scheduler's (and not Adam's) eps parameter has worked.



          eps ( float ) – Minimal decay applied to lr. If the difference between new and old lr is smaller than eps, the update is ignored. Default: 1e-8.






          share|improve this answer























          • That's good to know, thanks for the update.

            – Richard
            2 hours ago













          0












          0








          0







          Richard's work around should work pretty well, but I have also gotten an official answer if anyone would care to know.



          Setting a smaller value to ReduceLROnPlateau scheduler's (and not Adam's) eps parameter has worked.



          eps ( float ) – Minimal decay applied to lr. If the difference between new and old lr is smaller than eps, the update is ignored. Default: 1e-8.






          share|improve this answer













          Richard's work around should work pretty well, but I have also gotten an official answer if anyone would care to know.



          Setting a smaller value to ReduceLROnPlateau scheduler's (and not Adam's) eps parameter has worked.



          eps ( float ) – Minimal decay applied to lr. If the difference between new and old lr is smaller than eps, the update is ignored. Default: 1e-8.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 7 at 0:19









          dusadusa

          302213




          302213












          • That's good to know, thanks for the update.

            – Richard
            2 hours ago

















          • That's good to know, thanks for the update.

            – Richard
            2 hours ago
















          That's good to know, thanks for the update.

          – Richard
          2 hours ago





          That's good to know, thanks for the update.

          – Richard
          2 hours ago

















          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%2f55026544%2fwhy-doesnt-the-learning-rate-lr-go-below-1e-08-in-pytorch%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

          Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

          Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

          Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved