Skip to content

Commit

Permalink
rounding
Browse files Browse the repository at this point in the history
  • Loading branch information
priyakasimbeg committed Oct 10, 2023
1 parent 3095cc4 commit 36b33dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions algorithmic_efficiency/workloads/criteo1tb/workload.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ def has_reached_validation_target(self, eval_result: Dict[str,

@property
def validation_target_value(self) -> float:
return 0.12364747752808988
return 0.123647

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

@property
def test_target_value(self) -> float:
return 0.1267424139736351
return 0.126742

@property
def loss_type(self) -> spec.LossType:
Expand Down

0 comments on commit 36b33dc

Please sign in to comment.