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

Commit

Permalink
Removed references to obsolete tm_py_fast shim (#3639)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhyolight authored May 23, 2017
1 parent 32ea596 commit b372a3c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/nupic/regions/TMRegion.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ def _getTPClass(temporalImp):
return backtracking_tm_shim.TMShim
elif temporalImp == 'tm_cpp':
return backtracking_tm_shim.TMCPPShim
elif temporalImp == 'tm_py_fast':
return backtracking_tm_shim.FastTMShim
elif temporalImp == 'monitored_tm_py':
return backtracking_tm_shim.MonitoredTMShim
else:
Expand Down Expand Up @@ -422,8 +420,8 @@ def initialize(self):
tpClass = _getTPClass(self.temporalImp)

if self.temporalImp in ['py', 'cpp', 'r',
'tm_py', 'tm_cpp', 'tm_py_fast',
'monitored_tm_py', 'monitored_tm_py_fast']:
'tm_py', 'tm_cpp',
'monitored_tm_py',]:
self._tfdr = tpClass(
numberOfCols=self.columnCount,
cellsPerColumn=self.cellsPerColumn,
Expand Down

0 comments on commit b372a3c

Please sign in to comment.