fix py
Browse files- __init__.py +0 -0
- __pycache__/__init__.cpython-38.pyc +0 -0
- __pycache__/classifier.cpython-38.pyc +0 -0
- __pycache__/ru_errant.cpython-38.pyc +0 -0
- ru_errant.py +3 -3
__init__.py
ADDED
File without changes
|
__pycache__/__init__.cpython-38.pyc
ADDED
Binary file (156 Bytes). View file
|
|
__pycache__/classifier.cpython-38.pyc
ADDED
Binary file (4.87 kB). View file
|
|
__pycache__/ru_errant.cpython-38.pyc
ADDED
Binary file (6.21 kB). View file
|
|
ru_errant.py
CHANGED
@@ -18,7 +18,8 @@ import re
|
|
18 |
from collections import Counter, namedtuple
|
19 |
from typing import Iterable
|
20 |
from tqdm.auto import tqdm
|
21 |
-
|
|
|
22 |
from errant.annotator import Annotator
|
23 |
from errant.commands.compare_m2 import process_edits
|
24 |
from errant.commands.compare_m2 import evaluate_edits
|
@@ -27,8 +28,7 @@ from errant.edit import Edit
|
|
27 |
import spacy
|
28 |
from spacy.tokenizer import Tokenizer
|
29 |
from spacy.util import compile_prefix_regex, compile_infix_regex, compile_suffix_regex
|
30 |
-
|
31 |
-
import merger
|
32 |
import evaluate
|
33 |
import datasets
|
34 |
|
|
|
18 |
from collections import Counter, namedtuple
|
19 |
from typing import Iterable
|
20 |
from tqdm.auto import tqdm
|
21 |
+
from . import classifier
|
22 |
+
from . import merger
|
23 |
from errant.annotator import Annotator
|
24 |
from errant.commands.compare_m2 import process_edits
|
25 |
from errant.commands.compare_m2 import evaluate_edits
|
|
|
28 |
import spacy
|
29 |
from spacy.tokenizer import Tokenizer
|
30 |
from spacy.util import compile_prefix_regex, compile_infix_regex, compile_suffix_regex
|
31 |
+
|
|
|
32 |
import evaluate
|
33 |
import datasets
|
34 |
|