minerva
minerva copied to clipboard
Minerva: a fast and flexible tool for deep learning on multi-GPU. It provides ndarray programming interface, just like Numpy. Python bindings and C++ bindings are both available. The resulting code ca...
Hi, Fantastic Library! I was just wondering, i am trying to use the library for a binary classifier experiment using the log loss function to train the model. This is...
Here is my python codes: import owl, numpy a = numpy.zeros((300,400)) b = owl.from_numpy(a) And it just gave me such an error: terminate called after throwing an instance of 'std::out_of_range'...
File /home/ubgpu/github/DMLC/minerva/release/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /\* */ # include int main(int argc, char*\* argv) { (void)argv; # ifndef pthread_create return ((int*)(&pthread_create))[argc]; # else (void)argc; return 0; # endif } Determining if the function...
Ran into a number of odd errors when accidentally passing None into owl functions. Turns out cython just tries to accept them and they turn into invalid memory causing segfaults....
Hello again, I think I found a race condition in importing of owl. I have a fairly simple test program that crashes maybe 1 in 3 times. ``` import owl...
Currently we set -arch sm_35, which leads to "invalid device function" in older GPUs. There seems to be some effort in automatically detecting GPU compute capability and set it correctly:...
Hi guys, Is that possible for you to provide a element-wise power/sqrt function for the python interface? I'd like to adjust the weight use Adagrad or RMSprop, which requires a...
What I really wanna do is parameters update for LSTM. I've realized that my vocabulary is relatively large (about 500K) and having a vector of NArray is very inefficient (of...
- `elewise.mult` is missing. - Add mapping of their corresponding C++ interface