Skip to content

Commit

Permalink
Merge pull request #756 from mlcommons/wmt_variant_targets_fix
Browse files Browse the repository at this point in the history
Fix WMT variant targets
  • Loading branch information
priyakasimbeg authored Apr 8, 2024
2 parents 07e4d83 + 6d0031f commit f463c1d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions algorithmic_efficiency/workloads/wmt/wmt_jax/workload.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ class WmtWorkloadAttentionTemp(WmtWorkload):

@property
def validation_target_value(self) -> float:
return 29.8611
return 29.3379

@property
def test_target_value(self) -> float:
Expand All @@ -331,7 +331,7 @@ class WmtWorkloadGLUTanH(WmtWorkload):

@property
def validation_target_value(self) -> float:
return 29.6517
return 29.5779

@property
def test_target_value(self) -> float:
Expand Down
4 changes: 2 additions & 2 deletions algorithmic_efficiency/workloads/wmt/wmt_pytorch/workload.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ class WmtWorkloadAttentionTemp(WmtWorkload):

@property
def validation_target_value(self) -> float:
return 29.8611
return 29.3379

@property
def test_target_value(self) -> float:
Expand All @@ -387,7 +387,7 @@ class WmtWorkloadGLUTanH(WmtWorkload):

@property
def validation_target_value(self) -> float:
return 29.6517
return 29.5779

@property
def test_target_value(self) -> float:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"learning_rate": {
"feasible_points": [
0.0003477912008450351
0.000590120167916659
]
},
"beta1": {
"feasible_points": [
0.9936632117510711
0.737199286155609
]
},
"beta2": {
"feasible_points": [
0.9967873550453692
0.05919391544031072
]
},
"warmup_steps": {
Expand All @@ -21,7 +21,7 @@
},
"weight_decay": {
"feasible_points": [
0.04120183162940475
0.14128519778326312
]
},
"label_smoothing": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{
"learning_rate": {
"feasible_points": [
0.0002111193022461917
0.000872041489644454
]
},
"beta1": {
"feasible_points": [
0.8748186204170956
0.45562164405092065
]
},
"beta2": {
"feasible_points": [
0.8576876516215266
0.9982167124443476
]
},
"warmup_steps": {
"feasible_points": [
9999
4999
]
},
"weight_decay": {
"feasible_points": [
0.18033280763289028
0.01536114562763022
]
},
"label_smoothing": {
"feasible_points": [
0.0
0.1
]
}
}

0 comments on commit f463c1d

Please sign in to comment.