rooklift
rooklift
> "stopped, halt, null" This would typically suggest Lc0 didn't launch at all. My first guess would be that the location of lc0 changed on your system? If so, you'd...
It's quite mysterious. If you open Leela by double clicking it in Windows, and type in `go infinite`, does it run? One thing you could try is enabling Nibbler's logfile...
I don't know what to suggest, it's rather mysterious.
If you just want to get an opponent for beginners, one of the very early KataGo networks might work.
Here's a convenient SGF ``` (;GM[1]FF[4]CA[UTF-8]KM[6.5]SZ[19]RU[Japanese] ;B[pp];W[dd];B[dp];W[pd];B[qc];W[qd];B[pc];W[od];B[nb];W[qq];B[qp];W[pq];B[nq];W[oq];B[op];W[nr];B[qh];W[oh] ;B[pj];W[rc];B[rb];W[ob];B[rd];W[oc];B[kc];W[ic];B[ke];W[kg];B[mf];W[md];B[lh];W[oj];B[re];W[of];B[mc];W[ld] ;B[kd];W[pk];B[hd];W[qf];B[ok];W[qj];B[pi];W[oi];B[fc];W[rf];B[qk];W[pl];B[ql];W[qi];B[pm];W[ol];B[om];W[nl] ;B[ph];W[rh];B[rk];W[rj];B[sj];W[ri];B[cf];W[fd];B[gd];W[ec];B[fe];W[ed];B[fb];W[df];B[dg];W[ff];B[be];W[bd] ;B[eb];W[eg];B[cd];W[cc];B[ce];W[dh];B[cg];W[ge];B[he];W[ee];B[db];W[ch];B[eh];W[fh];B[ei];W[dj];B[fi];W[gh] ;B[gi];W[cl];B[hh];W[hg];B[hf];W[gg];B[de];W[ef];B[bc];W[hi];B[ih];W[ig];B[hj];W[ii];B[jh];W[kh];B[ji];W[ij] ;B[ml];W[km];B[ik];W[jj]TR[nk]C[KataGo struggles to see the triangled move.] (;B[nk];W[nm];B[nn];W[mm];B[lm];W[mn];B[kj];W[jk];B[jl];W[kk];B[lk];W[kl];B[kn];W[ki];B[mo]) (;B[ki])) ```
Perhaps, I don't recall how it used to be.
My problem is that pressing right repeatedly will eventually take you to some non-direct-sibling if such exist. The implementation I suggested was just an example and of course is open...
The issue I guess is around [here](https://github.com/SabakiHQ/Sabaki/blob/bec144550cbd9c30219cbb5d43ae57c8efb2fb9b/src/modules/sabaki.js#L1223). If one pulls together the relevant code from across the repos one gets this minimal reproduction of the problem... ```javascript let alpha =...
I guess one can use `flat()` at the end of the statement, so [this line](https://github.com/SabakiHQ/Sabaki/blob/bec144550cbd9c30219cbb5d43ae57c8efb2fb9b/src/modules/sabaki.js#L1233) in `sabaki.js`... ```javascript .reduce((list, x) => [...list, x]) ``` Becomes: ```javascript .flat(Infinity) ``` And this...
Not quite what you asked for, but you could merge them into a single collection file, then navigate through the games in the collection with ctrl+Page Down / ctrl+Page Up...