neural-redis
neural-redis copied to clipboard
Neural networks module for Redis
This is my latest refactoring of neural-redis, I did it to learn/understand it and to use with https://github.com/mingodad/squilu The code for AVX and AVX512 still use unaligned memory because on...
Hello ! I'm refactoring a bit nn.c/h and I think I found a mistake in the calculation of the matrix index for weight, gradient, sgradient, pgradient and delta: ``` #define...
It seems that gcc can't optimise this so using simd here give us a good performance gain.
My workstation is running El Capitain Mac OS 10.11.6. I have removed xcode and reinstalled from the App Store. Still I get this error when trying to build. What can...
Hi, I have set up a R client for Redis using **rredis package** and I am trying to create a model on the examples given in the documentation. But when...
Dear antirez: Thank you very much for sharing this amazing code. And I have a problem to figure out or I can not sleep. In function float AnnGlobalError(struct Ann *net,...
Fixed a small typo.
`NR.OBSERVE` doesn't reject the wrong number of arguments when in a `MULTI`. Here I'm running `NR.OBSERVE` with no arguments. ``` > MULTI OK > NR.OBSERVE QUEUED > NR.OBSERVE QUEUED >...
I created a docker with the redis unstable branch and neural redis installed in it. I ran it on an AWS t2.micro instance, and tried to create a neural network...