{{ message }}
use stockfish-web to generate local computer analysis#20686
Open
jonbgamble wants to merge 4 commits into
Open
Conversation
- new buttons in action menu / underboard launch the dialog. - you don't need permission or authentication to perform local anslysis. - with permission, you may publish the game or chapter analysis to the server. - ceval analyses the mainline in a tight loop. the browser tab must remain active and no page interaction is allowed during this process. - the dialog offers 2 engine presets, standard and broadcast. standard is 1,000,000 nodes, broadcast is 5,000,000 nodes per move. - custom mode allows timed search with the user's engine settings, so 10,000,000+ nodes per move and up. - only analysis from engines with 'staticAnalysis' capability (assigned in engines.ts) can be published. - any number of local analyses can be run at any strength for any reason, but only the most recent is kept. - published server evals may only get stronger. i.e. you must analyse at 5,000,000 nodes to overwrite a 1,000,000 node one. - study contributors must enable REC to publish. - learn from your mistakes and round training are now available in Tools -> Analysis board after local analysis. caveats: - external engine will not work. the protocol needs to be extended to send bestmove on completion. this means a new lila-engine broker (no problem) and all users would have to update their provider harnesses (problem). - study chapters analysed with fishnet before this PR lack "comp" hints in their tree data, so they can't be merged cleanly. when this happens, the user is warned to clean up any old engine lines before uploading. this doesn't apply to chapters created after this PR.
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

resolve #20495
staticAnalysiscapability (assigned in engines.ts) can be published.caveats: