Results 7 comments of Jonathan Ho

@joschu What do you think about cross-language execution graph serialization, with JSON or protobuf? Right now execution graphs are given to the C++ interpreter via Cython reading Python objects, but...

I was just referring to serialization of instructions/execution graph. This shouldn't involve serializing binary data, right?

I have started implementing serialization for execution graphs here: https://github.com/hojonathanho/cgt/tree/serialization It's incomplete for now, but cgtArrays can be serialized. I chose a C++-only serialization framework because I think that with...

Good idea. For development, we pretty much use the latest version of all the dependencies, so Cython 0.23.2 should definitely work.

It may be possible to get the best of both worlds by allowing the user to mark axes as broadcastable with some syntactic sugar, perhaps like this: ``` activation +...

The difference between my proposal and solution 2 is that my proposal demands that broadcast information be available whenever the user performs an operation that needs broadcasting. There is no...