Prisoner's dilemma tournament results

post by AlexMennen · 2013-07-09T20:50:43.753Z · LW · GW · Legacy · 124 comments

The prisoner's dilemma tournament is over. There were a total of 21 entries. The winner is Margaret Sy, with a total of 39 points. 2nd and 3rd place go to rpglover64 and THE BLACK KNIGHT, with scores of 38 and 36 points respectively. There were some fairly intricate strategies in the tournament, but all three of these top scorers submitted programs that completely ignored the source code of the other player and acted randomly, with the winner having a bias towards defecting.

You can download a chart describing the outcomes here, and the source codes for the entries can be downloaded here.

I represented each submission with a single letter while running the tournament. Here is a directory of the entries, along with their scores: (some people gave me a term to refer to the player by, while others gave me a term to refer to the program. I went with whatever they gave me, and if they gave me both, I put the player first and then the program)

A: rpglover64 (38)
B: Watson Ladd (27)
c: THE BLACK KNIGHT (36)
D: skepsci (24)
E: Devin Bayer (30)
F: Billy, Mimic-- (27)
G: itaibn (34)
H: CooperateBot (24)
I: Sean Nolan (28)
J: oaz (26)
K: selbram (34)
L: Alexei (25)
M: LEmma (25)
N: BloodyShrimp (34)
O: caa (32)
P: nshepperd (25)
Q: Margaret Sy (39)
R: So8res, NateBot (33)
S: Quinn (33)
T: HonoreDB (23)
U: SlappedTogetherAtTheLastMinuteBot (20)


124 comments

Comments sorted by top scores.

comment by skepsci · 2013-07-10T03:27:17.358Z · LW(p) · GW(p)

Yay, I wasn't last!

Still, I'm not surprised that laziness did not pay off. I wrote a simple bot, then noticed that it cooperated against defectbot and defected against itself. I thought to myself, "This is not a good sign." Then I didn't bother changing it.

Replies from: fractalman
comment by fractalman · 2013-07-10T03:55:52.857Z · LW(p) · GW(p)

Frankly, I find this hilarious.

comment by dspeyer · 2013-07-09T16:59:45.572Z · LW(p) · GW(p)

Can I suggest running a second tournement, including all these bots and new bots that we can examine these bots in writing? After a few iterations, we might beat random. Or we might develop all sorts of signaling quirks, but that would also be interesting.

Replies from: hylleddin, AlexMennen, Kawoomba
comment by hylleddin · 2013-07-09T23:11:08.174Z · LW(p) · GW(p)

I like this plan. I'd be willing to run it, unless AlexMennan wants to.

comment by AlexMennen · 2013-07-11T01:51:23.553Z · LW(p) · GW(p)

When I first announced the tournament, people came up with many suggestions for modifications to the rules, most of which I did not take for the sake of simplicity. Maybe we should try to figure out what rules will make it easier to write more effective bots, even if that would disqualify many of the bots already submitted to this tournament.

Replies from: Andreas_Giger, SilasBarta, solipsist, Decius
comment by Andreas_Giger · 2013-07-12T14:58:49.207Z · LW(p) · GW(p)

Am I the only one who sees a problem in that we're turning a non-zero-sum game into a winner-take-all tournament? Perhaps instead of awarding a limited resource like bitcoins to the "winner", each player should be awarded an unlimited resource such as karma or funny cat pictures according to their strategy's performance.

Replies from: wedrifid
comment by wedrifid · 2013-07-12T15:07:12.817Z · LW(p) · GW(p)

Am I the only one who sees a problem in that we're turning a non-zero-sum game into a winner-take-all tournament?

No, not the only one. The same complaint was well received in the initial thread.

comment by SilasBarta · 2013-07-16T07:58:51.740Z · LW(p) · GW(p)

Maybe we should have a prisoner's dilemma meta-tournament in which we define a tournament-goodness metric and then everyone submits a tournament design that is run using the bot participants in the previous tournament, and then use the rankings of those designs.

Wait: does anyone know a good way to design the meta-tournament?

comment by solipsist · 2013-07-11T17:55:51.948Z · LW(p) · GW(p)

I'll list some suggestions.

  1. Conduct a statistically significant number of trials. With few trial, the highest ranked agents will be the ones with a high variance in possible score, rather than the agents with the highest average score.
  2. Allow no libraries, except for a very small whitelist (e.g. random numbers).
  3. No timing, no threads. They make analysis too hard. The payoff might have to be changed to make it never in your best interest to make your opponent diverge, e.g. (-1, -1).
  4. The rule "This is about Prisoner's dilemma, not the language you're working in. If you violate the spirit of this rule, your agent will be disqualified."
  5. (Possible) Change language to a restricted dialect of Python. You can analyze your opponent bytecode, if you wish, or run your opponent as a black-box. Programs with side effects (such as writing to global variables) and programs that use Pythonic trickiness (such as inspecting the stack) are verboten.
Replies from: BloodyShrimp
comment by BloodyShrimp · 2013-07-11T20:29:47.882Z · LW(p) · GW(p)

Most of these suggestions are okay, but don't move away from Lisp. A very restricted Scheme (e.g. one way to set variables, one looping construct (I really like foldl, as N shows), etc.) would be good; the lexical scoping and general immutability make it one of the best Lisps for our purposes.

Replies from: solipsist
comment by solipsist · 2013-07-11T22:23:14.096Z · LW(p) · GW(p)

+1 for restricted Scheme. I suggest restricted Python because it is more accessible and would allow more people to participate, but personally I like Scheme a bit more.

On the other hand, many many people were turned off by Scheme last time, and few of them will be reading this post. I'd like to give them a shot, if only to get a more diverse crowd.

On looping constructs: Would that buy us anything? What if people use recursion for looping? Should we restrict recursion?

Question for the audience: would there be a benefit to using a programming language that allows only primitive recursive functions?

Replies from: skepsci
comment by skepsci · 2013-07-12T03:51:24.101Z · LW(p) · GW(p)

I think a programming language that only allows primitive recursion is a bad idea. One common pattern (which I think we want to allow) was for bots to simulate their opponents, which entails the ability to simulate arbitrary valid code. This would not be possible in a language which restricts to primitive recursion.

comment by Decius · 2013-07-11T17:40:02.973Z · LW(p) · GW(p)

I think that the bots already submitted should be considered for grandfathering if the rules change to prohibit them.

I also have a specific entry in mind, but lack the expertise to go from 'flowchart' to 'code'.

Replies from: Andreas_Giger, malcolmocean
comment by Andreas_Giger · 2013-07-12T15:03:54.908Z · LW(p) · GW(p)

I think there would more people interested in playing if strategies could be submitted in pseudocode, so that would be great.

Replies from: Decius
comment by Decius · 2013-07-12T17:34:33.666Z · LW(p) · GW(p)

For entries that only eval(opponent(x)), for simple x, that seems reasonable. Strategies that rely on deeper analysis would need to look for specific things about the code that I, as a non-programmer, cannot describe accurately.

comment by MalcolmOcean (malcolmocean) · 2013-07-14T09:44:19.336Z · LW(p) · GW(p)

I think that the bots already submitted should be considered for grandfathering if the rules change to prohibit them.

I would agree that they should compete even if they're not awarded prizes for winning. Because we should at least have a comparison with performance against old bots. More data is pretty much always better.

Replies from: Decius
comment by Decius · 2013-07-15T19:08:47.455Z · LW(p) · GW(p)

It should also be trivial to calculate the score both in this heat and against all previously submitted bots.

comment by Kawoomba · 2013-07-09T17:21:52.957Z · LW(p) · GW(p)

we might beat random

Bring it on! Just to elaborate, in an iterated 1v1, a defectbot will reliably beat a randombot (4 to 1 if the randombot is unweighted). Or rather, any bot which detects a randombot and then always defects.

However, it's not even necessary to beat the few randombots in a 1v1 to win the tournament, it is sufficient to beat a majority of other bots (including some cooperatebots for easy wins) to get ahead of the pack enough so that the results against the randombots don't matter.

comment by selbram · 2013-07-11T22:51:57.798Z · LW(p) · GW(p)

I went and ran this another 100 times, so I could see what it would look like without the variance. The mean scores are:

A: 32.03
B: 28.53
C: 32.48
D: 24.94
E: 28.75
F: 29.62
G: 28.42
H: 26.12
I :26.06
J: 26.10
K: 36.15
L: 27.21
M: 25.14
N: 34.37
O: 31.06
P: 26.55
Q: 34.95
R: 32.93
S: 37.08
T: 26.43
U: 24.24

If you're interested, here's the code for the test (takes a day to run) and the raw output for my run (an inconvenient format, but it shows the stats for the matchups).

Replies from: ESRogs, Caspar42
comment by ESRogs · 2013-07-13T07:34:29.886Z · LW(p) · GW(p)

And for the lazy, here these scores are in sorted order (with original scores in parentheses):

S: 37.08 - Quinn (33)
K: 36.15 - selbram (34)
Q: 34.95 - Margaret Sy (39)
N: 34.37 - BloodyShrimp (34)
R: 32.93 - So8res, NateBot (33)
C: 32.48 - THE BLACK KNIGHT (36)
A: 32.03 - rpglover64 (38)
O: 31.06 - caa (32)
F: 29.62 - Billy, Mimic-- (27)
E: 28.75 - Devin Bayer (30)
B: 28.53 - Watson Ladd (27)
G: 28.42 - itaibn (34)
L: 27.21 - Alexei (25)
P: 26.55 - nshepperd (25)
T: 26.43 - HonoreDB (23)
H: 26.12 - CooperateBot (24)
J: 26.1 - oaz (26)
I: 26.06 - Sean Nolan (28)
M: 25.14 - LEmma (25)
D: 24.94 - skepsci (24)
U: 24.24 - SlappedTogetherAtTheLastMinuteBot (20)

comment by Caspar Oesterheld (Caspar42) · 2018-02-02T16:03:03.186Z · LW(p) · GW(p)I tried to run this with racket and #lang scheme (as well as #lang racket) but didn't get it to work (though I didn't try for very long), perhaps because of backward compatibility issues. This is a bit unfortunate because it makes it harder for people interested in this topic to profit from the results and submitted programs of this tournament. Maybe you or Alex could write a brief description of how one could get the program tournament to run? Edit: I think after posting this, I did manage to get it to work (though I don't remember how).
comment by Qiaochu_Yuan · 2013-07-09T21:07:27.479Z · LW(p) · GW(p)

Has someone gone through all the programs to figure out what strategy they're supposed to be implementing, then checked that they in fact correctly implement that strategy? Also, given that the bots were allowed to use randomness, it would've been a good idea to average a bunch of rounds together.

comment by Andreas_Giger · 2013-07-09T21:38:58.189Z · LW(p) · GW(p)

A tournament like this would be much more interesting if it involved multiple generations. Here, the results heavily depended upon the pool of submitted strategies, regardless of their actual competitiveness, while a multiple-generations tournament would measure success as performance against other successful strategies.

comment by Luke_A_Somers · 2013-07-09T13:47:04.232Z · LW(p) · GW(p)

h, i, and j are identical and received noticeably different scores. Maybe next time, repeat the whole process a few times to even out the RNG?

Also, it would be interesting to see the head-to-head matchups, especially to see if R's complexity actually helped even though it seemed mostly aimed at special cases that never came up.

Replies from: AlexMennen
comment by AlexMennen · 2013-07-09T15:38:16.892Z · LW(p) · GW(p)

You can see the head-to-head matchups.

Replies from: Luke_A_Somers
comment by Luke_A_Somers · 2013-07-10T14:34:21.791Z · LW(p) · GW(p)

Yes. I will be taking a look at that later. Sorry that I made an unnecessary implied request there.

comment by [deleted] · 2013-07-09T13:19:07.813Z · LW(p) · GW(p)

Hmm. Considering the heavy amount of random strategies, it seems like it might be worth it iterating the tournament several more times and summing the point totals, particularly since C(one of the randoms) is above the three way tie at 4th place between G, K and N by only two points, and A and C also have a 2 point difference despite having functionally identical strategies (50% random Cooperate or Defect.) I feel like that implies standard deviations may make analysis of the results premature.

Nonetheless, analyzing is fun, so I'll do a little bit anyway on the fourth placers.

K appears to be functionally identical to a Defect bot. It has more complicated code, but that code never cooperated. (Side note: randomly, in this run, Margaret Sy's winning random favor defection at 80% strategy only cooperated with this bot and defected against all other bots.)

Also G and N, despite being in 4th place, didn't actually seem to take successfully advantage of any of the 3 pseduosimplistic cooperate bots in this run (H, I, J - Simulate something, then cooperate regardless.) by defecting against them, which would seem to be one of the key ways a mind reader could try to score points for a win. I would guess the 'pretend to be thinking' purpose of the simulate call made them look too complicated to exploit in that manner, but I'm not that familiar with the programming language, so perhaps not? (Not that being H,I or J's type of bot was sufficient to win. Their points are low enough that it seems unlikely that they would surge ahead even after repetition.)

Anyway, thank you for running this! It was a neat idea and as above, I had fun looking at the results.

Edit: I realized a pronoun above was unclear and replaced it with nouns.

Replies from: BloodyShrimp
comment by BloodyShrimp · 2013-07-09T17:04:34.512Z · LW(p) · GW(p)

I think that kind of deviation was probably a large part of the motivation for those who submitted random-playing bots, since the contest rules specified one round.

I haven't looked too closely at K, nor ran any tests, but I have a slight suspicion it sometimes cooperated in simulation, despite always defecting on its turn.

As for the cooperatebots, there were multiple reasons I didn't write N to exploit them, but not source complexity--they don't even do anything besides cooperate; the middle term is just the function's argument list.

Replies from: hylleddin, None
comment by hylleddin · 2013-07-09T22:41:54.338Z · LW(p) · GW(p)

I checked the behavior of all the bots that cooperated with K, and all but two (T and Q) would have always cooperated with a defectBot. Specifically the defect bot:

(lambda (opp) 'D)

Sometimes they cooperated for different reasons. For example, U cooperates with K because it has "quine" in the code, while it cooperates with defectBot because it doesn't have "quine", "eval", or "thread" in it.

Q, of course, acts randomly. T is the only one that doesn't cooperate with defectBot but was tricked by K into cooperating. Though I'm having trouble figuring out why because I'm not sure what T is doing.

Anyway, it looks like K is reasonable proxy for how defectBot would have done here.

Replies from: HonoreDB
comment by HonoreDB · 2013-07-09T23:28:52.491Z · LW(p) · GW(p)

T was supposed to do a bit more than it did, but it had some portability bugs so I hastily lobotomized it. All it's supposed to do now is simulate the opponent twice against an obfuscated defectbot, defect if it cooperates both times, otherwise play mimicbot. I didn't have the time to add some of the obvious safeguards. I'm not sure if K is exploiting me or just got lucky, but at a glance, what it might be doing is checking whether the passed-in bot can generate a perfect quine of itself, and cooperating only then. That would be pretty ingenious, since typically a quine chain will go "original -- functional copy -- identical copy -- identical copy", etc.

Replies from: selbram
comment by selbram · 2013-07-10T15:12:22.213Z · LW(p) · GW(p)

You're right. K is a MimicBot with an additional check for proper quining. I primarily intended it to cause defection against CooperateBots, RandomBots, and others that don't simulate their opponents meaningfully. I expected a lot more MimicBot variants and mutual cooperations...

comment by [deleted] · 2013-07-09T17:14:26.607Z · LW(p) · GW(p)

True. I'm not saying that the random people did a poor job of selecting strategies, but Error was depressed that random behavior dominated. My and Luke_A_Somers's points appears to be that the amount randomness dominates by, if it is dominant, would be easier to determine with more rounds.

comment by Zvi · 2013-07-11T21:28:58.432Z · LW(p) · GW(p)

I don't know quine at all and can't easily understand exactly what all these guys are doing but:

This is obviously NOT a stable metagame; in both senses.

If we ran this tournament again the random-bots would get utterly destroyed (since it's very easy/fast to check for them and defect). If we ran this tournament with multiple rounds, where successful strategies survive and unsuccessful die, and there was even one defect-against-randombot code in the mix, it will win if it doesn't die early.

My guess-happy summary of what happened is this: The core problem is very hard, so most people instead did something simple, often very simple (cooperate bot, defect bot, random bot - which won!) with a small number of people trying for real. The people trying for real, however, spent all their energy planning for other people trying for real and trying to fool them, rather than trying to act correctly against all the super-simple programs, because if you put in that much work you think other people will mostly put in at least some work (R has an entire long blog post of metagame and strategic analysis which is COMPLETELY wrong in exactly this way, in real life I do this a lot). That, combined with programming errors since the task involved was actually hard, prevented them from winning.

The lesson here, I think, is more about how people react to such tournaments than it is about the actual problem at hand; if anyone had assumed their opponents would either be simple or hopelessly complex, they could have written a program that defects against programs that don't look at their code or otherwise are clearly safe defections, does something hard to exploit against everyone else that likely is somewhat random, and win easily.

Replies from: BloodyShrimp, Zvi
comment by BloodyShrimp · 2013-07-11T22:15:37.478Z · LW(p) · GW(p)

Your summary seems pretty accurate. I don't think there were many programming errors outside of P's meltdown, though. Also, as has been touched upon elsewhere in these comments, some of the failures to maximally exploit simple bots were necessary side effects of the attempts to trick complex bots, not just failures to anticipate there being a significant number of simple bots at all. (Sort of a quantitative instead of qualitative prediction mistake--we just thought there'd be more complex bots than simple bots).

One clue towards the general simplicity of the field is the generally atrocious formatting (e.g. close-parens on their own lines)--not many people seem to have had too much experience with Lisp, let alone Lisp projects as complex as this game can get. That's a shame, but it's not like any non-Lisp languages are remotely suitable for the kind of source analysis we all wanted to see in this game.

comment by Zvi · 2013-07-11T21:31:50.818Z · LW(p) · GW(p)

If the tournament were run a second time, my expectation would be that such programs would abound (since writing "if they showed signs of life randomly do something but usually defect, else cooperate" is pretty easy), there'd still be a bunch of simple guys running around, there'd be a small number of people trying to play higher-level exploit games that would have better code than last time, and you'd likely see a level-2 bot (one that beats the obvious level-1 bot that wins the first tournament) come out ahead.

Replies from: fractalman
comment by fractalman · 2013-07-11T22:42:02.995Z · LW(p) · GW(p)

for reference, here's what I was "planning"-I was all too aware i didn't have time to learn a new language to actually implement it in. a pity i didn't think to post this before the tournament results, even if it's just pseudocode...

run(me,opponent){ //start point notethetime() if(me=opponent){return C} defectbot[]=a list of primitive defectbots with a junk string value added run5times and record results:(run(opponnent, (opponent, defectbot[i]) { if (opponent cooperated sometimes){ if(isooponentclearlymimicbot(ooponent)){cooperate()}else{defect()}}//mimic bot is assumed to be simple and easy to identify as such, but I'm not exactly sure how i'd test this. checktime()//if the opponent takes way too long to run against a short defect bot with barely any baggage, it's going to have trouble with you. Defect for both your sakes.

if(opponent cooperates allways){if(opponentisclearly cooperate-bot){do I cooperate with C-bots in the hopes of cooperating with those who cooperate with C-bots or do I take advantage of the schmuck?}//a decision i really never made...

mimicbot="...." result=(opponent,mimicbot) if(opponent defected{defect()} checktime(){}//but this time, cooperate if things are taking dangerously long-MAYBE. it's somewhat reasonable for an opponent to take a while against a mimicbot, especially if opponent is mimicbot with small epsilon. .

psychbot1.0=("...."+mimicbot+"..."); /psychbot 1.0 sends you against mimic bot, and then does what you do. only, I get to see the final result.
record(run( opponent,psychbot1.0))

checktime();-possibly in a seperate thread. depends on how quickly this whole thing goes.
psychbot 1.1="...+defectbot".
result=run(opponent, psychbot1.1); psychbot 1.1 also checks you against defect bot, like the main program. the purpose, if used, is to avoid cooperating with programs that defect on finding a "D" if(result=C){return C;} else{return D}. }

}

Yeah. pseudocode. for java, not lisp.

edit: clarified a few things in the intro.

Replies from: Zvi
comment by Zvi · 2013-07-12T00:22:15.267Z · LW(p) · GW(p)

I find cooperation with cooperation-bot utterly insane in context; I would have predicted less than three, but a good chance of at least one. In the real world problem, or a tournament with a lot of rounds, it's potentially worth saying that since C-bots will die off quickly (although, if enough people cooperate with them, maybe they won't) they're effectively unlikely enough that you can safely use your response to them as signaling for other programs, but if that's true, then your opponent should presumably know that and throw non-trivial cases at you instead.

Replies from: fractalman
comment by fractalman · 2013-07-12T02:43:41.255Z · LW(p) · GW(p)

yeah...but I was more concerned about various TrollBots-including but not limited to HashBot, Randombot, DitherBot, cooperate-IFF you are a defect bot or cooperate bot, antimimicbot...and I considered "cooperates with C-Bot" to be extremely useless as a source of information given the unusual demographics of LessWrong while drawing up my plans.

comment by Sniffnoy · 2013-07-11T03:35:56.104Z · LW(p) · GW(p)

One additional note on a second tournament: I notice bots weren't played against themselves. Should this be done? It seems useful as a sanity check; I feel like a bot that won't even cooperate against itself ought to get fewer points.

Replies from: Decius
comment by Decius · 2013-07-11T17:34:29.503Z · LW(p) · GW(p)

Why? In what circumstance would you ever be offered a choice to cooperate or compete with your concurrent self?

Replies from: wedrifid, Viliam_Bur
comment by wedrifid · 2013-07-12T13:49:28.844Z · LW(p) · GW(p)

Why? In what circumstance would you ever be offered a choice to cooperate or compete with your concurrent self?

Probably in a respectable fraction of the universes in which other agents have a copy of your source code.

Replies from: BloodyShrimp
comment by BloodyShrimp · 2013-07-18T01:46:50.655Z · LW(p) · GW(p)

This is the reason my bot attempted to recognize itself. Attention anyone who plays in a tournament that continues to use this bot pool: put the token LightninRoy in your source!

comment by Viliam_Bur · 2013-07-12T12:11:17.356Z · LW(p) · GW(p)

In Robin Hanson's em dystopia. :D

It seems fair that if I have to play against a copy of myself, then you have to play against two copies of myself (because it means the universe contains two instances of me). But make it millions, and then I play against approximately as much copies of myself as you do.

Replies from: Kawoomba
comment by Kawoomba · 2013-07-12T13:27:04.059Z · LW(p) · GW(p)

Good news: You win! :-)

Bad news: You lose! :-(

Replies from: Viliam_Bur
comment by Viliam_Bur · 2013-07-12T13:55:44.605Z · LW(p) · GW(p)

Best news: You cooperate. Twice! :D

comment by Error · 2013-07-09T11:34:27.082Z · LW(p) · GW(p)

Huh. I'm not entirely surprised that random behavior was dominant, but it's certainly depressing. Nevertheless, I'm glad you ran this.

Replies from: JoshuaZ, Viliam_Bur
comment by JoshuaZ · 2013-07-09T12:18:23.496Z · LW(p) · GW(p)

This may be more a reflection that programming interesting strategies which run each others code and fully do what you want them to do is tough. It might be interesting to look at the strategies which did look at the other's code and see if any are responding in an obviously wrong fashion in that particular instance.

Replies from: nshepperd
comment by nshepperd · 2013-07-09T12:28:32.594Z · LW(p) · GW(p)

I wasn't expecting there to be so much randomness. If I had been, I guess I would have spent the time to figure out how to test for it in some kind of loop and defect if the opponent was random. Looping in lisp is unnecessarily complicated though, so I didn't bother...

Replies from: JoshuaZ
comment by JoshuaZ · 2013-07-09T12:31:21.806Z · LW(p) · GW(p)

That suggests that a large part of this behavior may have been due to limited amounts of programming time.

Replies from: fractalman
comment by fractalman · 2013-07-09T21:48:43.382Z · LW(p) · GW(p)

My own strategy-if i'd felt like joining-would have started by checking the opponent against defectbot; anybody who cooperates with even one of the 5 or so defect-varaints is clearly insane and not to be trusted; defect immediately. OR maybe take a detour and check if they're actually a mimicbot that got unlucky.

well...I might have played Hawkbot instead; Hawkbot spends 9.999 seconds dithering before finally defecting, so it does insanely well against any opponent that tries to run it.

Replies from: hylleddin, Sniffnoy, wedrifid, Luke_A_Somers
comment by hylleddin · 2013-07-09T22:47:13.869Z · LW(p) · GW(p)

Several of the bots using simulation also used multithreading to create timer processes so they can quit and defect against anyone who took to long to simulate.

I was also thinking of doing something similar, which was to infinite loop if the opposing programs code was small enough, since that probably meant something more complex was simulating it against something.

Replies from: fractalman
comment by fractalman · 2013-07-10T03:41:45.311Z · LW(p) · GW(p)

Ah, so multithreading was allowed...so instead of dithering for 9.999 seconds, it would have called forkbomb(9.9seconds)

comment by Sniffnoy · 2013-07-11T08:30:14.838Z · LW(p) · GW(p)

Quinn appears to have submitted something similar. As far as I can tell, against CooperateBot it cooperates; otherwise, it waits 9 seconds before defecting. (The weird timing conditional in there should never return true if things are working properly, and checking the results, indeed, it defected against everything but the three CooperateBots.)

Replies from: Quinn
comment by Quinn · 2013-07-14T10:02:12.584Z · LW(p) · GW(p)

Unless I'm going insane, Luke_A_Somers' comment below is incorrect. If you defect and your opponent times out, you still get 1 point and they get 0, which is marginally better than both getting 1 point in the case of mutual defection.

That was the purpose my (sleep 9). I figured anyone who was going to eval me twice against anything other than CooperateBot is going to figure out that I'm a jerk and defect against me, so I'm only getting one point from them anyway. Might as well lower their score by 1.

My assumption might not have been correct though. In the original scoreboard, T (who times out against me) actually does cooperate with K, who defected against everybody!

The bizarre-looking always-false conditional was a long shot at detecting simulation. I heard an idea at a LW meetup (maybe from So8res?) that players might remove sleeps from each other's code before calling eval. I figured I might as well fake such players out if there were any (there were not).

comment by wedrifid · 2013-07-11T06:37:27.347Z · LW(p) · GW(p)

well...I might have played Hawkbot instead; Hawkbot spends 9.999 seconds dithering before finally defecting, so it does insanely well against any opponent that tries to run it.

Anybody who runs the other program without an interrupt timer and so times out is, as you put it, "clearly insane". Hawkbot gets 1 against any sane opponent that tries to run it.

Replies from: fractalman, BloodyShrimp
comment by fractalman · 2013-07-11T19:09:29.668Z · LW(p) · GW(p)

I reread the payoff matrix some time after posting that....and the defect-bot test was only the first in a series of tests I had planned out.

comment by BloodyShrimp · 2013-07-11T07:03:58.997Z · LW(p) · GW(p)

Forget sanity--if your opponent fails to play, the most you can get is one point. Hawkbot is awful.

comment by Luke_A_Somers · 2013-07-10T14:46:21.185Z · LW(p) · GW(p)

That wouldn't work well since timing out causes both players to get 0. You'd do better just defecting.

Replies from: fractalman, Kawoomba
comment by fractalman · 2013-07-10T20:21:34.120Z · LW(p) · GW(p)

It does? The payoff matrix had entries for.. ... double checks original contest rules OH. I see. I misread how the payoffs work when "other" occurs.

comment by Kawoomba · 2013-07-10T20:48:33.927Z · LW(p) · GW(p)

Collaborateurbot: Times out against everyone except the bot it is secretly helping. If it's not against the letter of the rules, it's fair game from a "rational = winning" perspective.

Replies from: None
comment by [deleted] · 2013-07-10T21:19:07.538Z · LW(p) · GW(p)

I suspect that sort of thing is why the rules forbade multiple entrants.

Replies from: Kawoomba
comment by Kawoomba · 2013-07-10T21:25:11.059Z · LW(p) · GW(p)

Are you saying my Grandma can't submit an entry?

How will we tell her?

comment by Viliam_Bur · 2013-07-12T12:13:33.959Z · LW(p) · GW(p)

It is a nice mathematical model of the valley of bad rationality.

comment by MBlume · 2013-07-10T03:15:14.554Z · LW(p) · GW(p)

Fantastic work, thank you =)

For anyone else unpacking the zip file, note you'll want to create a new directory to unzip it into, not just unzip it in the middle of your home folder.

comment by Sniffnoy · 2013-07-10T22:16:18.244Z · LW(p) · GW(p)

Wait, someone actually submitted CooperateBot? That wasn't just a default entry?

Thoughts on a possible second tournament:

  • I like Luke Somers's suggestion that each matchup should be run several times to smooth out randomness (obviously, bots don't get access to earlier runs, this isn't iterated prisoner's dilemma)
  • Should it include default entries? Perhaps a CooperateBot, a DefectBot, and a RandomBot? Or perhaps just a RandomBot?
  • Should we maybe restrict to a subset of Scheme to make things easier for those of us who want to do static analysis? :) (Yeah, yeah, I never actually submitted anything...) Or should we just rely on pre-announcmets of "If you do this, I'm defecting?"
Replies from: Quinn
comment by Quinn · 2013-07-10T22:48:58.477Z · LW(p) · GW(p)

I was a bit irritated that no fewer than three players submitted CooperateBot, as I cooperated with it in hopes of tricking bots like submission B.

EDIT: More offense was taken at my use of the word "trolls" than was intended.

Replies from: evec, wedrifid, Illano, Decius, wedrifid
comment by evec · 2013-07-10T23:19:50.121Z · LW(p) · GW(p)

Why does submitting CooperateBot to a competition that does not include it make someone a troll? Would submitting DefectBot make one a troll, too?

(I believe the competition should have automatically included one CooperateBot and DefectBot each, and stated that this was the case at the beginning. I am sad there were three CooperateBots and no DefectBots.)

Replies from: Qiaochu_Yuan, hylleddin
comment by Qiaochu_Yuan · 2013-07-10T23:37:51.482Z · LW(p) · GW(p)

I think the idea is that someone submitting CooperateBot is not trying to win. But I find this a poor excuse. (It's why I always give the maximum possible number whenever I play "guess 2/3rds of the average.") I agree that the competition should have been seeded with some reasonable default bots.

Submitting DefectBot makes you a CDT agent, not a troll.

Replies from: defectbot, wubbles, Quinn
comment by defectbot · 2013-07-10T23:40:59.577Z · LW(p) · GW(p)

As one of the players who submitted a cooperatebot (yes, I see the irony), allow me to explain my reasoning for doing so. I scoped the comments to see what bots were being suggested (mimicbots, prudentbots, etc) and I saw much more focus on trying to enforce mutual cooperation than trying to exploit bots that can be exploited. I metagamed accordingly, hypothesizing that the other bots would cooperate with a cooperatebot but possibly fail to cooperate with each other. My hypothesis was incorrect, but worth testing IMO.

Replies from: Quinn, Eugine_Nier
comment by Quinn · 2013-07-11T05:41:17.788Z · LW(p) · GW(p)

Thank you.

comment by Eugine_Nier · 2013-07-13T06:34:20.978Z · LW(p) · GW(p)

I scoped the comments to see what bots were being suggested (mimicbots, prudentbots, etc) and I saw much more focus on trying to enforce mutual cooperation than trying to exploit bots that can be exploited. I metagamed accordingly, hypothesizing that the other bots would cooperate with a cooperatebot but possibly fail to cooperate with each other.

There's a problem with that logic. Did you really expect the people designing exploitation bots to talk about them publicly?

comment by wubbles · 2013-07-11T00:36:43.544Z · LW(p) · GW(p)

How do we draw the line? Tit-for-Tat is very simple, yet does very well. Arguably before knowing how it performs it could be considered a troll.

Replies from: Andreas_Giger
comment by Andreas_Giger · 2013-07-11T01:39:36.236Z · LW(p) · GW(p)

Considering this was an experimental tournament, learning how certain strategies perform against others seems far more interesting to me than winning, and I can't imagine any strategy I would label as a troll submission. Even strategies solely designed to be obstacles are valid and valuable contributions, and the fact that random strategies skew the results is a fault of the tournament rules and not of the strategies themselves.

comment by Quinn · 2013-07-11T05:39:59.824Z · LW(p) · GW(p)

Can you elaborate on this?

You are right that I used the inflammatory t-word because CooperateBot submitters are probably not trying to win. I certainly expected to see DefectBots (or CliqueBots from optimists), and agree that the competition should have been seeded with both CooperateBots and DefectBots.

But I don't understand this at all:

But I find this a poor excuse. (It's why I always give the maximum possible number whenever I play "guess 2/3rds of the average.")

To me, this looks like t-wording the people who play 0.

Are we thinking of the same game, where the payout is constant?

Replies from: Qiaochu_Yuan
comment by Qiaochu_Yuan · 2013-07-11T18:50:05.421Z · LW(p) · GW(p)

Yes, that game. My point is that complaining "that's not fair, X player wasn't playing to win" is a failure to think like reality. You know that you're playing against humans, and that humans do lots of things, including playing games in a way that isn't playing to win. You should be taking that into account when modeling the likely distribution of opponents you're going to face. This is especially true if there isn't a strong incentive to play to win.

Replies from: Quinn
comment by Quinn · 2013-07-11T19:25:00.418Z · LW(p) · GW(p)

Yes, and I agree with this. I'm familiar with Straw Vulcanism and accept that guessing incorrectly is my mistake, not others'.

It seems anger and frustration were read into my comment, when in fact I was merely surprised, so I've edited out the offending t-word.

comment by hylleddin · 2013-07-11T03:02:29.701Z · LW(p) · GW(p)

I would have liked to see a proper DefectBot as well, however contenstant K defected every time and only one of the bots that cooperated with it would have defected against DefectBot, so it makes a fairly close proxy.

comment by wedrifid · 2013-07-11T21:00:37.605Z · LW(p) · GW(p)

EDIT: More offense was taken at my use of the word "trolls" than was intended.

Be sure to distinguish the "think you're wrong" and the "find it offensive" components of the responses.

Replies from: Quinn
comment by Quinn · 2013-07-11T22:47:33.431Z · LW(p) · GW(p)

Yes, the "here's why Quinn is wrong about CooperateBot being a troll submission" comments were valuable, so I don't regret provoking them. Presumably if my comment had said "players" instead of "trolls" from the outset, it would have been ignored for being inoffensive and content-free.

But provoking a few good comments was a happy accident from my perspective. I will avoid casual use of the word "troll" on this site, unless I have a specific purpose in mind.

comment by Illano · 2013-07-12T13:22:53.598Z · LW(p) · GW(p)

As one of the people who submitted a CoopBot. I had three primary motivations.

The first came from a simulation of the competition I created in Python, where I created copies of a lot of the strategies mentioned in the thread comments (excluding of course the ones with a nebulous perfectlyPredictOpponent() function). Given that a lot of the strategies discussed involved checking for cooperation with a coopBot, playing an actual coopBot ranked relatively highly in my test competitions, failing primarily against random or defectbots, and it seemed less exploitable by higher level bots, if they still wanted to be able to trick the lower level bots.

The second motivation was to use the coopBot as a baseline to see how well the other bots really did perform.

The third motivation was simple: I don't really know Scheme, so most of my more complex bots from my Python simulation proved too difficult to implement in the time I allocated to work on this.

comment by Decius · 2013-07-11T17:36:29.270Z · LW(p) · GW(p)

There exist LW readers who believe that Cooperate is the dominant strategy in PD.

Replies from: Kawoomba, wedrifid
comment by Kawoomba · 2013-07-11T21:02:38.470Z · LW(p) · GW(p)

Humans don't only play to win, coupled with a comparatively obscure choice of programming language, simple bots will be in the majority.

Replies from: Decius
comment by Decius · 2013-07-12T03:03:53.451Z · LW(p) · GW(p)

Plus even a flowchart of the ideal strategy is hard to create without using black boxes or brute-force iterating every possible proof of something.

EDIT: Oh, and the humans played to win a game different from the nominal game. That distinction is important, because you can only observe them in the actual game and not the nominal one. (At CFAR workshops, PD for low stakes resulted in universal cooperation when it was done openly; the first time it was done semi-anonymously, there was a defector. There were several other differences as well, but the nominal stakes were similar.)

comment by wedrifid · 2013-07-11T20:56:53.623Z · LW(p) · GW(p)

There exist LW readers who believe that Cooperate is the dominant strategy in PD.

Can you provide links to comments that are examples of this? If so, I'd like to look at them to confirm and then to make sure I have downvoted and/or corrected them as necessary. Without seeing the examples I assign roughly 0.5 probability to them existing, with most of the remaining probability mass going to "There exist comments that defy CDT in a way that some readers may consider to be equivalent to declaring that Cooperate is dominant but is in fact not a claim about strategic dominance at all".

Replies from: Decius
comment by Decius · 2013-07-12T02:15:47.908Z · LW(p) · GW(p)

I had that discussion in person, so I can't point to comments. There may have been some confusion about the claims made, such that the claim I understood them to be making is different from the claim that they made, and the specific game in question was 2-iteration PD with the nonstandard payoff matrix (50,50; 100,0; 0;100; 25,25), but I think they were using cached thoughts for the discussion, rather than something that applied to the specific case but not the general.

comment by wedrifid · 2013-07-11T06:47:21.661Z · LW(p) · GW(p)

I was a bit irritated that no fewer than three trolls submitted CooperateBot, as I cooperated with it in hopes of tricking bots like submission B.

Anyone who submits a strategy that cooperates with CooperateBot has no place shaming others as 'trolls' for cooperating. If you are trying to 'trick' others and guess their responses incorrectly then the joke is entirely on you!

comment by nshepperd · 2013-07-09T11:39:51.804Z · LW(p) · GW(p)

:(

I didn't realise that when you said programs should assume eval would work normally, that meant I needed to make my simulated eval take a namespace as an optional argument (and use the proper namespace containing the standard library as a default). So my program crashed whenever it simulated something that uses (eval x). There goes my clever algorithm, lol

Replies from: Roxolan, AlexMennen
comment by Roxolan · 2013-07-09T15:17:24.632Z · LW(p) · GW(p)

What did you intend your program to do? I tried to work it out from the source code but it scared me off.

Replies from: nshepperd
comment by nshepperd · 2013-07-09T23:43:07.636Z · LW(p) · GW(p)

Well, now the contest's over I can publish an expanded version of my source code with comments. Basically it was a sort-of variation of PrudentBot designed to get cooperation from So8res's stupid pseudo-mimics. The original variation had two conditions: if ((they cooperate with us if we cooperate) and (they defect against defectbot)) then cooperate; else defect. The second condition allows you to exploit stupid bots like cooperatebot, but since doing that causes all justicebots, etc etc to defect, I ended up removing that. (Though, looks like that was a bad idea in the end, since there were three cooperatebots submitted!)

Well, it's not quite a true PrudentBot since PrudentBot tries to prove unconditional cooperation, rather than cooperation-if-I-cooperate.

comment by AlexMennen · 2013-07-09T15:10:49.836Z · LW(p) · GW(p)

Sorry about that. I was trying to warn people ahead of time about bugs so they could fix them, but I didn't run sophisticated enough tests to catch that.

Replies from: nshepperd
comment by nshepperd · 2013-07-10T04:05:09.658Z · LW(p) · GW(p)

Oh well. I don't think I would have won anyway. The problem seems to be that the REPL behaves very differently to non-REPL contexts, which I certainly wasn't expecting. Actually, it looks like eval in the REPL uses the REPL namespace as a default (so for example you can type (eval '(define a 2)) (write a) and see a 2 printed out) which seems rather unconscionable to me¹, especially since the REPL namespace includes a boatload of miscellaneous modules such as racket/pretty and racket/function and probably others as well.

Possibly next time it would be useful to publish a "test harness" ahead of time which runs contestants against each other in a clean (or at least well-specified) namespace, and make it clear that the actual contest would be run using this code.

¹ Actually, now that I've noticed this, it looks like you could use this to write a bot that corrupts the global (REPL) namespace, and therefore the namespace of anyone trying to simulate it, maybe even forcing the opponent to cooperate by rewriting if or something. Ha!

Replies from: None
comment by [deleted] · 2013-07-10T09:50:53.290Z · LW(p) · GW(p)

Actually, now that I've noticed this, it looks like you could use this to write a bot that corrupts the global (REPL) namespace, and therefore the namespace of anyone trying to simulate it, maybe even forcing the opponent to cooperate by rewriting if or something. Ha!

I did look briefly for ways of forcing a bot running my program as a simulation to cooperate, but that sort of thing needs way too much knowledge of the programming environment for me to have a hope of succeeding.

An early attempt I had for a bot tried to save state between simulations inside the RNG seed, but that didn't work out either...

comment by Kawoomba · 2013-07-09T06:58:44.851Z · LW(p) · GW(p)

If only THE BLACK KNIGHT had won the tournament, I would've revealed my identity then. This way, the identity of THE BLACK KNIGHT shalt forevermore remain a mystery. Giddyup!

In more seriousness though, how could this happen, being worse than random? Just lacking a clause filtering for the string 'random' (that could be exploitable, too), or alternatively, not simulating the opponent, say, 10 times, then going with the majority behavior if there is one, and if there's not (6-5, 5-5, 4-6), treating the opponent as randombot. Won't filter all randombots, of course. Also won't explain why another entry didn't beat out most of the rest of the pack, so as to become impervious to the few detrimental results against the minority of randombots. In conclusion, what happened Ani?

comment by Richard_Kennaway · 2013-07-13T09:37:50.083Z · LW(p) · GW(p)

Given Rice's theorem, there is no source code analysis that is guaranteed to tell you anything interesting about your opponent, unless your opponent has been written in such a way as to facilitate that analysis. This suggests two possible modifications of the competition.

Firstly, the rule could be imposed that source code is unanalysable. A competing program will not be furnished with its opponent's source, but only an opaque blob. The only operation they can perform on this blob is to supply it with another blob and see what answer it gives. Each program is given access to itself (as an opaque blob), and can contain within itself whatever other blobs it wishes to use for probing purposes. Note that if every program begins a contest by running its opponent on some example, then no-one terminates and everyone loses. Therefore a program must sometimes make a decision without having run its opponent on any examples. This looks like it severely limits the usefulness of simulating the opponent to see what it will do, perhaps to the point where it is impossible to gain anything from it, and the competition reduces to an ordinary PD tournament.

Alternatively, source code would be revealed, but in addition each program would be allowed to furnish machine-checkable proofs of assertions about itself. The machine checking would be part of the infrastructure of the competition, so competitors would be able to have complete trust in these assertions.

Or one could combine these: one receives one's opponent as an unanalysable blob together with some set of guaranteed true assertions about it, supplied by the creator of that program and verified by the competition infrastructure. The idea is that skill at analysing someone's source code is secondary to the point of the exercise.

What verifiably true assertions would it be useful for a competitor to make about itself? It would be easy to write code of which it can be proved "I always cooperate", "I always defect", "I play Tit For Tat", or any of the other ordinary PD strategies. What verifiable assertions can a program make about the sort of opponent it will cooperate or defect with? "I will cooperate with anyone who cooperates with me" would not be an admissible assertion (by Rice's theorem). Nor would "I will cooperate with anyone who verifiably asserts that they cooperate with me". But "I will cooperate with anyone who verifiably asserts that they cooperate with anyone verifiably asserting this sentence" might be, if the circularity can be handled.

ETA: But "I will cooperate with anyone who verifiably asserts that they cooperate with anyone verifiably asserting a sentence logically equivalent to this one" won't work. So there would have to be a negotiation phase before the competition in which people publish the assertions they want to make about themselves, so that people can coordinate to agree on the exact formualtion of the mutually referential sentences they want to be seen to be true of them.

Replies from: Richard_Kennaway, skepsci
comment by Richard_Kennaway · 2013-07-13T21:19:05.914Z · LW(p) · GW(p)

Thinking about this further, given enough assertions, there's no need to have the programs at all. Let the agents be just the assertions that they make about themselves. Each agent would consist of a set of axioms, perhaps written in Prolog, about who they cooperate or defect against, and running a contest between two agents would just be a matter of taking the union of the two sets of axioms and attempting to deduce (by the standard Prolog proof-search) what choice each one makes.

Replies from: skepsci
comment by skepsci · 2013-07-14T05:10:51.604Z · LW(p) · GW(p)

What happens if the two sets of axioms are individually consistent, but together are inconsistent?

Replies from: Richard_Kennaway
comment by Richard_Kennaway · 2013-07-14T07:40:34.293Z · LW(p) · GW(p)

Deem both of the agents to have not terminated?

Replies from: skepsci
comment by skepsci · 2013-07-14T14:21:55.541Z · LW(p) · GW(p)

How will you know? The set of consistent axiom systems is undecidable. (Though the set of inconsistent axioms systems is computably enumerable.)

Replies from: Richard_Kennaway
comment by Richard_Kennaway · 2013-07-14T17:50:39.240Z · LW(p) · GW(p)

You just run the Prolog (or whatever logic system implements all this), and it either terminates with a failure or does not terminate within the time allowed by the competition. The time limit renders everything practically decidable.

Replies from: skepsci
comment by skepsci · 2013-07-15T05:14:34.440Z · LW(p) · GW(p)

Perhaps it terminates in the time required proving that A defects and B cooperates, even though the axioms were inconsistent, and one could also have proved that A cooperates and B defects.

Replies from: Richard_Kennaway
comment by Richard_Kennaway · 2013-07-15T06:13:29.275Z · LW(p) · GW(p)

The competitors know the deterministic proof-search algorithm (e.g. that of Prolog), and the first answer that produces within the time limit, that is the answer.

comment by skepsci · 2013-07-13T20:04:43.038Z · LW(p) · GW(p)

What's wrong with "I will cooperate with anyone who verifiably asserts that they cooperate with me". A program could verifiably assert that by being, e.g., cooperatebot. A program could be written that cooperates with any opponent that provides it with a proof that it will cooperate.

Replies from: Richard_Kennaway
comment by Richard_Kennaway · 2013-07-13T21:13:30.045Z · LW(p) · GW(p)

What's wrong with "I will cooperate with anyone who verifiably asserts that they cooperate with me".

The word "me". By Rice's theorem, they can't tell that they're dealing with someone computationally equivalent to me, and there's no other sense of my "identity" that can be referred to.

Athough that could be added. Have all competitors choose a unique name and allow them to verifiably claim to be the owner of their name. Then "I will cooperate with anyone who verifiably asserts that they cooperate with me" can work if "me" is understood to mean "the entity with my name". Discovering a blob's name would have to be a second primitive operation allowed on blobs.

ETA: I think I missed your point a little. Yes, a cooperate-bot verifiably asserts that it cooperates with everyone, so it is an entity that "verifiably asserts (something that implies) that they will cooperate with me." And there will be other bots of which this is true. But I'm not sure that I can verifiably express that I will cooperate with the class of all such bots, because "the class of all such bots" looks undecidable.

Replies from: skepsci
comment by skepsci · 2013-07-14T04:57:43.862Z · LW(p) · GW(p)

Your source code is your name. Having an additional name would be irrelevant. It is certainly possible for bots to prove they cooperate with a given bot, by looking at that particular bot's source. It would, as you say, be much harder for a bot to prove it cooperates with every bot equivalent to a given bot (in the sense of making the same cooperate/defect decisions vs. every opponent).

Rice's theorem may not be as much of an obstruction as you seem to indicate. For example, Rice's theorem doesn't prohibit a bot which proves that it defects against all defectbots, and cooperates with all cooperatebots. Indeed, you can construct an example of such a bot. (Rice's theorem would, however, prevent constructing a bot which cooperates with cooperatebots and defects against everyone else.)

comment by aphyer · 2013-07-11T04:17:18.026Z · LW(p) · GW(p)

Sorry if this is a stupid question, but this tournament looked to me like a thinly disguised version of:

"Construct a robot that can read code and interpret what it means."

which is a Really Hard Problem.

Is that not a fair description? Was there some other way to approach the problem?

The only way I can see to go about constructing a GOOD entrant to this is to write something that can take as its input the code of the opponent and interpret what it will actually DO, that can recognize the equivalence between (say):

return DEFECT

and

if 1: return DEFECT return COOPERATE

and can interpret things like:

if opp_code == my_code return COOPERATE return DEFECT

And I have no idea how to go about doing that. From the fact that the winning entrants were all random, it seems safe to say that no entrants had any idea how to go about doing that either.

Am I missing something here?

Replies from: selbram, olalonde
comment by selbram · 2013-07-11T04:48:37.570Z · LW(p) · GW(p)

One good way to interpret code is to run the code with "eval", which many submitted bots did. This method has no problems with the examples you gave. One important place it breaks down is with bots that behave randomly. In that case a robot may, by chance, be simulated to cooperate and defect in whatever sequence would make it seem worth cooperating with even if it actually ends up defecting. This, combined with a little luck, made the random bots come out ahead. There are ways to get around this problem, and a few bots did so, but they still didn't do better random bots because they had less potential for exploitation in this particular pool of entrants.

Replies from: BloodyShrimp
comment by BloodyShrimp · 2013-07-11T06:49:30.339Z · LW(p) · GW(p)

I agree, my fellow top-ranking-non-source-ignoring player. Saying "nobody could do any better than randomness in this tournament" is strictly true but a bit misleading; the tiny, defect-happy pool with almost 20% random players (the top 3 and also G; he just obfuscated his somewhat) didn't provide a very favorable structure for more intelligent bots to intelligently navigate, but there was still certainly some navigation.

I'm pretty pleased with how my bot performed; it never got deterministically CD'd and most of its nonrandom mutual defections were against bots who had some unusual trigger condition for defecting based on source composition, not performance, or had very confused performance triggers (e.g. O--why would you want to play your opponent's anti-defectbot move when you determine they cooperate with cooperatebot?). Some of its mutual defections were certainly due to my detect-size-changes exploit, but so were its many DCs.

comment by olalonde · 2013-09-15T10:43:22.607Z · LW(p) · GW(p)

Perfect simulation is not only really hard, it has been proven to be impossible. See http://en.wikipedia.org/wiki/Halting_problem

comment by Sniffnoy · 2013-07-13T05:39:46.229Z · LW(p) · GW(p)

Some notes I've made on the entries:

(Note, this is largely from the perspective of "I want to write a bot that works by doing lots of static analysis to the other bots", since I was working on such a bot. In fact I can see now that the idea I had in mind didn't actually make sense, but, oh well, I have an idea for how to fix it for the next contest...)

  • Mutation: Three of the bots -- K, L, and R -- used mutation. N and P used a function "namespace-set-variable-value!"; not sure what that does so I'm not sure if it's really mutating things in context. Nonetheless, point is, I might have to deal with mutation next time around. (Or I can just decide "mutation is defection". That might be appropriate.)
  • Do loops: Nobody use do loops... but L used a for loop, which isn't even standard Scheme, IINM. My program totally would have choked on that. (I had just planned on counting do loops as a defection, meanwhile...)
  • Syntax redefinition: Thankfully, nobody did this. As for whether my (ultimately empty) declaration that I'd consider such a defection had anything to do with this, I don't know.
  • Fine-grained randomness: One program, K, called random with no argument; no program called random with an argument higher than 100. (If I can actually get this thing working for the next contest, btw, I entirely intend to count calling random without an argument as a defection, as well as with an argument more than about 1000 or so.) K didn't actually need randomness that fine, note; it was just generating a 1-in-100 chance.
  • Multithreading: All four of the "big programs" -- K, N, P, and R -- used this. Unsurprising, seeing as it's the only way to do an apply-with-timeout. I'm kind of surprised Racket doesn't natively provide a function for this, seeing as it provides time-apply already, but unfortunately it doesn't and you can't even use time-apply to build one; you have to use multithreading. P I noticed built such a function themselves, called timeout-exec; I don't know about the others.
  • Other timing things: S slept for 9 seconds, for reasons I don't understand (see wedrifid's and BloodyShrimp's comments about why such a program is a bad idea). It then had some weird conditional involving time, but the conditional could only come out one way, so I'm not sure what's going on there. Just some obfuscation? That seems like a bad idea. (Not related to time, but G also had a weird conditional that could only come out one way. Not sure what's going on there either.)
  • Other threading things: T sleeps, yet doesn't seem to use timing or multithreading anywhere? Is this some subtle "this has an effect if I'm being run in another thread" thing?
  • Quasiquotation: All four of the "big programs" K, N, P, and R used quasiquotation. OK, this is probably not too worthy of note, except writing the quasiquote handler was one of the places I got stuck when writing my program (in retrospect, it was certainly not the biggest problem). I contemplated counting quasiquotes as a defection -- and would have done so had I finished the rest of the program except for that -- but that seemed and now even more so seems unreasonable, especially since my own program was going to use quasiquotes. (Why do quasiquotes exist? Well, OK, I get why they exist. I'd just like to point out that -- if I'm understanding correctly, which I might not be -- quasiquotes are never necessary, and, aside from quoting symbols, neither is quote, because there exists the list function, which is an ordinary function call and I could have handled like an ordinary function call. Oh well. I'll probably take the time to get my quasiquote handler working next time... in fact I think I see how to fix it already...)
  • Delay, force, call/cc: Thankfully noone tried to use any of these! Edit: Similarly with multiple-values stuff.

(I call K, N, P, and R the "big programs" since they were the ones long enough that I didn't take the time to make a detailed analysis of what they do.)

Replies from: BloodyShrimp
comment by BloodyShrimp · 2013-07-13T19:37:37.783Z · LW(p) · GW(p)

In a pool with a sufficient number of close-to-mimicbots, considering use of language features you didn't anticipate or can't handle to be defections seems like a good way to get too many mutual defections to win.

Also, not sure what "mutation" means in context. If you mean "almost quine yourself, but write in a few differences", N did that; I can't think of any other reasonable meanings which N does. I used namespace-set-variable-value! merely so that eval could see my variables; in most lisps I've used in the past I could have omitted it entirely.

Replies from: Sniffnoy
comment by Sniffnoy · 2013-07-13T19:59:08.996Z · LW(p) · GW(p)

By mutation I mean set!, or anything else that can change the value of a variable; things ending in '!'. namespace-set-variable-value! does technically mutate things but looking at the way people actually used it I don't think it would have caused a problem?

Replies from: BloodyShrimp
comment by BloodyShrimp · 2013-07-13T21:03:07.282Z · LW(p) · GW(p)

Ah, mutation in the "mutable state" sense. When I was doing some light experimenting with static analysis in the early days of the contest, I looked for variables storing anything involving eval (or involving another variable storing anything involving eval, etc.), and just treated (sounds like that should be "trought" or something) set! calls as define calls--another chance for a variable to become contaminated with evalness. Could you give an example of a case where set! makes things harder to analyze?

Replies from: Sniffnoy
comment by Sniffnoy · 2013-07-14T02:20:00.678Z · LW(p) · GW(p)

OK. Let me explain what the basic idea of my program was. The idea was to analyze the opponent's program in an attempt to answer the following question: What is the probability that I can affect the outcome of their program? Now that I've thought about this some more, this makes less sense than I initially thought; if there's a second round (and I have time to program something as complicated as this), I'm going to try the rather more sensible "How much I can I affect the probability distribution of their program's output?" But for now let's go with the original idea, even though it doesn't make sense in general.

So the idea was to compute this probability, p, and then cooperate if p>=1/2. (The number 1/2 is not arbitrary and is based on the particular values for T, R, P, and S used. Actually if the numbers were different, there wouldn't be a single p, it would depend on other things, but I'm not going to into that, because this strategy doesn't actually make sense.)

So e.g. the strategy should defect against CooperateBot, DefectBot, and any sort of RandomBot; it would cooperate with (and get defected against by) Watson's entry; it would cooperate with (and get cooperated with) by what So8res called a "rank N MimicBot", so long as N>=2; and it would cooperate with what solipsist called a Mimicbot so long as "cooperate anyway" probability was at most 1/2, otherwise it would defect.

OK. So let's say I'm running my program and it comes up against one of these MimicBots. It gets to a part that looks like

(if (random 100) 'C ((eval opponent) self))

What does it do? Well, it has to check both branches and see that in the first, which occurs with probability 1/100, it can't affect the outcome, and in the second, which occurs with probability 99/100, it can. (Really it's a bit more complicated than that -- how does it get the probabilities? But A. the strategy doesn't actually quite make sense anyway and B. I'm trying to keep this simple.)

Thing is, in order to check both branches, it basically has to (partially) run them. To be honest, "static analysis" is maybe not the best description of what my program was supposed to do -- it wasn't so much "statically analyze the given program", so much as "statically transform it into a different program, and then run that". It has to partially run them so that it's not fooled by conditionals like (if (= 0 1) 'C 'D); it shouldn't take branches that are simply never going to happen.

And that leads to the problem -- suppose instead it were to come to

    (if (random 100) (set! result 'C) (set! result ((eval opponent) self)))

Now running both branches is no longer going to yield a sensible result. I'm not sure what it would yield, but it wouldn't yield anything helpful. It gets worse if instead of being the result, the variable set is some sort of intermediate...

Replies from: BloodyShrimp
comment by BloodyShrimp · 2013-07-14T04:02:48.454Z · LW(p) · GW(p)

I still don't see where set! is relevantly different from define... e.g.

(define result (if (random 100) 'C ((eval opponent) self)))
Replies from: Sniffnoy
comment by Sniffnoy · 2013-07-14T04:16:53.272Z · LW(p) · GW(p)

In this case (notionally), the (transformed) conditional would end up returning a data structure representing "probability 1/100 of always C, probability 99/100 of C or D depending on what I do", and then result would be set to that data structure. The (transformed) define itself doesn't return a value, but that's OK, it's not supposed to, it's just supposed to influence the value of something else.

In the above case, result would first be set to a data structure representing "probability 1 of C" and then to a data structure representing "probability 1 of C or D depending on what I do". Then the (transformed) conditional itself would return something undefined, since the return value of set! is undefined. (And OK, it wasn't supposed to return a value either, but its influence over other parts of the program has been screwed up.)

Basically, my (start of a) program was making the assumption that the return value of a thing was what was important -- or at least that, while side effects might exist, they wouldn't screw things up elsewhere. (With a few exceptions for special side-effecty functions which I intended to handle specially.) But allowing mutation would mean having to write my program to keep track of all of the simulated variables, whereas without it I can just focus on return values and let the Scheme interpreter handle that.

comment by akvadrako · 2013-07-09T08:03:38.739Z · LW(p) · GW(p)

First of all, thanks for running the contest Alex and congrats to the winners.

Random behaviour was obviously a good strategy, but I don't feel it teaches us much about making better bots. If I had suspected so much random behaviour, defecting whenever it's detected would have been a good additional test.

comment by BloodyShrimp · 2013-07-09T06:56:48.548Z · LW(p) · GW(p)

Hmm, three way tie for fourth place.

I thought So8res was trying to set up subtle vulnerabilities for the mimicbot clique to exploit himself! My own exploit (store their size and see if it changes; if so defect, on the assumption that most who change their size will only change it once; play small-n mimicbot so you can induce cooperation on their turn and when the exploit doesn't fire at all) seems to have cut the problem a little cleaner, picking up more nonrandom DCs. I had essentially thought of this exploit in the first few days of the contest, but I had thought it would set me up for a few too many CDs (ended up getting one, but it was random) until So8res posted his tutorial, at which point it seemed like there'd be enough paranoid mimicbotters choosing a random rank on their first move (for example) and leaving the rank-choosing machinery out of their later versions for my exploit to be profitable...

...and instead my DCs were on non-quiney bots which ran simple bot tests, like the one in the contest rules' example. I did anticipate I'd pick these up, but I didn't think there'd be so many of them.

Anyway, this was good fun. Thanks for hosting, AlexMennen, and thanks for playing, everyone else.

comment by MTGandP · 2013-08-06T02:58:35.536Z · LW(p) · GW(p)

Sorry if this was answered somewhere else, but do you plan on hosting another tournament? If so, when?

Replies from: AlexMennen
comment by AlexMennen · 2013-08-06T05:03:19.579Z · LW(p) · GW(p)

Undecided. I was kind of disappointed with the results of this one, but I'm not optimistic that another one would end up any better unless it has a better structure. I plan to run another tournament if I come up with a way to change the rules that would make it easier to submit effective programs, which I have not made any progress on so far. Some people have made suggestions in the comments, but they range from probably not helpful to difficult to implement.

Replies from: MTGandP
comment by MTGandP · 2013-08-06T15:27:04.225Z · LW(p) · GW(p)

Would-be submitters have a lot more information going forward. In particular: if you want to win, you have to be able to beat a random bot.

comment by Gurkenglas · 2013-07-24T15:48:13.173Z · LW(p) · GW(p)

COUNTIF could have made that xls document work without the third and fourth table.

comment by Sniffnoy · 2013-07-19T03:32:53.299Z · LW(p) · GW(p)

One more question about rules for a second contest: Do we want to keep the rule as stated that "Each player will submit a file containing a single Scheme lambda-function. The function should take one input.", or should we relax it to "Each player will submit a file containing a single Scheme expression, that must evaluate to a function taking one input"?

Benefits of the latter: Allows quines to be written less artificially (although, if we switch to the two-argument version, this becomes unimportant), is just generally more flexible.

Benefits of the former: Might allow easier analysis (you can more easily find the variable name your program is being called by -- though it's probably still possible to obfuscate that quite a bit if you want).

comment by Kawoomba · 2013-07-11T07:16:33.453Z · LW(p) · GW(p)

-

comment by wubbles · 2013-07-10T00:46:39.523Z · LW(p) · GW(p)

I would have expected a few more metaevaluator bots which clean up the environment to prevent detection. Of course this can be an expensive strategy, and certainly is in programmer time. A metaevaluator bot would have probably broken several recursion detection strategies, or even defining set! out of the language.