Skip to content

Instantly share code, notes, and snippets.

View Dmaturana81's full-sized avatar
🏠
Working from home

Daniel Maturana Dmaturana81

🏠
Working from home
View GitHub Profile
@Dmaturana81
Dmaturana81 / spacy_preprocessor.py
Created April 19, 2021 23:22 — forked from omri374/spacy_preprocessor.py
Text preprocessing using spaCy
import re
from typing import List
import spacy
from spacy.tokens import Doc
from tqdm import tqdm
class SpacyPreprocessor:
def __init__(