Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit ac11f41

Browse files
committed
rebasing, confirming RT is running before refactor
1 parent b0b75a1 commit ac11f41

File tree

1 file changed

+3
-3
lines changed
  • research/test_methodology

1 file changed

+3
-3
lines changed

research/test_methodology/RT.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
agent1 = TrainedAgent("../blueprint_algo/results_2020_05_10_21_36_47_291425")
1717
# sorta hacky, but I loaded the average strategy above, now I'm replacing with
1818
# the better strategy
19-
offline_strategy = joblib.load('/Users/colin/Downloads/offline_strategy_285800.gz')
19+
#offline_strategy = joblib.load('/Users/colin/Downloads/offline_strategy_285800.gz')
2020
#print(sys.getsizeof(offline_strategy))
2121
# agent1.offline_strategy = offline_strategy
2222
# print(sys.getsizeof(agent1.offline_strategy))
23-
action_sequence = ["raise", "call", "call", "call", "call", "call", "call", "call", "call", "call", "call"]
24-
agent_output = train(offline_strategy, public_cards, action_sequence, 200, 60, 60, 3, 2, 60) # TODO: back to 50
23+
action_sequence = ["raise", "call", "call", "call","call"]
24+
agent_output = train(agent1.offline_strategy, public_cards, action_sequence, 200, 60, 60, 3, 2, 60) # TODO: back to 50
2525
with open('realtime-strategy-off-better-1500.pkl', 'wb') as file:
2626
pickle.dump(agent_output, file)
2727
import ipdb;

0 commit comments

Comments
 (0)