Text Generation
Transformers
Safetensors
English
llama
Generated from Trainer
conversational
text-generation-inference
Instructions to use sign/utf8-lm-tiny with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sign/utf8-lm-tiny with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="sign/utf8-lm-tiny") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("sign/utf8-lm-tiny") model = AutoModelForCausalLM.from_pretrained("sign/utf8-lm-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 Settings
- vLLM
How to use sign/utf8-lm-tiny with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "sign/utf8-lm-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": "sign/utf8-lm-tiny", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/sign/utf8-lm-tiny
- SGLang
How to use sign/utf8-lm-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 "sign/utf8-lm-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": "sign/utf8-lm-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 "sign/utf8-lm-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": "sign/utf8-lm-tiny", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use sign/utf8-lm-tiny with Docker Model Runner:
docker model run hf.co/sign/utf8-lm-tiny
Update README.md
Browse files
README.md
CHANGED
|
@@ -24,6 +24,39 @@ Using [this](https://github.com/sign/utf8-tokenizer/blob/main/experiments/langua
|
|
| 24 |
|
| 25 |
The repository includes the joined model for ease of use, and the [bit_projection_weights.pt](https://huggingface.co/sign/utf8-lm-tiny/blob/main/bit_projection_weights.pt) for further analysis.
|
| 26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
## Training procedure
|
| 28 |
|
| 29 |
```shell
|
|
|
|
| 24 |
|
| 25 |
The repository includes the joined model for ease of use, and the [bit_projection_weights.pt](https://huggingface.co/sign/utf8-lm-tiny/blob/main/bit_projection_weights.pt) for further analysis.
|
| 26 |
|
| 27 |
+
## Usage
|
| 28 |
+
|
| 29 |
+
```python
|
| 30 |
+
from transformers import AutoModelForCausalLM
|
| 31 |
+
import torch
|
| 32 |
+
|
| 33 |
+
from utf8_tokenizer import UTF8Tokenizer
|
| 34 |
+
|
| 35 |
+
model_id = "sign/utf8-lm-tiny"
|
| 36 |
+
|
| 37 |
+
tokenizer = UTF8Tokenizer()
|
| 38 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 39 |
+
|
| 40 |
+
prompt = "My name is"
|
| 41 |
+
|
| 42 |
+
inputs = tokenizer([prompt], return_tensors="pt",
|
| 43 |
+
padding=True,
|
| 44 |
+
add_special_tokens=True)
|
| 45 |
+
inputs["input_ids"] = inputs["input_ids"].to(torch.long)
|
| 46 |
+
# We need to remove the EOS token
|
| 47 |
+
inputs["input_ids"] = inputs["input_ids"][:, :-1]
|
| 48 |
+
inputs["attention_mask"] = inputs["attention_mask"][:, :-1]
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
with torch.no_grad():
|
| 52 |
+
out = model.generate(
|
| 53 |
+
**inputs,
|
| 54 |
+
max_new_tokens=64,
|
| 55 |
+
)
|
| 56 |
+
|
| 57 |
+
print(tokenizer.decode(out[0], skip_special_tokens=False))
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
## Training procedure
|
| 61 |
|
| 62 |
```shell
|