htm.java
htm.java copied to clipboard
Hierarchical Temporal Memory implementation in Java - an official Community-Driven Java port of the Numenta Platform for Intelligent Computing (NuPIC).
org.numenta.nupic.encoders.DeltaEncoder.java line 113: > super.encodeIntoArray(input, output); should be: > super.encodeIntoArray(delta, output); see python version: nupic/encoders/delta.py line 79: > self._adaptiveScalarEnc.encodeIntoArray(delta, output, learn)
I'm experimenting with GeospatialCoordinateEncoder, CoordinateEncoder and FileSensor Everything works fine with GeospatialCoordinateEncoder but CoordinateEncoder throws the mentioned exception: java.lang.IllegalStateException: java.lang.ClassCastException: java.lang.Double cannot be cast to [I I found that exception...
Can't find a way to make multi step predctions on HTM.Java. Found this post https://discourse.numenta.org/t/multi-step-predictions-in-java/2484 where one get to know that it's not a feature of HTM.Java. I would like...
We are in the process of evaluating a research project associated with an automated refactoring tool that attempts to optimize Java 8 streams for maximum performance. In the case of...
Hi, there are multiple versions of **com.fasterxml.jackson.core:jackson-core:jar** in **org.numenta:htm.java:jar:0.6.13**. As shown in the following dependency tree, based on "Maven's nearest wins strategy", only com.fasterxml.jackson.core:jackson-core:jar:2.4.4 will be loaded and the other...
https://github.com/numenta/htm.java/issues/540
I fix some junit tests because they fall on systems with different locale (with different Decimal Separator). Another option would be change mmPrettyPrintConnections output to always contains dots between decimals...
I am seeing this failure when running the JHM tests. No results are produced from this test due to the failure: ``` # Run progress: 6.67% complete, ETA 00:00:43 #...
`gradle test` now runs all tests except those tagged with `Category(IntegrationTest.class)` `gradle check` runs all tests as before `mvn test` now runs all tests except those tagged with `Category(IntegrationTest.class)` `mvn...
We use the HTM to detect anomalies in our Spark Streaming process. After running our project the following exception arises during the deserialization: java.io.InvalidClassException: no.uib.cipr.matrix.sparse.FlexCompRowMatrix; no valid constructor It seems...