Instructions to use MaximeMuhlethaler/chess-llm-MaximeMuh with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MaximeMuhlethaler/chess-llm-MaximeMuh with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="MaximeMuhlethaler/chess-llm-MaximeMuh")# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("MaximeMuhlethaler/chess-llm-MaximeMuh", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use MaximeMuhlethaler/chess-llm-MaximeMuh with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "MaximeMuhlethaler/chess-llm-MaximeMuh" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MaximeMuhlethaler/chess-llm-MaximeMuh", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/MaximeMuhlethaler/chess-llm-MaximeMuh
- SGLang
How to use MaximeMuhlethaler/chess-llm-MaximeMuh with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "MaximeMuhlethaler/chess-llm-MaximeMuh" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MaximeMuhlethaler/chess-llm-MaximeMuh", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "MaximeMuhlethaler/chess-llm-MaximeMuh" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MaximeMuhlethaler/chess-llm-MaximeMuh", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use MaximeMuhlethaler/chess-llm-MaximeMuh with Docker Model Runner:
docker model run hf.co/MaximeMuhlethaler/chess-llm-MaximeMuh
Upload tokenizer_config.json with huggingface_hub
Browse files- tokenizer_config.json +4 -3
tokenizer_config.json
CHANGED
|
@@ -37,8 +37,9 @@
|
|
| 37 |
"clean_up_tokenization_spaces": false,
|
| 38 |
"eos_token": "[EOS]",
|
| 39 |
"extra_special_tokens": {},
|
| 40 |
-
"model_max_length":
|
| 41 |
"pad_token": "[PAD]",
|
| 42 |
"tokenizer_class": "ChessTokenizer",
|
| 43 |
-
"unk_token": "[UNK]"
|
| 44 |
-
|
|
|
|
|
|
| 37 |
"clean_up_tokenization_spaces": false,
|
| 38 |
"eos_token": "[EOS]",
|
| 39 |
"extra_special_tokens": {},
|
| 40 |
+
"model_max_length": 256,
|
| 41 |
"pad_token": "[PAD]",
|
| 42 |
"tokenizer_class": "ChessTokenizer",
|
| 43 |
+
"unk_token": "[UNK]",
|
| 44 |
+
"vocab_size": 1200
|
| 45 |
+
}
|