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