Instructions to use Maxlegrec/ChessBot with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Maxlegrec/ChessBot with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="Maxlegrec/ChessBot", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Maxlegrec/ChessBot", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -70,6 +70,9 @@ for move, prob in top_moves:
|
|
| 70 |
|
| 71 |
## Requirements
|
| 72 |
|
|
|
|
|
|
|
|
|
|
| 73 |
- torch>=2.0.0
|
| 74 |
- transformers>=4.48.1
|
| 75 |
- python-chess>=1.10.0
|
|
|
|
| 70 |
|
| 71 |
## Requirements
|
| 72 |
|
| 73 |
+
python-version <=3.11
|
| 74 |
+
cuda-version < 13.0
|
| 75 |
+
|
| 76 |
- torch>=2.0.0
|
| 77 |
- transformers>=4.48.1
|
| 78 |
- python-chess>=1.10.0
|