This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import argparse | |
import logging | |
import json | |
from more_itertools import chunked | |
from collections.abc import Iterator | |
import spacy | |
from spacy.language import Language | |
from spacy.tokens import Doc, Span, Token |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import argparse | |
import logging | |
import json | |
from more_itertools import chunked | |
from itertools import pairwise | |
from collections.abc import Iterator | |
import spacy | |
from spacy.language import Language |