cdef class CRF_CFunction:
cdef public int num_feature
def __init__(self, object crf_pact_structure, int node_in_size):
self.num_feature = crf_pact_structure.num_feature
assert self.num_feature == crf_pact_structure.num_feature
但是这个断言会出错,crf_pact_structure.num_feature = 164880
但是self.num_feature = 33808