Page 6 of 12

Re: Database snapshot

Posted: Fri Aug 02, 2019 4:00 pm
by Ferdy
zullil wrote: Fri Aug 02, 2019 2:34 pm
Ferdy wrote: Fri Aug 02, 2019 1:26 pm
Html interface is released at https://github.com/fsmosca/ChessDB-Online-Book

Download the whole thing and open index.html.

Or try it at https://fsmosca.github.io/ChessDB-Online-Book/
Make sure to enable javascript.
Works fine if I download and open index.html. But the version online you've linked to doesn't work for me.

[EDIT] OK, Chrome is saying "Insecure content blocked. This page is trying to load scripts from unauthenticated sources." If I allow Chrome to "load unsafe scripts", then it works.
Same for me, on chrome, I have to press "Load unsafe scripts" when using the github page. But it is fine, most scripts are from chessboardjs, and chessjs, and I have scripts added to probe the online book and show it on the page.

Re: Database snapshot

Posted: Fri Aug 02, 2019 4:31 pm
by noobpwnftw
My API endpoint supports HTTPS, so you could just change the base URL and get rid of the unsafe script warnings.

Re: Database snapshot

Posted: Fri Aug 02, 2019 5:02 pm
by zullil
Ferdy wrote: Fri Aug 02, 2019 3:57 pm
zullil wrote: Fri Aug 02, 2019 3:10 pm How was the "winrate" for each position determined?
I suspect it is logistic function based on score. The score is from
"the scores been back-propagated using a weighted averaging function" see first post of this thread.

In javascipt when winrate is missing (by design) for mate scores, I use

Code: Select all

// 2019-08-02: ChessDB does not return winrate when score is mate.
// So we will calculate winrate by logistic function
if (typeof winrate === "undefined") {
  const K = 1.2;
  winrate = 100 * 1/(1 + (10**(-K*score/400)));
  winrate = winrate.toFixed(2);
}
Even for non-mate scores, this function is close to the winrate from server.
OK, so the winrates are simply determined by the scores; no games are actually played. And all the scores are derived deterministically from the scores of the terminal nodes. And these leaf scores are determined by an engine search.

(1) How many terminal nodes are there in this tree?

(2) How, precisely, was the score determined for each terminal node? Deterministic search (one thread) by Stockfish to depth 22? With or without endgame tables? If with, 7-man?

Re: Database snapshot

Posted: Fri Aug 02, 2019 5:06 pm
by Ferdy
noobpwnftw wrote: Fri Aug 02, 2019 4:31 pm My API endpoint supports HTTPS, so you could just change the base URL and get rid of the unsafe script warnings.
Wow nice it worked thanks.

Re: Database snapshot

Posted: Fri Aug 02, 2019 5:20 pm
by Ferdy
zullil wrote: Fri Aug 02, 2019 5:02 pm
Ferdy wrote: Fri Aug 02, 2019 3:57 pm
zullil wrote: Fri Aug 02, 2019 3:10 pm How was the "winrate" for each position determined?
I suspect it is logistic function based on score. The score is from
"the scores been back-propagated using a weighted averaging function" see first post of this thread.

In javascipt when winrate is missing (by design) for mate scores, I use

Code: Select all

// 2019-08-02: ChessDB does not return winrate when score is mate.
// So we will calculate winrate by logistic function
if (typeof winrate === "undefined") {
  const K = 1.2;
  winrate = 100 * 1/(1 + (10**(-K*score/400)));
  winrate = winrate.toFixed(2);
}
Even for non-mate scores, this function is close to the winrate from server.
OK, so the winrates are simply determined by the scores; no games are actually played. And all the scores are derived deterministically from the scores of the terminal nodes. And these leaf scores are determined by an engine search.

(1) How many terminal nodes are there in this tree?

(2) How, precisely, was the score determined for each terminal node? Deterministic search (one thread) by Stockfish to depth 22? With or without endgame tables? If with, 7-man?
Perhaps noobpwnftw can answer your questions.

Re: Database snapshot

Posted: Fri Aug 02, 2019 5:28 pm
by noobpwnftw
Ferdy wrote: Fri Aug 02, 2019 5:20 pm
zullil wrote: Fri Aug 02, 2019 5:02 pm
Ferdy wrote: Fri Aug 02, 2019 3:57 pm
zullil wrote: Fri Aug 02, 2019 3:10 pm How was the "winrate" for each position determined?
I suspect it is logistic function based on score. The score is from
"the scores been back-propagated using a weighted averaging function" see first post of this thread.

In javascipt when winrate is missing (by design) for mate scores, I use

Code: Select all

// 2019-08-02: ChessDB does not return winrate when score is mate.
// So we will calculate winrate by logistic function
if (typeof winrate === "undefined") {
  const K = 1.2;
  winrate = 100 * 1/(1 + (10**(-K*score/400)));
  winrate = winrate.toFixed(2);
}
Even for non-mate scores, this function is close to the winrate from server.
OK, so the winrates are simply determined by the scores; no games are actually played. And all the scores are derived deterministically from the scores of the terminal nodes. And these leaf scores are determined by an engine search.

(1) How many terminal nodes are there in this tree?

(2) How, precisely, was the score determined for each terminal node? Deterministic search (one thread) by Stockfish to depth 22? With or without endgame tables? If with, 7-man?
Perhaps noobpwnftw can answer your questions.
1. One can iterate the database and find out the exact number.
2. In the code, it is defined as a one thread search to depth 22 by a given version of Stockfish and with contempt = 0, without tablebases and keeps a small hash for recent positions.

Re: Database snapshot

Posted: Fri Aug 02, 2019 5:38 pm
by zullil
noobpwnftw wrote: Fri Aug 02, 2019 5:28 pm
Ferdy wrote: Fri Aug 02, 2019 5:20 pm
zullil wrote: Fri Aug 02, 2019 5:02 pm
Ferdy wrote: Fri Aug 02, 2019 3:57 pm
zullil wrote: Fri Aug 02, 2019 3:10 pm How was the "winrate" for each position determined?
I suspect it is logistic function based on score. The score is from
"the scores been back-propagated using a weighted averaging function" see first post of this thread.

In javascipt when winrate is missing (by design) for mate scores, I use

Code: Select all

// 2019-08-02: ChessDB does not return winrate when score is mate.
// So we will calculate winrate by logistic function
if (typeof winrate === "undefined") {
  const K = 1.2;
  winrate = 100 * 1/(1 + (10**(-K*score/400)));
  winrate = winrate.toFixed(2);
}
Even for non-mate scores, this function is close to the winrate from server.
OK, so the winrates are simply determined by the scores; no games are actually played. And all the scores are derived deterministically from the scores of the terminal nodes. And these leaf scores are determined by an engine search.

(1) How many terminal nodes are there in this tree?

(2) How, precisely, was the score determined for each terminal node? Deterministic search (one thread) by Stockfish to depth 22? With or without endgame tables? If with, 7-man?
Perhaps noobpwnftw can answer your questions.
1. One can iterate the database and find out the exact number.
2. In the code, it is defined as a one thread search to depth 22 by a given version of Stockfish and with contempt = 0, without tablebases and keeps a small hash for recent positions.
Thanks. Nice idea, to automate the creation of an opening book. Unfortunately, depth 22 is way too low to provide a reliable foundation, since most of the leaf positions are quiet and positional in nature.

Re: Database snapshot

Posted: Fri Aug 02, 2019 6:43 pm
by noobpwnftw
zullil wrote: Fri Aug 02, 2019 5:38 pm Thanks. Nice idea, to automate the creation of an opening book. Unfortunately, depth 22 is way too low to provide a reliable foundation, since most of the leaf positions are quiet and positional in nature.
Unfortunately, such a data set which is better in both quality and quantity does not yet exist.
The project code-base is open to process any UCI-compatible electricity tossing, so it shouldn't be too hard to build one given sufficient resources. :D

I have done some experiments with a dumb engine that understands only PSQT, which turns out that despite being very inefficient in the building process, the database eventually converges to similar understanding of chess at root nodes compared to ones built by strong engines.

Re: Database snapshot

Posted: Fri Aug 02, 2019 8:18 pm
by Dann Corbit
Worked for me with chrome.
More fun than a barrel of monkeys.

Re: Database snapshot

Posted: Fri Aug 02, 2019 11:53 pm
by noobpwnftw
Ferdy wrote: Fri Aug 02, 2019 3:57 pm
zullil wrote: Fri Aug 02, 2019 3:10 pm How was the "winrate" for each position determined?
I suspect it is logistic function based on score. The score is from
"the scores been back-propagated using a weighted averaging function" see first post of this thread.

In javascipt when winrate is missing (by design) for mate scores, I use

Code: Select all

// 2019-08-02: ChessDB does not return winrate when score is mate.
// So we will calculate winrate by logistic function
if (typeof winrate === "undefined") {
  const K = 1.2;
  winrate = 100 * 1/(1 + (10**(-K*score/400)));
  winrate = winrate.toFixed(2);
}
Even for non-mate scores, this function is close to the winrate from server.
The exact algorithm used in the calculation of winrate from score is as follows:
https://github.com/noobpwnftw/chessdb/b ... hp#L84-L86

I personally think that in cases where the outcome is known, showing a percentage of winning rate makes no sense.