1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-04-18 08:01:58 +03:00

Fix call to updateC

This commit is contained in:
Matthew Honnibal 2016-07-31 11:42:44 +02:00
parent e38632003d
commit ff36cd43df

View File

@ -166,7 +166,7 @@ cdef class ParserNeuralNet(NeuralNet):
memset(costs, 0, self.moves.n_moves)
costs[clas] = grad
self.updateC(features,
nr_feat, True, costs, is_valid, False, key=key[0])
nr_feat, costs, is_valid, False, key=key[0])
moves.c[clas].do(stcls.c, self.moves.c[clas].label)
# Build a hash of the state sequence.
# Position 0 represents the previous sequence, position 1 the new class.