Instructions to use ChessAI-Community/NeoChess-Community with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use ChessAI-Community/NeoChess-Community with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir NeoChess-Community ChessAI-Community/NeoChess-Community
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- LM Studio
Update selfchess-colab.py
Browse files- selfchess-colab.py +2 -2
selfchess-colab.py
CHANGED
|
@@ -11,8 +11,8 @@ import torch.multiprocessing as mp
|
|
| 11 |
# CONFIGURATION
|
| 12 |
CONFIG = {
|
| 13 |
"stockfish_path": "/usr/games/stockfish",
|
| 14 |
-
"model_path": "NeoChess/chessy_model.pth",
|
| 15 |
-
"backup_model_path": "NeoChess/chessy_modelt-1.pth",
|
| 16 |
"device": torch.device("cuda"),
|
| 17 |
"learning_rate": 1e-4,
|
| 18 |
"num_games": 30,
|
|
|
|
| 11 |
# CONFIGURATION
|
| 12 |
CONFIG = {
|
| 13 |
"stockfish_path": "/usr/games/stockfish",
|
| 14 |
+
"model_path": "NeoChess-Community/chessy_model.pth",
|
| 15 |
+
"backup_model_path": "NeoChess-Community/chessy_modelt-1.pth",
|
| 16 |
"device": torch.device("cuda"),
|
| 17 |
"learning_rate": 1e-4,
|
| 18 |
"num_games": 30,
|