Difference between revisions of "Seer"

From Chessprogramming wiki
Jump to: navigation, search
(6 intermediate revisions by the same user not shown)
Line 24: Line 24:
 
* [[Move Ordering]]
 
* [[Move Ordering]]
 
** [[Static Exchange Evaluation|SEE]] for [[Captures]]
 
** [[Static Exchange Evaluation|SEE]] for [[Captures]]
 +
** [[Killer Heuristic]]
 
** [[History Heuristic]]
 
** [[History Heuristic]]
 
** [[History Heuristic#CMHist|Counter Moves History]]
 
** [[History Heuristic#CMHist|Counter Moves History]]
Line 40: Line 41:
 
* [[Oracle]]
 
* [[Oracle]]
 
* [[Prophet]]
 
* [[Prophet]]
 +
* [[Minic#Minic 3|Minic 3]]
  
 
=Forum Posts=
 
=Forum Posts=
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=72613&start=427 Re: New engine releases 2020] by [[Connor McMonigle]], [[CCC]], October 18, 2020
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=72613&start=427 Re: New engine releases 2020] by [[Connor McMonigle]], [[CCC]], October 18, 2020
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75433 Seer] by [[Gerd Isenberg]], [[CCC]], October 18, 2020
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75433 Seer] by [[Gerd Isenberg]], [[CCC]], October 18, 2020
 +
: [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75433&start=58 Re: Seer] by [[Connor McMonigle]], [[CCC]], November 02, 2020 » Seer 1.1
 +
: [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75433&start=109 Re: Seer] by [[Connor McMonigle]], [[CCC]], November 18, 2020 » Seer 1.2
 +
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=72613&start=469 Re: New engine releases 2020] by [[Connor McMonigle]], [[CCC]], November 02, 2020
 +
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75665&start=9 Re: Minic version 3] by [[Connor McMonigle]], [[CCC]], November 03, 2020 » [[Minic#Minic 3|Minic 3]] <ref>[[Gao Huang]], [[Zhuang Liu]], [[Laurens van der Maaten]], [[Kilian Q. Weinberger]] ('''2016'''). ''Densely Connected Convolutional Networks''. [https://arxiv.org/abs/1608.06993 arXiv:1608.06993]</ref>
 +
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75890&start=6 Re: Speculations about NNUE development (was New engine releases 2020)] by [[Connor McMonigle]], [[CCC]], November 12, 2020 » [[Dragon by Komodo Chess]], [[Halogen]]
 +
: [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75890&start=9 Re: Speculations about NNUE development (was New engine releases 2020)] by [[Connor McMonigle]], [[CCC]], November 12, 2020
  
 
=External Links=
 
=External Links=
 
==Chess Engine==
 
==Chess Engine==
 
* [https://github.com/connormcmonigle/seer-nnue GitHub - connormcmonigle/seer-nnue: UCI chess engine using NNUE for position evaluation]
 
* [https://github.com/connormcmonigle/seer-nnue GitHub - connormcmonigle/seer-nnue: UCI chess engine using NNUE for position evaluation]
* [https://github.com/connormcmonigle/seer-nnue/releases/tag/v1.0 Release seer-v1.0 · connormcmonigle/seer-nnue · GitHub]
+
* [https://github.com/connormcmonigle/seer-nnue/releases/tag/v1.1 Release seer-v1.1 · connormcmonigle/seer-nnue · GitHub]
 
==Misc==
 
==Misc==
 
* [https://en.wiktionary.org/wiki/seer seer - Wiktionary]
 
* [https://en.wiktionary.org/wiki/seer seer - Wiktionary]

Revision as of 19:46, 25 November 2020

Home * Engines * Seer

Greek Seer [1]

Seer,
an UCI compliant open source chess engine by Connor McMonigle, written in C++, licensed under the GNU GPL and first released in October 2020. Seer uses a custom NNUE implementation based on 32-bit float weights with training code written in PyTorch and inference code relying on OpenMP SIMD for auto vectorization [2]. Due to PEXT Bitboards, Seer requires BMI2 for a reasonable performance, as well as either SSE, AVX, AVX2 or AVX-512 to calculate the NNUE.

Features

[3]

Board Representation

Search

Evaluation

See also

Forum Posts

Re: Seer by Connor McMonigle, CCC, November 02, 2020 » Seer 1.1
Re: Seer by Connor McMonigle, CCC, November 18, 2020 » Seer 1.2
Re: Speculations about NNUE development (was New engine releases 2020) by Connor McMonigle, CCC, November 12, 2020

External Links

Chess Engine

Misc

References

Up one level