Text Generation
Transformers
Core ML
ONNX
Safetensors
GGUF
English
llama
aac
augmentative-and-alternative-communication
assistive-technology
accessibility
text-entry
word-prediction
on-device
eye-gaze
switch-scanning
text-generation-inference
Instructions to use NagaYu/halfword-100m with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NagaYu/halfword-100m with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="NagaYu/halfword-100m")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("NagaYu/halfword-100m") model = AutoModelForCausalLM.from_pretrained("NagaYu/halfword-100m", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use NagaYu/halfword-100m with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf NagaYu/halfword-100m # Run inference directly in the terminal: llama cli -hf NagaYu/halfword-100m
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf NagaYu/halfword-100m # Run inference directly in the terminal: llama cli -hf NagaYu/halfword-100m
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf NagaYu/halfword-100m # Run inference directly in the terminal: ./llama-cli -hf NagaYu/halfword-100m
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf NagaYu/halfword-100m # Run inference directly in the terminal: ./build/bin/llama-cli -hf NagaYu/halfword-100m
Use Docker
docker model run hf.co/NagaYu/halfword-100m
- LM Studio
- Jan
- vLLM
How to use NagaYu/halfword-100m with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "NagaYu/halfword-100m" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "NagaYu/halfword-100m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/NagaYu/halfword-100m
- SGLang
How to use NagaYu/halfword-100m 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 "NagaYu/halfword-100m" \ --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": "NagaYu/halfword-100m", "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 "NagaYu/halfword-100m" \ --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": "NagaYu/halfword-100m", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use NagaYu/halfword-100m with Ollama:
ollama run hf.co/NagaYu/halfword-100m
- Unsloth Desktop
- Docker Model Runner
How to use NagaYu/halfword-100m with Docker Model Runner:
docker model run hf.co/NagaYu/halfword-100m
- Lemonade
How to use NagaYu/halfword-100m with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull NagaYu/halfword-100m
Run and chat with the model
lemonade run user.halfword-100m-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
Welcome to the community
The community tab is the place to discuss and collaborate with the HF community!