Ya Tienna
Ya Tienna
@michito744 I can understand your three positions in 30sec... It seems like a beginner's level, and it is far from the original game played by Ichiriki Ryo... [__go4go_20220121_Ichiriki-Ryo_Iyama-Yuta.sgf.txt](https://github.com/lightvector/KataGo/files/8121051/__go4go_20220121_Ichiriki-Ryo_Iyama-Yuta.sgf.txt) Yes, AIs...
The day before yesterday, I cant use Plots-GR-bcakend because of "couldnt load libGR.dll", but I could use it yesterday! You can just download GR-runtime by hand to try if everything...
Maybe you can use `nothing` to jump over the `inf`? [ref](https://plotly.com/julia/reference/scatter/#scatter-connectgaps)
Thank you a lot! 😆
I guess you want to modify game tree in a stand alone gui window. Right? @Lilithh
As far as I know, it is a basic feature of [GoTextProtocol](https://www.lysator.liu.se/~gunnar/gtp/gtp2-spec-draft2/gtp2-spec.html) to load a position from a sgf file by a movenumber: 6.3.5 Regression Commands loadsgf arguments | filename...
You will need to embed the custom loadsgf() into a tiny gtp wrap, e.g. instead `path/to/gnugo --mode gtp`, use `python path/to/script.py` in the Sabaki's menu:  I find a relevant...
It is very easy to implement a GTP Wrap. Here is an example written in Julia, a new language similar to Python: ```julia katagoCommand=`./katago gtp -config gtp_custom.cfg -model b6/model.txt.gz` katagoProcess=open(katagoCommand,"r+")...
@atw1020 @jcguu95 Well, in my view, you complicate this issue. Yeah, GTP is only a standard, it is not GTP but GTP engines/controllers do the implementing. **So that either controllers...
In details: > user -> `loadsgf node` -> gui -> controller -> loadsgf(node) -> `loadsgf move_number` -> engine -> `target position` -> controller -> gui -> user Just fill some...