Page 1 of 1
Would Like to Design a Go AI. Server with API?
Posted: Tue Dec 02, 2014 1:26 pm
by Acumen
Starting to get into go and really enjoying it. I am a programmer and think I would have same fun and learn more about the game by designing an AI.
Is there any server or native program which is easy to interface with or designed specifically for this? A C/C++ API would be great. What are other people doing interface wise?
I've searched but haven't found any resources yet. It has been hard since GO is the name of a programming language and CS:GO is one of the most popular online games.
Re: Would Like to Design a Go AI. Server with API?
Posted: Tue Dec 02, 2014 1:29 pm
by HermanHiddema
Re: Would Like to Design a Go AI. Server with API?
Posted: Tue Dec 02, 2014 1:36 pm
by oren
For running on KGS...
http://senseis.xmp.net/?KgsGtpFor searching, try "go game". Usually works to make the search more useful.
Re: Would Like to Design a Go AI. Server with API?
Posted: Tue Dec 02, 2014 1:49 pm
by Acumen
Ow wow thank you! This is exactly what I am looking for. Happen to know if there are any other forums/good resources for go AI designers or am I in the right place?
Re: Would Like to Design a Go AI. Server with API?
Posted: Tue Dec 02, 2014 1:52 pm
by oren
Acumen wrote:Ow wow thank you! This is exactly what I am looking for. Happen to know if there are any other forums/good resources for go AI designers or am I in the right place?
I suggest getting on KGS and looking at the "Computer Go" room. I think there's more information there.
Re: Would Like to Design a Go AI. Server with API?
Posted: Tue Dec 02, 2014 2:32 pm
by HermanHiddema
Re: Would Like to Design a Go AI. Server with API?
Posted: Tue Dec 02, 2014 2:36 pm
by oren
I was about to add this as well...
http://www.computer-go.jp/index.htmlUnfortunately the english page has fallen out of being updated but you can try Google translate on the Japanese version which is being kept up to date. It was just announced Cho Chikun would play winner of next UEC tournament.
Re: Would Like to Design a Go AI. Server with API?
Posted: Tue Dec 02, 2014 3:14 pm
by Acumen
Oh wow thank you. These links are great! More links in the KGS room and all other sites as well. Plenty of info to digest!
Re: Would Like to Design a Go AI. Server with API?
Posted: Sun Jan 18, 2015 6:39 am
by jimmy
oren wrote:Acumen wrote:Ow wow thank you! This is exactly what I am looking for. Happen to know if there are any other forums/good resources for go AI designers or am I in the right place?
I suggest getting on KGS and looking at the "Computer Go" room. I think there's more information there.
Support this too. Does KGS have public API?
Re: Would Like to Design a Go AI. Server with API?
Posted: Sun Jan 18, 2015 10:05 am
by oren
jimmy wrote:oren wrote:
Support this too. Does KGS have public API?
Look at the link for kgsgtp.
Re: Would Like to Design a Go AI. Server with API?
Posted: Sun Jan 18, 2015 1:22 pm
by jug
If you have an AI ready that implement GTP as interface, you can use
http://senseis.xmp.net/?Gogui to watch the moves graphically (as GoGui "speaks" GTP).
Re: Would Like to Design a Go AI. Server with API?
Posted: Mon Jan 19, 2015 6:17 am
by jimmy
jug wrote:If you have an AI ready that implement GTP as interface, you can use
http://senseis.xmp.net/?Gogui to watch the moves graphically (as GoGui "speaks" GTP).
This sounds interesting.