mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-12 18:26:30 +03:00
Merge branch 'master' of https://github.com/honnibal/spaCy
This commit is contained in:
commit
5f3e43891f
|
@ -1,26 +0,0 @@
|
|||
from libc.stdint cimport uint8_t
|
||||
|
||||
from cymem.cymem cimport Pool
|
||||
|
||||
from thinc.learner cimport LinearModel
|
||||
from thinc.features cimport Extractor, Feature
|
||||
from thinc.typedefs cimport atom_t, feat_t, weight_t, class_t
|
||||
from thinc.api cimport Example, ExampleC
|
||||
|
||||
from preshed.maps cimport PreshMapArray
|
||||
|
||||
from .typedefs cimport hash_t
|
||||
|
||||
|
||||
cdef class Model:
|
||||
cdef readonly int n_classes
|
||||
cdef readonly int n_feats
|
||||
|
||||
cdef const weight_t* score(self, atom_t* context) except NULL
|
||||
cdef int set_scores(self, weight_t* scores, atom_t* context) nogil
|
||||
|
||||
cdef object model_loc
|
||||
cdef object _templates
|
||||
cdef Extractor _extractor
|
||||
cdef Example _eg
|
||||
cdef LinearModel _model
|
|
@ -1,68 +0,0 @@
|
|||
# cython: profile=True
|
||||
from __future__ import unicode_literals
|
||||
from __future__ import division
|
||||
|
||||
from os import path
|
||||
import tempfile
|
||||
import os
|
||||
import shutil
|
||||
import json
|
||||
import cython
|
||||
import numpy.random
|
||||
|
||||
from libc.string cimport memcpy
|
||||
|
||||
from thinc.features cimport Feature, count_feats
|
||||
from thinc.api cimport Example
|
||||
|
||||
from thinc.learner cimport arg_max, arg_max_if_true, arg_max_if_zero
|
||||
|
||||
|
||||
cdef class Model:
|
||||
def __init__(self, n_classes, templates, model_loc=None):
|
||||
if model_loc is not None and path.isdir(model_loc):
|
||||
model_loc = path.join(model_loc, 'model')
|
||||
self._templates = templates
|
||||
n_atoms = max([max(templ) for templ in templates]) + 1
|
||||
self.n_classes = n_classes
|
||||
self._extractor = Extractor(templates)
|
||||
self.n_feats = self._extractor.n_templ
|
||||
self._model = LinearModel(n_classes, self._extractor)
|
||||
self._eg = Example(n_classes, n_atoms, self._extractor.n_templ, self._extractor.n_templ)
|
||||
self.model_loc = model_loc
|
||||
if self.model_loc and path.exists(self.model_loc):
|
||||
self._model.load(self.model_loc, freq_thresh=0)
|
||||
|
||||
def __reduce__(self):
|
||||
_, model_loc = tempfile.mkstemp()
|
||||
# TODO: This is a potentially buggy implementation. We're not really
|
||||
# given a good guarantee that all internal state is saved correctly here,
|
||||
# since there are learning parameters for e.g. the model averaging in
|
||||
# averaged perceptron, the gradient calculations in AdaGrad, etc
|
||||
# that aren't necessarily saved. So, if we're part way through training
|
||||
# the model, and then we pickle it, we won't recover the state correctly.
|
||||
self._model.dump(model_loc)
|
||||
return (Model, (self.n_classes, self._templates, model_loc),
|
||||
None, None)
|
||||
|
||||
def predict(self, Example eg):
|
||||
self._model(eg)
|
||||
|
||||
def train(self, Example eg):
|
||||
self._model.train(eg)
|
||||
|
||||
cdef const weight_t* score(self, atom_t* context) except NULL:
|
||||
memcpy(self._eg.c.atoms, context, self._eg.c.nr_atom * sizeof(context[0]))
|
||||
self._model(self._eg)
|
||||
return self._eg.c.scores
|
||||
|
||||
cdef int set_scores(self, weight_t* scores, atom_t* context) nogil:
|
||||
cdef int nr_feat = self._extractor.set_feats(self._eg.c.features, context)
|
||||
|
||||
self._model.set_scores(scores, self._eg.c.features, nr_feat)
|
||||
|
||||
def end_training(self, model_loc=None):
|
||||
if model_loc is None:
|
||||
model_loc = self.model_loc
|
||||
self._model.end_training()
|
||||
self._model.dump(model_loc, freq_thresh=0)
|
|
@ -170,6 +170,9 @@ cdef class Begin:
|
|||
return False
|
||||
elif preset_ent_iob == 3 and st.B_(0).ent_type != label:
|
||||
return False
|
||||
# Don't allow entities to extend across sentence boundaries
|
||||
elif st.B_(1).sent_start:
|
||||
return False
|
||||
else:
|
||||
return label != 0 and not st.entity_is_open()
|
||||
|
||||
|
@ -207,8 +210,12 @@ cdef class In:
|
|||
elif preset_ent_iob == 3:
|
||||
return False
|
||||
# TODO: Is this quite right?
|
||||
# I think it's supposed to be ensuring the gazetteer matches are maintained
|
||||
elif st.B_(1).ent_iob != preset_ent_iob:
|
||||
return False
|
||||
# Don't allow entities to extend across sentence boundaries
|
||||
elif st.B_(1).sent_start:
|
||||
return False
|
||||
return st.entity_is_open() and label != 0 and st.E_(0).ent_type == label
|
||||
|
||||
@staticmethod
|
||||
|
|
|
@ -105,9 +105,12 @@ cdef class Parser:
|
|||
self.moves.set_valid(eg.is_valid, stcls)
|
||||
self.model.set_prediction(&eg)
|
||||
|
||||
assert eg.is_valid[eg.guess]
|
||||
|
||||
action = self.moves.c[eg.guess]
|
||||
if not eg.is_valid[eg.guess]:
|
||||
raise ValueError(
|
||||
"Illegal action: %s" % self.moves.move_name(action.move, action.label)
|
||||
)
|
||||
|
||||
action.do(stcls, action.label)
|
||||
self.moves.finalize_state(stcls)
|
||||
tokens.set_parse(stcls._sent)
|
||||
|
|
|
@ -48,7 +48,7 @@ cdef class StateClass:
|
|||
return 0
|
||||
if i < 0 or i >= self.length:
|
||||
return 0
|
||||
return self._ents[self._e_i-1].start
|
||||
self._ents[self._e_i - (i+1)].start
|
||||
|
||||
cdef int L(self, int i, int idx) nogil:
|
||||
if idx < 1:
|
||||
|
|
Loading…
Reference in New Issue
Block a user