Instructions to use RefalMachine/llm_test_unigram with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use RefalMachine/llm_test_unigram with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="RefalMachine/llm_test_unigram")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("RefalMachine/llm_test_unigram") model = AutoModelForCausalLM.from_pretrained("RefalMachine/llm_test_unigram", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use RefalMachine/llm_test_unigram with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "RefalMachine/llm_test_unigram" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RefalMachine/llm_test_unigram", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/RefalMachine/llm_test_unigram
- SGLang
How to use RefalMachine/llm_test_unigram 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 "RefalMachine/llm_test_unigram" \ --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": "RefalMachine/llm_test_unigram", "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 "RefalMachine/llm_test_unigram" \ --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": "RefalMachine/llm_test_unigram", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use RefalMachine/llm_test_unigram with Docker Model Runner:
docker model run hf.co/RefalMachine/llm_test_unigram
- Xet hash:
- 358462fa90041a9257b34963b681c714d2756315cf1de6c66fd413c5e7b9eafb
- Size of remote file:
- 5.63 kB
- SHA256:
- 330ea01742e8019b12ed3789e4ede3551b58f67d2f1b9650b153ee0977f593c2
·
Xet efficiently stores Large Files inside Git, intelligently splitting files into unique chunks and accelerating uploads and downloads. More info.