Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
Replace dump() with define __str__ in Encoders. Issue #1518
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavrai44 committed Apr 23, 2017
1 parent ae3e1e3 commit b6240b4
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 53 deletions.
19 changes: 3 additions & 16 deletions src/nupic/encoders/adaptivescalar.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,22 +195,9 @@ def topDownCompute(self, encoded):
return super(AdaptiveScalarEncoder, self).topDownCompute(encoded)


def dump(self):
"""
Prints details about current state to stdout.
"""
print "AdaptiveScalarEncoder:"
print " min: %f" % self.minval
print " max: %f" % self.maxval
print " w: %d" % self.w
print " n: %d" % self.n
print " resolution: %f" % self.resolution
print " radius: %f" % self.radius
print " periodic: %s" % self.periodic
print " nInternal: %d" % self.nInternal
print " rangeInternal: %f" % self.rangeInternal
print " padding: %d" % self.padding

def __str__(self):
return "AdaptiveScalarEncoder\n min: %f\n max: %f\n w: %d\n n: %d\n resolution: %f\n radius: %f\n periodic: %f\n nInternal: %f\n rangeInternal: %f\n padding: %d" \
% (self.minval, self.maxval, self.w, self.n, self.resolution, self.radius, self.periodic, self.nInternal, self.rangeInternal, self.padding)

@classmethod
def read(cls, proto):
Expand Down
6 changes: 2 additions & 4 deletions src/nupic/encoders/coordinate.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,8 @@ def _bitForCoordinate(cls, coordinate, n):
return rng.getUInt32(n)


def dump(self):
print "CoordinateEncoder:"
print " w: %d" % self.w
print " n: %d" % self.n
def __str__(self):
return "CoordinateEncoder:\n w: %d\n n: %d" %(self.w, self.n)


@classmethod
Expand Down
6 changes: 2 additions & 4 deletions src/nupic/encoders/geospatial_coordinate.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,8 @@ def radiusForSpeed(self, speed):
return max(radius, minRadius)


def dump(self):
print "GeospatialCoordinateEncoder:"
print " w: %d" % self.w
print " n: %d" % self.n
def __str__(self):
return "GeospatialCoordinateEncoder:\n w: %d\n n: %d" %(self.w, self.n)


@classmethod
Expand Down
24 changes: 8 additions & 16 deletions src/nupic/encoders/random_distributed_scalar.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

# ----------------------------------------------------------------------
# Numenta Platform for Intelligent Computing (NuPIC)
# Copyright (C) 2013-2015, Numenta, Inc. Unless you have an agreement
Expand All @@ -23,6 +24,7 @@
import numbers
import pprint
import sys
import json

import numpy

Expand Down Expand Up @@ -152,9 +154,6 @@ def __init__(self, resolution, w=21, n=400, name=None, offset=None,
else:
self.name = "[%s]" % (self.resolution)

if self.verbosity > 0:
self.dump()


def __setstate__(self, state):
self.__dict__.update(state)
Expand Down Expand Up @@ -440,20 +439,13 @@ def _permutation(n):
self.numTries = 0


def dump(self):
print "RandomDistributedScalarEncoder:"
print " minIndex: %d" % self.minIndex
print " maxIndex: %d" % self.maxIndex
print " w: %d" % self.w
print " n: %d" % self.getWidth()
print " resolution: %g" % self.resolution
print " offset: %s" % str(self._offset)
print " numTries: %d" % self.numTries
print " name: %s" % self.name
def __str__(self):
if self.verbosity > 2:
print " All buckets: "
pprint.pprint(self.bucketMap)

return "RandomDistributedScalarEncoder\n minIndex: %d\n maxIndex: %d\n w: %d\n n: %d\n resolution: %g\n offset: %s\n numTries: %d\n name: %s\n All buckets: %s" \
% (self.minIndex, self.maxIndex, self.w, self.getWidth(), self.resolution, str(self._offset), self.numTries, self.name, json.dumps(self.bucketMap))
else:
return "RandomDistributedScalarEncoder\n minIndex: %d\n maxIndex: %d\n w: %d\n n: %d\n resolution: %g\n offset: %s\n numTries: %d\n name: %s" \
% (self.minIndex, self.maxIndex, self.w, self.getWidth(), self.resolution, str(self._offset), self.numTries, self.name)

@classmethod
def read(cls, proto):
Expand Down
16 changes: 3 additions & 13 deletions src/nupic/encoders/scalar.py
Original file line number Diff line number Diff line change
Expand Up @@ -699,19 +699,9 @@ def closenessScores(self, expValues, actValues, fractional=True):
return numpy.array([closeness])


def dump(self):
print "ScalarEncoder:"
print " min: %f" % self.minval
print " max: %f" % self.maxval
print " w: %d" % self.w
print " n: %d" % self.n
print " resolution: %f" % self.resolution
print " radius: %f" % self.radius
print " periodic: %s" % self.periodic
print " nInternal: %d" % self.nInternal
print " rangeInternal: %f" % self.rangeInternal
print " padding: %d" % self.padding

def __str__(self):
return "ScalarEncoder:\n min: %f\n max: %f\n w: %d\n n: %d\n resolution: %f\n radius: %f\n periodic: %s\n nInternal: %d\n rangeInternal: %f\n padding: %d" \
% (self.minval, self.maxval, self.w, self.n, self.resolution, self.radius, self.periodic, self.nInternal, self.rangeInternal, self.padding)

@classmethod
def read(cls, proto):
Expand Down

0 comments on commit b6240b4

Please sign in to comment.