Removed the signature.
[profiler-torch.git] / README.md
index 0cfc293..38ddaa6 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
 
-#Introduction#
+# Introduction #
 
 This is a simple profiler for torch to estimate processing time per module per function.
 
@@ -9,7 +9,7 @@ It seems to work okay, but there was no heavy testing so far. See test-profiler.
 
 A simple example would be
 
-```lua
+```Lua
 require 'torch'
 require 'nn'
 require 'profiler'
@@ -51,7 +51,7 @@ which prints
     :updateOutput 0.19s [6.34%] (1.9mus/sample)
 ```
 
-##Usage##
+## Usage ##
 
 ### profiler.color ###
 
@@ -70,6 +70,3 @@ It also resets the accumulated timings to zero.
 Prints the measured processing times. If nbSamples is provided, the time per samples will also be printed. If totalTime is not provided, the total at the top is used.
 
 Non-Containers are hilighted with a '*' or in red.
-
--- 
-*Francois Fleuret, Jan 13th, 2017*