Skip to content

Commit 7608496

Browse files
committed
Remove subcategorization by features
1 parent e117bfb commit 7608496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extract_eval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def create(f):
7474
m = re.match(r"(.*-\d+)-(.*)", basename)
7575
path = f.split(os.sep)
7676
# noinspection PyTypeChecker
77-
fields = (bool(m),) + (m.groups() if m else (basename, "")) + \
77+
fields = (bool(m),) + (basename, "") + \
7878
(path[-2], "unlabeled" not in f, "counts" in f, CORPORA[path[-3]], f)
7979
return Report(*fields)
8080

0 commit comments

Comments
 (0)