-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotes
36 lines (22 loc) · 813 Bytes
/
notes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
TODO:
rename columns to fit p1, p2
drop game_round from training df & dummy
1 = rock
2 = paper
3 = scissors
0 = no input
MUST:
be built in flask
show wins/losses
use an ML algorithm
prove it's not peeking
STRATEGY:
https://motherboard.vice.com/en_us/article/gvym4x/game-theory-rock-paper-scissors
humans tend to repeat their successful strategies
losers try to change their tactics
statistically scissors wins on first move the most (maybe max knows this??? make the bot check)
1: if opponent plays rock and wins (against scissors), he's more likely to play rock again.
so prefer to play the unplayed option (paper)
2: mirror. if bot wins, play the opponent's move
declare what you are going to play and tell the truth.
-> maybe randomize? or take into account what max did when we did this