Skip to content

Commit

Permalink
Merge branch 'dev' into conformer_oom_debugging_2
Browse files Browse the repository at this point in the history
  • Loading branch information
priyakasimbeg committed Oct 11, 2023
2 parents cb68dba + 28da089 commit 24edc3b
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 24edc3b

Please sign in to comment.