chess_test / README.md
ka
Update README.md
acda92f verified
metadata
license: other
license_name: none
license_link: LICENSE
language:
  - en
tags:
  - chess
  - alpaca

Made on the basis of lichess player profile. Not recommended for use.

Uploaded to train claudia_bot for its LLM-based chess engine.

system_msg = ( “You are a chess engine. Only respond with one legal move in UCI format.” ) user_msg = ( f “FEN: {fen}\n” f “Legal moves: {legal_moves_str}{n}” f “{metadata}\n\n.” “Pick the single best move from the list. Output only the UCI (no explanation).” )

    payload = {
        “messages": [
            { “role”: “system”, ‘content’: system_msg }
            { “role”: “user”, ‘content’: user_msg},
        ],
        { “mode”: “instruct”,  
        “instruction_template": ‘Alpaca’, 
        “max_new_tokens": 10,   
        “temperature": 0.05,  
        “top_p": 1.0, 
        # “stop”: [“\n”]
    }