// computed in parallel for every token in the batch.
mwe_encode = ExtractWindow(nW=1) >> Maxout(width, width*3, pieces=pieces)
embed = StaticVectors("en", width) + Embed(width, width, 5000)
// Comments indicate the output type and shape at each step of the pipeline.
// * B: Number of sentences in the batch
// * T: Total number of words in the batch
// (i.e. sum(len(sent) for sent in batch))
After Change
// computed in parallel for every token in the batch.
mwe_encode = ExtractWindow(nW=1) >> Maxout(width, width*3, pieces=pieces)
embed = StaticVectors("en", width) //+ Embed(width, width, 5000)
// Comments indicate the output type and shape at each step of the pipeline.
// * B: Number of sentences in the batch
// * T: Total number of words in the batch