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