Skip to content

Commit e6adffb

Browse files
committed
add evaluation
1 parent 93f4526 commit e6adffb

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/source/repository_structure.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ In particular, these keywords are equivalent:
9494

9595
- train, training
9696
- validation, valid, dev
97-
- test, testing, eval
97+
- test, testing, eval, evaluation
9898

9999
Therefore this is also a valid repository:
100100

src/datasets/data_files.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ class Url(str):
3535
"testing[-._ ]*",
3636
"**[-._ /]eval[-._ ]*",
3737
"eval[-._ ]*",
38+
"**[-._ /]evaluation[-._ ]*",
39+
"evaluation[-._ ]*",
3840
],
3941
str(Split.VALIDATION): [
4042
"**[-._ /]dev[-._ ]*",
@@ -55,6 +57,8 @@ class Url(str):
5557
"**[-._ /]testing[-._ /]**",
5658
"eval[-._ /]**",
5759
"**[-._ /]eval[-._ /]**",
60+
"evaluation[-._ /]**",
61+
"**[-._ /]evaluation[-._ /]**",
5862
],
5963
str(Split.VALIDATION): [
6064
"dev[-._ /]**",

0 commit comments

Comments
 (0)