Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Hideki Kato
Hi Erik, My program is very based on MoGo's report and the paper. Yes, I used FPU of 1.15. -Hideki Erik van der Werf: <[EMAIL PROTECTED]>: >Hi Hideki, > >Your results look similar to those of Mogo as reported in their icml >paper. When you ran this experiment, did you use anything like FPU or

Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Sylvain Gelly
Hi Erik, > In the ICML version of UCT without RAVE, you did not use your First > Play Urgency, right? > > I think that using FPU has an effect similar to what others reported > with their progressive widening. From what I've seen it looks like > plain UCT, without FPU or progressive widening, has

Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Erik van der Werf
Hi Hideki, Your results look similar to those of Mogo as reported in their icml paper. When you ran this experiment, did you use anything like FPU or progressive widening, or did you use Levente's original design which always selects unvisited moves first? Regards, Erik On Wed, Feb 6, 2008 at 3

Re: [computer-go] cgosview on iPhone?

2008-02-06 Thread Christoph Birk
On Wed, 6 Feb 2008, Mark Boon wrote: At the moment it's not possible to develop iPhone applications. An SDK comes out this months and we have to wait and see what it supports. http://developer.apple.com/iphone/devcenter/ Christoph ___ computer-go ma

Re: [computer-go] Is Rémi correct?

2008-02-06 Thread Weston Markham
I know that other people have mentioned this sort of thing already, but the result of level 8 being better than level 10 matches my own experience with slightly older versions of gnugo. As I recall, 8 was the best, 9 a little worse, and 10 worse again. Increasing the level seems to improve play a

Re: [computer-go] cgosview on iPhone?

2008-02-06 Thread terry mcintyre
I googled up the screensize: 480x320 pixels, or the reverse, depending on the orientation of the screen. Terry McIntyre <[EMAIL PROTECTED]> “Wherever is found what is called a paternal government, there is found state education. It has been discovered that the best way to insure implicit obed

Re: [computer-go] cgosview on iPhone?

2008-02-06 Thread Jason House
On Feb 6, 2008 3:39 PM, Don Dailey <[EMAIL PROTECTED]> wrote: > I asked that question wrong - what is the resolution of the screen? > Does it scroll to simulate higher resolution? Poking around online, I see 480x320. The web browser allows a zoom/unzoom and also scrolling... Two nice ways to

Re: [computer-go] cgosview on iPhone?

2008-02-06 Thread Don Dailey
I'm a palm fan and palm is working on linux devices now. My face is turning purple from holding my breath. - Don Mark Boon wrote: > At the moment it's not possible to develop iPhone applications. An SDK > comes out this months and we have to wait and see what it supports. > > Mark > > On 6-feb

Re: [computer-go] cgosview on iPhone?

2008-02-06 Thread Mark Boon
At the moment it's not possible to develop iPhone applications. An SDK comes out this months and we have to wait and see what it supports. Mark On 6-feb-08, at 18:21, Don Dailey wrote: Jason House wrote: Just curious if anyone knows if this is possible. cgosView has a mac (universal) bin

Re: [computer-go] cgosview on iPhone?

2008-02-06 Thread Don Dailey
I asked that question wrong - what is the resolution of the screen? Does it scroll to simulate higher resolution? - Don Jason House wrote: > > On Feb 6, 2008 3:21 PM, Don Dailey <[EMAIL PROTECTED] > > wrote: > > What is the screen size? > > > 2x3.5 inches? I'm

Re: [computer-go] cgosview on iPhone?

2008-02-06 Thread Jason House
On Feb 6, 2008 3:21 PM, Don Dailey <[EMAIL PROTECTED]> wrote: > What is the screen size? 2x3.5 inches? I'm unsure about the 2... ___ computer-go mailing list computer-go@computer-go.org http://www.computer-go.org/mailman/listinfo/computer-go/

Re: [computer-go] cgosview on iPhone?

2008-02-06 Thread Don Dailey
Jason House wrote: > Just curious if anyone knows if this is possible. cgosView has a mac > (universal) binary that I'd expect to be runnable. I just don't know > if the iPhone is restricted or has any other special requirements. I > believe it runs Mac OSXI may have an iPhone in my future and

[computer-go] cgosview on iPhone?

2008-02-06 Thread Jason House
Just curious if anyone knows if this is possible. cgosView has a mac (universal) binary that I'd expect to be runnable. I just don't know if the iPhone is restricted or has any other special requirements. I believe it runs Mac OSXI may have an iPhone in my future and it'd be cool if I could put

[computer-go] bayelo ELO ratings

2008-02-06 Thread Don Dailey
If anyone is interested, I adapted the bayeselo program to GO. bayeselo can take pgn chess files and rate the players. The problem with bayeselo for go is: 1. Rémi's program is interactive - not command line parameter driven. So it's not easy to use inside of scripts. 2. It doesn't un

Re: [computer-go] Is Rémi correct?

2008-02-06 Thread Don Dailey
Here is an update from the new 1000 game test using gungo at level 8 instead of 10. Rank Name Elo+- games score oppo. draws 1 Gnugo-3.7.11 1800 34 30 2186 97% 11370% 2 Mogo_03 1507 48 56 186 16% 18000% 3 Mogo_02 1202 43 51 1000

Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Hideki Kato
Gian-Carlo Pascutto: <[EMAIL PROTECTED]>: >Hideki Kato wrote: > >> 4) Before back-propagating the value of each playout, I setup a color >> table for all intersections of the board for speed-up, in fact >> (initialized with EMPTY). That is, fill the board (table[move] = >> color) by tracing the

Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Jason House
On Feb 6, 2008 11:39 AM, Gian-Carlo Pascutto <[EMAIL PROTECTED]> wrote: > Hideki Kato wrote: > > > 4) Before back-propagating the value of each playout, I setup a color > > table for all intersections of the board for speed-up, in fact > > (initialized with EMPTY). That is, fill the board (table[m

Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Gian-Carlo Pascutto
Hideki Kato wrote: 4) Before back-propagating the value of each playout, I setup a color table for all intersections of the board for speed-up, in fact (initialized with EMPTY). That is, fill the board (table[move] = color) by tracing the moves and the colors returned by the playout forward (

Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Erik van der Werf
Hi Sylvain, On Wed, Feb 6, 2008 at 4:41 PM, Sylvain Gelly <[EMAIL PROTECTED]> wrote: > Do you want to come? ;) Well, I have a nice job, but one can always try to make me an offer I can't refuse ;-) > I just can't do too many things at the same time. Sounds familiar... > > Well, since you sa

Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Sylvain Gelly
Hi Erik, > Thanks for your reply! How do you like your new job? Do you miss CompGo? ;-) I like it very much thanks. Do you want to come? ;). I miss computer go and all of you, but I read the list (not all) time to time, so I have some remembers :). I just can't do too many things at the same time.

Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Hideki Kato
I found some data. GGMC Go v2r6, against GNU Go 3.7.10 level 10, 9x9, komi 7.5, 3000 playouts/move, 2000 games match: Without RAVE: winning rate was 23.1 +- 0.9% (-209 +- 9 ELO) With RAVE: winning rate was 65.3 +- 1.1% (+110 +- 8 ELO) Though this includes some other improvements, most co

Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Erik van der Werf
Hi Sylvain, Thanks for your reply! How do you like your new job? Do you miss CompGo? ;-) On Wed, Feb 6, 2008 at 2:20 PM, Sylvain Gelly <[EMAIL PROTECTED]> wrote: > > (1) They compared Rave to plain UCT. If they would have compared it to > > a more sophisticated implementation (like the best Mo

Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Sylvain Gelly
Hi Erik, > (1) They compared Rave to plain UCT. If they would have compared it to > a more sophisticated implementation (like the best Mogo before Rave) > they probably could not have shown a spectacular improvement. The best Mogo before Rave was very close to plain UCT with the sequence-like sim

Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Erik van der Werf
Hi Guillaume, I think we talked about this before, but others may be interested as well. In my opinion the ICML paper on Rave has several weaknesses. It's been a while since I read the paper, but here are some I remember: (1) They compared Rave to plain UCT. If they would have compared it to a mo

Re: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Hideki Kato
You are right. I don't do progressive widening. -Hideki Gian-Carlo Pascutto: <[EMAIL PROTECTED]>: >> I also implemented RAVE in Mango. There was a few points of improvements >> (around 60 Elo points with gnugo as reference), but as much as in the >> paper of Gelly and Silver :( (around 250 Elo p

RE: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Gian-Carlo Pascutto
> I also implemented RAVE in Mango. There was a few points of improvements > (around 60 Elo points with gnugo as reference), but as much as in the > paper of Gelly and Silver :( (around 250 Elo points if I remember well) > > It might be that the effect of RAVE depends a lot on the simulation > stra

RE: [computer-go] More UCT / Monte-Carlo questions (Effect of rave)

2008-02-06 Thread Chaslot G (MICC)
I also implemented RAVE in Mango. There was a few points of improvements (around 60 Elo points with gnugo as reference), but as much as in the paper of Gelly and Silver :( (around 250 Elo points if I remember well) It might be that the effect of RAVE depends a lot on the simulation strategy. In