Skip to content

Commit

Permalink
👔 Change solved criterion
Browse files Browse the repository at this point in the history
  • Loading branch information
yhs0602 committed Jun 30, 2023
1 parent f5fc3a4 commit 9ffdb8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion final_experiments/animal_bimodal.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def solved_criterion(avg_score, test_score, avg_test_score, episode):
if episode < 500:
return False
if avg_score < 0.9:
if avg_score < 0.95:
return False
if test_score < 0.95:
return False
Expand Down
2 changes: 1 addition & 1 deletion final_experiments/animal_sound.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def solved_criterion(avg_score, test_score, avg_test_score, episode):
if episode < 500:
return False
if avg_score < 0.9:
if avg_score < 0.95:
return False
if test_score < 0.95:
return False
Expand Down

0 comments on commit 9ffdb8e

Please sign in to comment.