Skip to content

Commit ad0b817

Browse files
committed
Merge branch 'master' into prep_v0.6.3
2 parents 7751368 + 4d446b1 commit ad0b817

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1414
***
1515

1616
## Unreleased
17+
* Nothing yet...
18+
19+
***
20+
21+
## [v0.6.3-alpha] - 2015-10-21 (Delayed for anticipated features)
22+
#### Added
23+
* [[PR #329](https://github.com/numenta/htm.java/pull/329)] - Added low memory implementation of SparseMatrix classes and including tests
1724
* [[Issue #323 PR #324](https://github.com/numenta/htm.java/pull/324)] - Added / Fixed ability to input Coordinate data into the NAPI sensors.
1825
* [Issue #319] - Added feedback for Network thread start detection
1926
* [Issue #319] - (same issue) Added Thread Start detection for computeImmediate() synchronous call failure.
2027
* [Issue #319] - (same issue) Added new tests in NetworkTest.java to ensure above functionality
2128

29+
#### Changed
30+
* [[PR #333](https://github.com/numenta/htm.java/pull/333)] - Corrected the getNeighborsND method to use topology matrix instead of input matrix for dimension calculations
31+
2232
## [v0.6.2-alpha] - 2015-09-15
2333
#### Added
2434
- [[Issue #308](https://github.com/numenta/htm.java/issues/308)] - Added ability to specify "isLearn" programmatically, instead of just through the stream input

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
For HTM.java Demos and Example apps, see the [HTM.java Examples Repository](https://github.com/numenta/htm.java-examples)
1212

1313
**NOTE: Minimum JavaSE version is 1.8**
14-
<!--
14+
1515
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.numenta/htm.java/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.numenta/htm.java)
16-
-->
16+
1717

1818
***
1919

src/main/java/org/numenta/nupic/algorithms/SpatialPooler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ public TIntArrayList getNeighborsND(Connections c, int columnIndex, SparseMatrix
784784
TIntArrayList neighbors = new TIntArrayList(neighborList.size());
785785
int size = neighborList.size();
786786
for(int i = 0;i < size;i++) {
787-
int flatIndex = c.getInputMatrix().computeIndex(neighborList.get(i), false);
787+
int flatIndex = topology.computeIndex(neighborList.get(i), false);
788788
if(flatIndex == columnIndex) continue;
789789
neighbors.add(flatIndex);
790790
}

0 commit comments

Comments
 (0)