Results 421 comments of Jan Schlüter

That's intended, see `normalizeSpace` at https://nlp.stanford.edu/software/tokenizer.html. It will emit phone numbers (such as `0800 555 111`) and numbers with fractions (such as `2 1/2`) as a single token with non-breakable...

You merged a bunch of foreign commits into your PR. You should be able to fix this by: ``` git fetch upstream git reset --hard upstream/master git cherry-pick 96b36ed git...

> From my point of view -1 is usual python way to take the last element. I suggest to support it. +1. (But throwing an exception would probably be enough...

> Adding this feature would amount to adding a check for a tuple and converting it to a list at the beginning of the function. Not quite. It would need...

Another seasoned Theano user here :) > The downside of 1 is that it reduces our ability to infer shapes of intermediate variables in the graph, and it makes the...

> It may be possible to get the best of both worlds by allowing the user to mark axes as broadcastable with some syntactic sugar Yes, I'd like that a...

> 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...

> 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...

> but theano doesn't know that `bias.shape[0] == 1` Just to clarify, that's for the simple reason that _it can't_. In Theano, a shared variable only has a fixed dimensionality,...

(Question from an outsider:) Can't you just link against whatever BLAS library is installed on the system (that will most often be the one that is also used by numpy),...