Instructions to use rishiraj/gemma-2-9b-bn with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use rishiraj/gemma-2-9b-bn with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="rishiraj/gemma-2-9b-bn")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("rishiraj/gemma-2-9b-bn") model = AutoModelForCausalLM.from_pretrained("rishiraj/gemma-2-9b-bn") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use rishiraj/gemma-2-9b-bn with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "rishiraj/gemma-2-9b-bn" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "rishiraj/gemma-2-9b-bn", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/rishiraj/gemma-2-9b-bn
- SGLang
How to use rishiraj/gemma-2-9b-bn 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 "rishiraj/gemma-2-9b-bn" \ --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": "rishiraj/gemma-2-9b-bn", "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 "rishiraj/gemma-2-9b-bn" \ --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": "rishiraj/gemma-2-9b-bn", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use rishiraj/gemma-2-9b-bn with Docker Model Runner:
docker model run hf.co/rishiraj/gemma-2-9b-bn
rishiraj/gemma-2-9b-bn
This repository extends the google/gemma-2-9b tokenizer by training it on Bengali text. The original tokenizer splits many Bengali words into subword components, leading to inefficiency and loss of meaning. Our extended Bengali tokenizer better preserves word integrity, tokenizing more effectively with fewer splits, ensuring more meaningful representation of the text.
Token Information
| Tokenizer | Number of Tokens |
|---|---|
google/gemma-2-9b |
256,000 |
rishiraj/gemma-2-9b-bn |
392,402 |
Why Fewer Tokens for Bengali?
While Bengali is very expressive and flexible, it hasn't undergone as much global influence as English in terms of absorbing new words from many different languages.
Tokenizer Comparison
Text:
আমি একজন ভালো ছেলে এবং আমি ফুটবল খেলতে পছন্দ করি
| Tokenizer | Output |
|---|---|
google/gemma-2-9b |
['আ', 'মি', '▁এক', 'জন', '▁ভ', 'াল', 'ো', '▁', 'ছে', 'লে', '▁এবং', '▁আম', 'ি', '▁ফ', 'ু', 'ট', 'ব', 'ল', '▁খ', 'েল', 'তে', '▁প', 'ছ', 'ন্দ', '▁কর', 'ি'] |
rishiraj/gemma-2-9b-bn |
['আমি', '▁একজন', '▁ভালো', '▁ছেলে', '▁এবং', '▁আমি', '▁ফুটবল', '▁খেলতে', '▁পছন্দ', '▁করি'] |
Usage
Install dependencies:
pip install transformersLoad and use the tokenizer:
from transformers import AutoTokenizer tokenizer = AutoTokenizer.from_pretrained("rishiraj/gemma-2-9b-bn") tokens = tokenizer.tokenize("আমি একজন ভালো ছেলে এবং আমি ফুটবল খেলতে পছন্দ করি") print(tokens)
- Downloads last month
- 2