Skip to content

Commit

Permalink
Update StarDist_2D_ZeroCostDL4Mic.ipynb
Browse files Browse the repository at this point in the history
Fixing the learning_rate recording error
  • Loading branch information
guijacquemet authored Aug 2, 2024
1 parent 22236ff commit 4827d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Colab_notebooks/StarDist_2D_ZeroCostDL4Mic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1552,7 +1552,7 @@
" writer = csv.writer(f)\n",
" writer.writerow(['loss','val_loss', 'learning rate'])\n",
" for i in range(len(history.history['loss'])):\n",
" writer.writerow([history.history['loss'][i], history.history['val_loss'][i], history.history['lr'][i]])\n",
" writer.writerow([history.history['loss'][i], history.history['val_loss'][i], history.history['learning_rate'][i]])\n",
"\n",
"\n",
"\n",
Expand Down

0 comments on commit 4827d1d

Please sign in to comment.