Skip to content

Commit

Permalink
Adding split comment for CLIRMatrix (SEACrowd#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
fhudi committed May 18, 2024
1 parent aa915c2 commit 4e684d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions seacrowd/sea_datasets/clir_matrix/clir_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import pandas as pd

from seacrowd.utils.configs import SEACrowdConfig
from seacrowd.utils.constants import Licenses, Tasks
from seacrowd.utils.constants import Licenses

_CITATION = """\
@inproceedings{sun-duh-2020-clirmatrix,
Expand Down Expand Up @@ -96,7 +96,7 @@ class CLIRMatrixDataset(datasets.GeneratorBasedBuilder):
BUILDER_CONFIGS = [
*[
SEACrowdConfig(
name=f"{_DATASETNAME}{subset}_source",
name=f"{_DATASETNAME}{subset}_source", # refers to the `base` split in the original paper.
version=datasets.Version(_SOURCE_VERSION),
description=f"{_DATASETNAME} source schema",
schema="source",
Expand All @@ -106,7 +106,7 @@ class CLIRMatrixDataset(datasets.GeneratorBasedBuilder):
],
*[
SEACrowdConfig(
name=f"{_DATASETNAME}{subset}_full_source",
name=f"{_DATASETNAME}{subset}_full_source", # refers to the `full` split in the original paper.
version=datasets.Version(_SOURCE_VERSION),
description=f"{_DATASETNAME} full subset source schema",
schema="source",
Expand Down

0 comments on commit 4e684d9

Please sign in to comment.