brainstorm
brainstorm copied to clipboard
Fast, flexible and fun neural networks.
With a fresh brainstorm installation and nothing in the DB, calling the Report Viewer leads to the following error: *************************************************************************** ** Error: Line 1062: Struct contents reference from a non-struct...
https://github.com/IDSIA/brainstorm/blob/master/docs/installation.rst Says "Instructions coming soon." for OS X. Any idea when "soon" will be? I'd love to play with brainstorm. Thanks, Eric
The attribute call to gpudata is done by pycuda inside the function, no need to do it outside the function. Before this change, using a merge layer with pycuda 2016.1...
Is it possible to do truncated BPTT currently? I have a really long time series: `1411889` samples This overflows when trying to train on any backend.
create_net_from_spec causes a parsing error depending on the presence or absence of whitespace, which is not according to the documentation ("Whitespace is allowed everywhere and will be completely ignored."). Example...
The LSTM backpass with Cuda does not work properly in the (rare, but possible) case that the length of an input sequence is 1. On the CPU, everything works fine....
Bugfix: brainstorm.tools.extract crashed when a mask was provided by the data iterator. I also reimplemented extract_and_save in terms of extract (fixes the very same bug). But this glosses over some...
While training a network with more than 1 training epoch, after the first training epoch completes, the following error occurs (here I was using just 3 epochs): "An error occurred...
The element-wise operations are performed on the last dimension on a given index. It assumes that tensors are stacked row-wise but that their dimension is increased in the next dimension...
Implementation according to "Adam: A Method for Stochastic Optimization". Implementation could possibly still be sped up as suggested in the paper. However, this would make the implementation much less clear...