ChessHacks Model
Neural network trained to play chess using PyTorch.
Model Architecture
- Convolutional neural network with residual blocks
- Policy head: predicts move probabilities
- Value head: evaluates board positions
Usage
from huggingface_hub import hf_hub_download
# Download weights
weights_path = hf_hub_download(
repo_id="HamzaAmmar/chesshacks-model",
filename="best.pt"
)