cimec/lambada
Viewer • Updated • 12.7k • 60.3k • 65
How to use Intel/gpt-j-6B-int8-dynamic-inc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="Intel/gpt-j-6B-int8-dynamic-inc") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Intel/gpt-j-6B-int8-dynamic-inc")
model = AutoModelForCausalLM.from_pretrained("Intel/gpt-j-6B-int8-dynamic-inc")How to use Intel/gpt-j-6B-int8-dynamic-inc with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "Intel/gpt-j-6B-int8-dynamic-inc"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Intel/gpt-j-6B-int8-dynamic-inc",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/Intel/gpt-j-6B-int8-dynamic-inc
How to use Intel/gpt-j-6B-int8-dynamic-inc with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "Intel/gpt-j-6B-int8-dynamic-inc" \
--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": "Intel/gpt-j-6B-int8-dynamic-inc",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'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 "Intel/gpt-j-6B-int8-dynamic-inc" \
--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": "Intel/gpt-j-6B-int8-dynamic-inc",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use Intel/gpt-j-6B-int8-dynamic-inc with Docker Model Runner:
docker model run hf.co/Intel/gpt-j-6B-int8-dynamic-inc
GPT-J 6B is a transformer model trained using Ben Wang's Mesh Transformer JAX. "GPT-J" refers to the class of model, while "6B" represents the number of trainable parameters.
This int8 ONNX model is generated by neural-compressor and the fp32 model can be exported with below command:
python -m transformers.onnx --model=EleutherAI/gpt-j-6B onnx_gptj/ --framework pt --opset 13 --feature=causal-lm-with-past
| Model Detail | Description |
|---|---|
| Model Authors - Company | Intel |
| Date | April 10, 2022 |
| Version | 1 |
| Type | Text Generation |
| Paper or Other Resources | - |
| License | Apache 2.0 |
| Questions or Comments | Community Tab |
| Intended Use | Description |
|---|---|
| Primary intended uses | You can use the raw model for text generation inference |
| Primary intended users | Anyone doing text generation inference |
| Out-of-scope uses | This model in most cases will need to be fine-tuned for your particular task. The model should not be used to intentionally create hostile or alienating environments for people. |
Download the model and script by cloning the repository:
git clone https://huggingface.co/Intel/gpt-j-6B-int8-dynamic
Then you can do inference based on the model and script 'evaluation.ipynb'.
| Model | Model Size (GB) | Lambada Acc |
|---|---|---|
| FP32 | 23 | 0.7954 |
| INT8 | 6 | 0.7926 |