entering

Jump to navigation Jump to search

And only one more question I added my bot to the participants list and I can see Tomahawk in participants_latest. But I've been waiting for 3 days and I can't see it in the rumble. As I know it takes 1 - 24 hours to get into the roborumble. Is it supposed to be like that???

Dsekercioglu (talk)20:30, 22 August 2016

Were you running a roborumble client? If you do, your bot should show up within 15 minutes or so, but it might be a few hours before you have full pairings against all bots.

Skilgannon (talk)22:41, 22 August 2016

I was running but after the first 45 battles it was just starting to stay

Added Cannon vs Splooshlu in ? ms

I couldn't continue

Dsekercioglu (talk)08:14, 23 August 2016

How can I put my flag to the competition. You can find it in this link https://www.dropbox.com/s/srz702xfrsfph8q/TUR?dl=1 Thanks.

Dsekercioglu (talk)17:36, 27 August 2016

I've added TUR as an option, you can add yourself to the RoboRumble/Country Flags page =)

Skilgannon (talk)18:47, 27 August 2016

Thank you very much. Thanks for your help.

Dsekercioglu (talk)20:49, 3 September 2016
 


My bot WhiteFang uses auto-segmentation. Is it a good tactic and are there other robots doing that?

Dsekercioglu (talk)17:59, 4 December 2016
 

I mean that it tries to predict the best segments that could be used against it's enemy.

Dsekercioglu (talk)18:26, 4 December 2016

You do not have permission to edit this page, for the following reasons:

  • The action you have requested is limited to users in the group: Users.
  • You must confirm your email address before editing pages. Please set and validate your email address through your user preferences.

You can view and copy the source of this page.

Return to Thread:Talk:RoboRumble/Enter The Competition/entering/reply (40).

MN thank you. I used all the datas the average hit rate increased like % 0.8. After I added auto-tuning for setting weights and average hit rate increased about %0.9.

Dsekercioglu (talk)21:20, 5 December 2016

The 2 segments which differ most between different opponents are the real/virtual wave segment and the data decay (time) segment. These are the 2 usually separated between "general purpose" and "anti-surfer" sets of segments.

Note that using many different targeting strategies for different situations may slow down learning speed (time wasted auto-tuning the gun for the optimal strategy). Because of this, most top bots use only 1 or 2 guns.

MN (talk)23:30, 5 December 2016

I don't create a new gun and start it from the beginning. I test the segments alone and when they hit I multiply it with a default. So it keeps learning and uses the same kd-tree all the time. Also according to my results it increases learning.

This is the code of Tuning:(There are more code for intersection but the most simple one is this)

           if (Tools.getDistance(currentX, currentY, myXD, myYD) < 72) {
               AntiBotTuner.movementScores[index] *= 1.1;
           }

Usage of weights:

double diff = Math.abs(p1[index] - p2[index]) * dsekercioglu.AntiBotTuner.movementScores[i];

In the future versions I will also use an Anti-Surfer Gun.

Dsekercioglu (talk)16:26, 6 December 2016