Skip to content

Commit

Permalink
Change valid to dev for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Triplecq committed May 20, 2024
1 parent e39f56e commit 777f7a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions egs/reazonspeech/ASR/local/utils/asr_datamodule.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def add_arguments(cls, parser: argparse.ArgumentParser):
"--manifest-dir",
type=Path,
default=Path("data/manifests"),
help="Path to directory with train/valid/test cuts.",
help="Path to directory with train/dev/test cuts.",
)
group.add_argument(
"--max-duration",
Expand Down Expand Up @@ -342,9 +342,9 @@ def train_cuts(self) -> CutSet:

@lru_cache()
def valid_cuts(self) -> CutSet:
logging.info("About to get valid cuts")
logging.info("About to get dev cuts")
return load_manifest_lazy(
self.args.manifest_dir / "reazonspeech_cuts_valid.jsonl.gz"
self.args.manifest_dir / "reazonspeech_cuts_dev.jsonl.gz"
)

@lru_cache()
Expand Down

0 comments on commit 777f7a4

Please sign in to comment.