Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/optim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbhishek Chaurasia <abhishek.chaurasia29@hotmail.com>2016-09-15 23:12:23 +0300
committerAbhishek Chaurasia <abhishek.chaurasia29@hotmail.com>2016-09-15 23:12:23 +0300
commitc208ae8f70e13b2b70fc1f037a79b92e5979a352 (patch)
treeaa38e3589b7789b55948bcd462d4ad26869c8fd2
parent8cd8f2ec62cab763c430416aa3e9364ce72f5145 (diff)
Added documentation for display and logscale
-rw-r--r--doc/logger.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/logger.md b/doc/logger.md
index b7797d2..bef8ba3 100644
--- a/doc/logger.md
+++ b/doc/logger.md
@@ -71,3 +71,9 @@ logger:plot()
![Logging plot](logger_plot.png)
If we'd like an interactive visualisation, we can put the `logger:plot()` instruction within the `for` loop, and the chart will be updated at every iteration.
+
+In case we'd like to prevent `gnuplot` to display the plots, we can set the option `logger:display(false)`.
+In this way, plots will be saved but not displayed.
+To restore the normal behaviour, use `logger:display(true)`.
+
+We can set a logarithmic *y* axis with `logger:setlogscale(true)` and reset it with `logger:setlogscale(false)`.