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
| { | |
| "architectures": [ | |
| "ChessBotModel" | |
| ], | |
| "auto_map": { | |
| "AutoConfig": "modeling_chessbot.ChessBotConfig", | |
| "AutoModel": "modeling_chessbot.ChessBotModel" | |
| }, | |
| "d_ff": 1024, | |
| "d_model": 512, | |
| "max_position_embeddings": 64, | |
| "model_type": "chessbot", | |
| "num_heads": 8, | |
| "num_layers": 10, | |
| "torch_dtype": "float32", | |
| "transformers_version": "4.53.1", | |
| "vocab_size": 1929 | |
| } | |