Skip to content

Commit

Permalink
Merge pull request #538 from mlcommons/speech_targets_update
Browse files Browse the repository at this point in the history
Update speech targets
  • Loading branch information
priyakasimbeg authored Oct 10, 2023
2 parents 4131232 + e663f8d commit 28da089
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ def has_reached_validation_target(self, eval_result: Dict[str,

@property
def validation_target_value(self) -> float:
return 0.084952
return 0.085884

def has_reached_test_target(self, eval_result: Dict[str, float]) -> bool:
return eval_result['test/wer'] < self.test_target_value

@property
def test_target_value(self) -> float:
return 0.053000
return 0.052981

@property
def loss_type(self) -> spec.LossType:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ def is_output_params(self, param_key: spec.ParameterKey) -> bool:

@property
def validation_target_value(self) -> float:
return 0.118232
return 0.119936

@property
def test_target_value(self) -> float:
return 0.073397
return 0.074143

@property
def step_hint(self) -> int:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ def is_output_params(self, param_key: spec.ParameterKey) -> bool:

@property
def validation_target_value(self) -> float:
return 0.118232
return 0.119936

@property
def test_target_value(self) -> float:
return 0.073397
return 0.074143

@property
def step_hint(self) -> int:
Expand Down

0 comments on commit 28da089

Please sign in to comment.