Skip to content

Commit

Permalink
update model settings,
Browse files Browse the repository at this point in the history
esp 'cpp' for speed
  • Loading branch information
breznak committed Nov 16, 2013
1 parent 99d07e0 commit bef1c2d
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions client/model_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,14 @@
# threshold set below this default value.
# (This concept applies to both SP and TP and so 'cells'
# is correct here as opposed to 'columns')
'synPermConnected': 0.1,
'synPermConnected': 0.2,

'synPermActiveInc': 0.1,

'synPermInactiveDec': 0.025910586208889513,
'synPermInactiveDec': 0.1,

'randomSP': 0,
'spatialImp': 'cpp',
},

# Controls whether TP is enabled or disabled;
Expand All @@ -158,7 +159,7 @@
'columnCount': 2048,

# The number of cells (i.e., states), allocated per column.
'cellsPerColumn': 32,
'cellsPerColumn': 8,

'inputWidth': 2048,

Expand Down Expand Up @@ -227,7 +228,7 @@
# elements to append to the end of a learned sequence at a time.
# Smaller values are better for datasets with short sequences,
# higher values are better for datasets with long sequences.
'pamLength': 2,
'pamLength': 12,
},

'clParams': {
Expand All @@ -239,13 +240,13 @@

# This controls how fast the classifier learns/forgets. Higher values
# make it adapt faster and forget older patterns faster.
'alpha': 0.00080959960713530062,
'alpha': 0.01080959960713530062,

# This is set after the call to updateConfigFromSubConfig and is
# computed from the aggregationInfo and predictAheadTime.
'steps': '1,2,3,4,5,6,7,8,9,10',
'steps': '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16',
},

'trainSPNetOnlyIfRequested': False,
'trainSPNetOnlyIfRequested': True,
},
}

0 comments on commit bef1c2d

Please sign in to comment.