Would Like to Design a Go AI. Server with API?
Would Like to Design a Go AI. Server with API?
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.
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.
- HermanHiddema
- Gosei
- Posts: 2011
- Joined: Tue Apr 20, 2010 10:08 am
- Rank: Dutch 4D
- GD Posts: 645
- Universal go server handle: herminator
- Location: Groningen, NL
- Has thanked: 202 times
- Been thanked: 1086 times
Re: Would Like to Design a Go AI. Server with API?
Check out the Go Text Protocol (GTP):
http://senseis.xmp.net/?GTP
http://www.lysator.liu.se/~gunnar/gtp/
http://senseis.xmp.net/?GTP
http://www.lysator.liu.se/~gunnar/gtp/
- oren
- Oza
- Posts: 2777
- Joined: Sun Apr 18, 2010 5:54 pm
- GD Posts: 0
- KGS: oren
- Tygem: oren740, orenl
- IGS: oren
- Wbaduk: oren
- Location: Seattle, WA
- Has thanked: 251 times
- Been thanked: 549 times
Re: Would Like to Design a Go AI. Server with API?
For running on KGS...
http://senseis.xmp.net/?KgsGtp
For searching, try "go game". Usually works to make the search more useful.
http://senseis.xmp.net/?KgsGtp
For searching, try "go game". Usually works to make the search more useful.
Re: Would Like to Design a Go AI. Server with API?
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?
- oren
- Oza
- Posts: 2777
- Joined: Sun Apr 18, 2010 5:54 pm
- GD Posts: 0
- KGS: oren
- Tygem: oren740, orenl
- IGS: oren
- Wbaduk: oren
- Location: Seattle, WA
- Has thanked: 251 times
- Been thanked: 549 times
Re: Would Like to Design a Go AI. Server with API?
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.
- HermanHiddema
- Gosei
- Posts: 2011
- Joined: Tue Apr 20, 2010 10:08 am
- Rank: Dutch 4D
- GD Posts: 645
- Universal go server handle: herminator
- Location: Groningen, NL
- Has thanked: 202 times
- Been thanked: 1086 times
- oren
- Oza
- Posts: 2777
- Joined: Sun Apr 18, 2010 5:54 pm
- GD Posts: 0
- KGS: oren
- Tygem: oren740, orenl
- IGS: oren
- Wbaduk: oren
- Location: Seattle, WA
- Has thanked: 251 times
- Been thanked: 549 times
Re: Would Like to Design a Go AI. Server with API?
I was about to add this as well...
http://www.computer-go.jp/index.html
Unfortunately 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.
http://www.computer-go.jp/index.html
Unfortunately 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?
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!
-
jimmy
- Beginner
- Posts: 5
- Joined: Sun Jan 18, 2015 6:19 am
- Rank: 3d
- GD Posts: 0
- Has thanked: 1 time
- Been thanked: 1 time
Re: Would Like to Design a Go AI. Server with API?
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?
- oren
- Oza
- Posts: 2777
- Joined: Sun Apr 18, 2010 5:54 pm
- GD Posts: 0
- KGS: oren
- Tygem: oren740, orenl
- IGS: oren
- Wbaduk: oren
- Location: Seattle, WA
- Has thanked: 251 times
- Been thanked: 549 times
Re: Would Like to Design a Go AI. Server with API?
jimmy wrote:oren wrote:
Support this too. Does KGS have public API?
Look at the link for kgsgtp.
-
jug
- Dies with sente
- Posts: 75
- Joined: Sun Oct 20, 2013 5:37 am
- Rank: EGF 5k
- GD Posts: 0
- KGS: jug
- DGS: jug, 4k
- Has thanked: 7 times
- Been thanked: 18 times
Re: Would Like to Design a Go AI. Server with API?
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).
-
jimmy
- Beginner
- Posts: 5
- Joined: Sun Jan 18, 2015 6:19 am
- Rank: 3d
- GD Posts: 0
- Has thanked: 1 time
- Been thanked: 1 time
Re: Would Like to Design a Go AI. Server with API?
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.