aleksandra-datacamp

Results 1 comments of aleksandra-datacamp

If you use np.uint64 as dtype, it works. Preprocess becomes: ``` def tokenize(texts, max_length, skip=-2, attr=LOWER, merge=False, nlp=None, **kwargs): if nlp is None: nlp = spacy.load('en_core_web_md') data = np.zeros((len(texts), max_length),...