Stockfish
Re: Stockfish
Author: Shahin M. Shahin
Date: Sat Dec 30 12:19:48 2023 +0100
Timestamp: 1703935188
Fix scores from reverse futility pruning
This fixes futility pruning return values after recent tweaks, `eval` is
guaranteed to be less than the mate-in range but it can be as low value such
that the average between eval and beta can still fall in the mated-in range when
beta is as low in mated range. i.e. (eval + beta) / 2 being at mated-range which
can break mates.
Passed non-regression STC:
https://tests.stockfishchess.org/tests/ ... f82b955139
LLR: 2.94 (-2.94,2.94) <-1.75,0.25>
Total: 117408 W: 29891 L: 29761 D: 57756 Elo +0.38
Ptnml(0-2): 386, 13355, 31120, 13429, 414
Passed non-regression LTC:
https://tests.stockfishchess.org/tests/ ... f82b9557bd
LLR: 2.94 (-2.94,2.94) <-1.75,0.25>
Total: 60240 W: 14962 L: 14786 D: 30492 Elo +1.02
Ptnml(0-2): 22, 6257, 17390, 6425, 26
changes signature at higher depth e.g. `128 1 15`
closes https://github.com/official-stockfish/S ... /pull/4944
Bench: 1304666
https://abrok.eu/stockfish/
Date: Sat Dec 30 12:19:48 2023 +0100
Timestamp: 1703935188
Fix scores from reverse futility pruning
This fixes futility pruning return values after recent tweaks, `eval` is
guaranteed to be less than the mate-in range but it can be as low value such
that the average between eval and beta can still fall in the mated-in range when
beta is as low in mated range. i.e. (eval + beta) / 2 being at mated-range which
can break mates.
Passed non-regression STC:
https://tests.stockfishchess.org/tests/ ... f82b955139
LLR: 2.94 (-2.94,2.94) <-1.75,0.25>
Total: 117408 W: 29891 L: 29761 D: 57756 Elo +0.38
Ptnml(0-2): 386, 13355, 31120, 13429, 414
Passed non-regression LTC:
https://tests.stockfishchess.org/tests/ ... f82b9557bd
LLR: 2.94 (-2.94,2.94) <-1.75,0.25>
Total: 60240 W: 14962 L: 14786 D: 30492 Elo +1.02
Ptnml(0-2): 22, 6257, 17390, 6425, 26
changes signature at higher depth e.g. `128 1 15`
closes https://github.com/official-stockfish/S ... /pull/4944
Bench: 1304666
https://abrok.eu/stockfish/
Re: Stockfish
Author: Stefan Geschwentner
Date: Sun Dec 31 20:09:09 2023 +0100
Timestamp: 1704049749
Tweak static eval history update
Modify the applied static eval bonus for main and pawn history with different
factors for positive and negative values.
Passed STC:
https://tests.stockfishchess.org/tests/ ... f82b957bb0
LLR: 2.93 (-2.94,2.94) <0.00,2.00>
Total: 12512 W: 3308 L: 3027 D: 6177 Elo +7.80
Ptnml(0-2): 32, 1372, 3189, 1609, 54
Passed LTC:
https://tests.stockfishchess.org/tests/ ... f82b957cd2
LLR: 2.94 (-2.94,2.94) <0.50,2.50>
Total: 35946 W: 9128 L: 8809 D: 18009 Elo +3.08
Ptnml(0-2): 19, 3879, 9862, 4190, 23
closes https://github.com/official-stockfish/S ... /pull/4952
Bench: 1392883
https://abrok.eu/stockfish/
Date: Sun Dec 31 20:09:09 2023 +0100
Timestamp: 1704049749
Tweak static eval history update
Modify the applied static eval bonus for main and pawn history with different
factors for positive and negative values.
Passed STC:
https://tests.stockfishchess.org/tests/ ... f82b957bb0
LLR: 2.93 (-2.94,2.94) <0.00,2.00>
Total: 12512 W: 3308 L: 3027 D: 6177 Elo +7.80
Ptnml(0-2): 32, 1372, 3189, 1609, 54
Passed LTC:
https://tests.stockfishchess.org/tests/ ... f82b957cd2
LLR: 2.94 (-2.94,2.94) <0.50,2.50>
Total: 35946 W: 9128 L: 8809 D: 18009 Elo +3.08
Ptnml(0-2): 19, 3879, 9862, 4190, 23
closes https://github.com/official-stockfish/S ... /pull/4952
Bench: 1392883
https://abrok.eu/stockfish/
Re: Stockfish
Author: Disservin
Date: Mon Jan 1 02:31:25 2024 +0100
Timestamp: 1704072685
Fix formatting in search.cpp
fixes the formatting for 1fe562fdf32c153f82929660197f8b97469f76b4
https://abrok.eu/stockfish/
Date: Mon Jan 1 02:31:25 2024 +0100
Timestamp: 1704072685
Fix formatting in search.cpp
fixes the formatting for 1fe562fdf32c153f82929660197f8b97469f76b4
https://abrok.eu/stockfish/
Re: Stockfish
Author: FauziAkram
Date: Thu Jan 4 15:56:53 2024 +0100
Timestamp: 1704380213
Remove redundant int cast
Remove a redundant int cast in the calculation of fwdOut. The variable
OutputType is already defined as std::int32_t, which is an integer type, making
the cast unnecessary.
closes https://github.com/official-stockfish/S ... /pull/4961
No functional change
https://abrok.eu/stockfish/
note: On Thursday January 4th we had 9 releases , some of them showed progress in ELO , above is the last one of those releases.
Date: Thu Jan 4 15:56:53 2024 +0100
Timestamp: 1704380213
Remove redundant int cast
Remove a redundant int cast in the calculation of fwdOut. The variable
OutputType is already defined as std::int32_t, which is an integer type, making
the cast unnecessary.
closes https://github.com/official-stockfish/S ... /pull/4961
No functional change
https://abrok.eu/stockfish/
note: On Thursday January 4th we had 9 releases , some of them showed progress in ELO , above is the last one of those releases.
Re: Stockfish
Author: Muzhen Gaming
Date: Sat Dec 2 11:30:47 2023 +0100
Timestamp: 1701513047
Simplify move history reduction
Recent VLTC search tuning has suggested that the depth limit can be increased
by a lot. This patch simplifies away the depth-based bonus from statScore
reduction, making the divisor a constant.
Passed STC:
https://tests.stockfishchess.org/tests/ ... c573549791
LLR: 2.96 (-2.94,2.94) <-1.75,0.25>
Total: 91520 W: 23130 L: 22967 D: 45423 Elo +0.62
Ptnml(0-2): 282, 10947, 23141, 11106, 284
Passed LTC:
https://tests.stockfishchess.org/tests/ ... c57354a581
LLR: 2.94 (-2.94,2.94) <-1.75,0.25>
Total: 352902 W: 86796 L: 86917 D: 179189 Elo -0.12
Ptnml(0-2): 190, 40227, 95741, 40100, 193
closes https://github.com/official-stockfish/S ... /pull/4886
Bench: 1297179
Date: Sat Dec 2 11:30:47 2023 +0100
Timestamp: 1701513047
Simplify move history reduction
Recent VLTC search tuning has suggested that the depth limit can be increased
by a lot. This patch simplifies away the depth-based bonus from statScore
reduction, making the divisor a constant.
Passed STC:
https://tests.stockfishchess.org/tests/ ... c573549791
LLR: 2.96 (-2.94,2.94) <-1.75,0.25>
Total: 91520 W: 23130 L: 22967 D: 45423 Elo +0.62
Ptnml(0-2): 282, 10947, 23141, 11106, 284
Passed LTC:
https://tests.stockfishchess.org/tests/ ... c57354a581
LLR: 2.94 (-2.94,2.94) <-1.75,0.25>
Total: 352902 W: 86796 L: 86917 D: 179189 Elo -0.12
Ptnml(0-2): 190, 40227, 95741, 40100, 193
closes https://github.com/official-stockfish/S ... /pull/4886
Bench: 1297179
-
- Posts: 1905
- Joined: Wed Jun 21, 2023 6:29 am
Re: Stockfish
As usual,
Many thanks Mr. Homayoun, for all the news...
And BIG thanks to all Stockfish developers...
Greetings )
Many thanks Mr. Homayoun, for all the news...
And BIG thanks to all Stockfish developers...
Greetings )
Re: Stockfish
Best regards, Mr. SedatSedat Canbaz wrote: ↑Sun Jan 07, 2024 10:28 pmAs usual,
Many thanks Mr. Homayoun, for all the news...
- IbaiBuR
- Posts: 208
- Joined: Sun Jul 03, 2022 4:08 pm
- Real Name: Ibai Burgos
- Location: Madrid, Spain
- Contact:
Re: Stockfish
Finally, DualNNUE merged into the master branch of Stockfish!
Link to the specific commit: https://github.com/official-stockfish/S ... dfb06f52ba
General commit info:
Dual NNUE with L1-128 smallnet
Credit goes to @mstembera for:
- writing the code enabling dual NNUE:
#4898
- the idea of trying L1-128 trained exclusively on high simple eval
positions
The L1-128 smallnet is:
- epoch 399 of a single-stage training from scratch
- trained only on positions from filtered data with high material
difference
- defined by abs(simple_eval) > 1000
Training data can be found at:
https://robotmoon.com/nnue-training-data/
Local elo at 25k nodes per move of
L1-128 smallnet (nnue-only eval) vs. L1-128 trained on standard S1 data:
nn-epoch399.nnue : -318.1 +/- 2.1
Passed STC:
https://tests.stockfishchess.org/tests/ ... a1fcd49e3b
LLR: 2.93 (-2.94,2.94) <0.00,2.00>
Total: 62432 W: 15875 L: 15521 D: 31036
Ptnml(0-2): 177, 7331, 15872, 7633, 203
Passed LTC:
https://tests.stockfishchess.org/tests/ ... cf40aaac6e
LLR: 2.94 (-2.94,2.94) <0.50,2.50>
Total: 64830 W: 16118 L: 15738 D: 32974
Ptnml(0-2): 43, 7129, 17697, 7497, 49
closes https://github.com/official-stockfish/Stockfish/pulls
Bench: 1330050
Co-Authored-By: mstembera <5421953+mstembera@users.noreply.github.com>
Link to the specific commit: https://github.com/official-stockfish/S ... dfb06f52ba
General commit info:
Dual NNUE with L1-128 smallnet
Credit goes to @mstembera for:
- writing the code enabling dual NNUE:
#4898
- the idea of trying L1-128 trained exclusively on high simple eval
positions
The L1-128 smallnet is:
- epoch 399 of a single-stage training from scratch
- trained only on positions from filtered data with high material
difference
- defined by abs(simple_eval) > 1000
Training data can be found at:
https://robotmoon.com/nnue-training-data/
Local elo at 25k nodes per move of
L1-128 smallnet (nnue-only eval) vs. L1-128 trained on standard S1 data:
nn-epoch399.nnue : -318.1 +/- 2.1
Passed STC:
https://tests.stockfishchess.org/tests/ ... a1fcd49e3b
LLR: 2.93 (-2.94,2.94) <0.00,2.00>
Total: 62432 W: 15875 L: 15521 D: 31036
Ptnml(0-2): 177, 7331, 15872, 7633, 203
Passed LTC:
https://tests.stockfishchess.org/tests/ ... cf40aaac6e
LLR: 2.94 (-2.94,2.94) <0.50,2.50>
Total: 64830 W: 16118 L: 15738 D: 32974
Ptnml(0-2): 43, 7129, 17697, 7497, 49
closes https://github.com/official-stockfish/Stockfish/pulls
Bench: 1330050
Co-Authored-By: mstembera <5421953+mstembera@users.noreply.github.com>
Re: Stockfish
Author: Disservin
Date: Sun Jan 14 10:46:13 2024 +0100
Timestamp: 1705225573
Add ignoreRevsFile to CONTRIBUTING.md
closes https://github.com/official-stockfish/S ... /pull/4980
No functional change
https://abrok.eu/stockfish/
Note: Today we had 4 releases up to now, this one is the latest.
Date: Sun Jan 14 10:46:13 2024 +0100
Timestamp: 1705225573
Add ignoreRevsFile to CONTRIBUTING.md
closes https://github.com/official-stockfish/S ... /pull/4980
No functional change
https://abrok.eu/stockfish/
Note: Today we had 4 releases up to now, this one is the latest.
Re: Stockfish
The latest stockfish is fire .
I like this one its giving GP problems though GP runs on December patch🥱
I like this one its giving GP problems though GP runs on December patch🥱