chesshacks-model / README.md
HamzaAmmar's picture
Upload README.md with huggingface_hub
175489c verified
---
license: mit
tags:
- chess
- reinforcement-learning
- pytorch
---
# 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
```python
from huggingface_hub import hf_hub_download
# Download weights
weights_path = hf_hub_download(
repo_id="HamzaAmmar/chesshacks-model",
filename="best.pt"
)
```