Chiyuan Zhang
Chiyuan Zhang
hmm, it seems it is not reaching the expected performance under windows? First thing might be do some regression test on some older version. Maybe easier if we have local...
Did you install the pre-built libmxnet somewhere? It seems the package cannot find the backend.
The need to support automatic data parallelism seem to be the source that makes a lot of things very complicated (e.g. the existence of an executor manager). I'm wondering maybe...
Are you proposing a ctrl-c and jumping into a Julia REPL with all the environment setup remaining in the memory like in a debugger? I agree that this would be...
IIRC the `separate` function must come from the Images.jl package. Wonder if they have removed that function or changed to something else... ...
I believe what it does it to separate array of RGB atoms into 3 dimensional real or integer values.
@tbreloff Yes that would be great! I somehow get swamped in something else and was not able to add those shortly. But you are very welcome to contribute AdaMax (or...
Could you try to change in `lstm.jl` all the code like `mx.FullyConnected(data, ...` to `mx.FullyConnected(data=data, ...` and see if it works?
@Arkoniak The ambiguity comes from the fact when every arguments are passed via keyword argument, then the function signature is empty, and the method dispatcher does not know which one...
@Arkoniak Yes, I agree this could be an option. We will need to define such wrapper for all the operators.