HaileyStorm commited on
Commit
7f75964
1 Parent(s): c3539e3

Update chess-gpt-eval-contrastive/main.py

Browse files
Files changed (1) hide show
  1. chess-gpt-eval-contrastive/main.py +3 -3
chess-gpt-eval-contrastive/main.py CHANGED
@@ -731,7 +731,7 @@ def play_games(
731
 
732
 
733
  RUN_FOR_ANALYSIS = True
734
- MAX_MOVES = 999 # Due to nanogpt max input length of 1024
735
  recording_file = "logs/determine.csv" # default recording file. Because we are using list [player_ones], recording_file is overwritten
736
  player_ones = ["50M/anneal/anneal_complete_round3.pt"]
737
  player_two_recording_name = "lc0_sweep" #"stockfish_sweep"
@@ -747,8 +747,8 @@ save_activations_every = 25
747
  contrastive_weight = 0.8
748
 
749
  linear_path="linear.pkl"
750
- update_linear = True
751
- eval_linear = False
752
  if __name__ == "__main__":
753
  for nanogpt_player in player_ones:
754
  i = 0
 
731
 
732
 
733
  RUN_FOR_ANALYSIS = True
734
+ MAX_MOVES = 60 #999 # Due to nanogpt max input length of 1024
735
  recording_file = "logs/determine.csv" # default recording file. Because we are using list [player_ones], recording_file is overwritten
736
  player_ones = ["50M/anneal/anneal_complete_round3.pt"]
737
  player_two_recording_name = "lc0_sweep" #"stockfish_sweep"
 
747
  contrastive_weight = 0.8
748
 
749
  linear_path="linear.pkl"
750
+ update_linear = False
751
+ eval_linear = True
752
  if __name__ == "__main__":
753
  for nanogpt_player in player_ones:
754
  i = 0