Text Generation
Transformers
Safetensors
mistral
cemp
assisted-living
LoRA
tinyllama
conversational
text-generation-inference
Instructions to use alfboss/cempbot-tiny with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use alfboss/cempbot-tiny with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="alfboss/cempbot-tiny") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("alfboss/cempbot-tiny") model = AutoModelForCausalLM.from_pretrained("alfboss/cempbot-tiny") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use alfboss/cempbot-tiny with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "alfboss/cempbot-tiny" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "alfboss/cempbot-tiny", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/alfboss/cempbot-tiny
- SGLang
How to use alfboss/cempbot-tiny 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 "alfboss/cempbot-tiny" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "alfboss/cempbot-tiny", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "alfboss/cempbot-tiny" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "alfboss/cempbot-tiny", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use alfboss/cempbot-tiny with Docker Model Runner:
docker model run hf.co/alfboss/cempbot-tiny
v2.0.5 tokenizer push with consistent prompt formatting
Browse files- tokenizer.json +2 -16
- tokenizer_config.json +0 -6
tokenizer.json
CHANGED
|
@@ -1,21 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"version": "1.0",
|
| 3 |
-
"truncation":
|
| 4 |
-
|
| 5 |
-
"max_length": 512,
|
| 6 |
-
"strategy": "LongestFirst",
|
| 7 |
-
"stride": 0
|
| 8 |
-
},
|
| 9 |
-
"padding": {
|
| 10 |
-
"strategy": {
|
| 11 |
-
"Fixed": 512
|
| 12 |
-
},
|
| 13 |
-
"direction": "Right",
|
| 14 |
-
"pad_to_multiple_of": null,
|
| 15 |
-
"pad_id": 2,
|
| 16 |
-
"pad_type_id": 0,
|
| 17 |
-
"pad_token": "</s>"
|
| 18 |
-
},
|
| 19 |
"added_tokens": [
|
| 20 |
{
|
| 21 |
"id": 0,
|
|
|
|
| 1 |
{
|
| 2 |
"version": "1.0",
|
| 3 |
+
"truncation": null,
|
| 4 |
+
"padding": null,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
"added_tokens": [
|
| 6 |
{
|
| 7 |
"id": 0,
|
tokenizer_config.json
CHANGED
|
@@ -45,17 +45,11 @@
|
|
| 45 |
"eos_token": "</s>",
|
| 46 |
"extra_special_tokens": {},
|
| 47 |
"legacy": false,
|
| 48 |
-
"max_length": 512,
|
| 49 |
"model_max_length": 2048,
|
| 50 |
-
"pad_to_multiple_of": null,
|
| 51 |
"pad_token": "</s>",
|
| 52 |
-
"pad_token_type_id": 0,
|
| 53 |
"padding_side": "right",
|
| 54 |
"sp_model_kwargs": {},
|
| 55 |
-
"stride": 0,
|
| 56 |
"tokenizer_class": "LlamaTokenizer",
|
| 57 |
-
"truncation_side": "right",
|
| 58 |
-
"truncation_strategy": "longest_first",
|
| 59 |
"unk_token": "<unk>",
|
| 60 |
"use_default_system_prompt": false
|
| 61 |
}
|
|
|
|
| 45 |
"eos_token": "</s>",
|
| 46 |
"extra_special_tokens": {},
|
| 47 |
"legacy": false,
|
|
|
|
| 48 |
"model_max_length": 2048,
|
|
|
|
| 49 |
"pad_token": "</s>",
|
|
|
|
| 50 |
"padding_side": "right",
|
| 51 |
"sp_model_kwargs": {},
|
|
|
|
| 52 |
"tokenizer_class": "LlamaTokenizer",
|
|
|
|
|
|
|
| 53 |
"unk_token": "<unk>",
|
| 54 |
"use_default_system_prompt": false
|
| 55 |
}
|