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, device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -55,7 +55,7 @@ for move, prob in top_moves:
|
|
| 55 |
## Requirements
|
| 56 |
|
| 57 |
- torch>=2.0.0
|
| 58 |
-
- transformers>=4.
|
| 59 |
- python-chess>=1.10.0
|
| 60 |
- numpy>=1.21.0
|
| 61 |
|
|
|
|
| 55 |
## Requirements
|
| 56 |
|
| 57 |
- torch>=2.0.0
|
| 58 |
+
- transformers>=4.48.1
|
| 59 |
- python-chess>=1.10.0
|
| 60 |
- numpy>=1.21.0
|
| 61 |
|