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

github.com/clementfarabet/lua---nnx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Farabet <clement.farabet@gmail.com>2011-07-27 06:25:37 +0400
committerClement Farabet <clement.farabet@gmail.com>2011-07-27 06:25:37 +0400
commit3cb787232e9a1489f31d0d32fc821d0803221651 (patch)
treea16c5a91607fd95160557bd38557aea62b83e9c6
parentba28f487cfa6223ca0a19b668edb9bac23ccee75 (diff)
Removed prints
-rw-r--r--SpatialFovea.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/SpatialFovea.lua b/SpatialFovea.lua
index 7479ae9..26dbf55 100644
--- a/SpatialFovea.lua
+++ b/SpatialFovea.lua
@@ -142,7 +142,6 @@ function SpatialFovea:forward(input)
-- check if input was seend before
if self.cachedPreProcessed[hash] then
- print('retrieving', hash)
for idx = 1,nscales do
self.padded[idx] = self.cachedPreProcessed[hash][idx]
end
@@ -173,7 +172,6 @@ function SpatialFovea:forward(input)
-- store preprocessed input for future use
if self.cachePrePreproc then
- print('storing new hash', hash)
self.cachedPreProcessed[hash] = {}
for idx = 1,nscales do
self.cachedPreProcessed[hash][idx] = self.padded[idx]:clone()