Text Generation
Transformers
Safetensors
English
Korean
exaone
lg-ai
exaone-deep
conversational
custom_code
Instructions to use LGAI-EXAONE/EXAONE-Deep-32B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use LGAI-EXAONE/EXAONE-Deep-32B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="LGAI-EXAONE/EXAONE-Deep-32B", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("LGAI-EXAONE/EXAONE-Deep-32B", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use LGAI-EXAONE/EXAONE-Deep-32B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "LGAI-EXAONE/EXAONE-Deep-32B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "LGAI-EXAONE/EXAONE-Deep-32B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/LGAI-EXAONE/EXAONE-Deep-32B
- SGLang
How to use LGAI-EXAONE/EXAONE-Deep-32B 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 "LGAI-EXAONE/EXAONE-Deep-32B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "LGAI-EXAONE/EXAONE-Deep-32B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "LGAI-EXAONE/EXAONE-Deep-32B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "LGAI-EXAONE/EXAONE-Deep-32B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use LGAI-EXAONE/EXAONE-Deep-32B with Docker Model Runner:
docker model run hf.co/LGAI-EXAONE/EXAONE-Deep-32B
[email protected] ์ธ์ contact point๋ ์๋์?
#17 opened about 1 year ago
by
Keonwoong
๋ผ์ด์ ์ค ์ํ ๋ญ๋ฐ
2
#16 opened about 1 year ago
by
Krakerberus
License makes it useless
1
#14 opened over 1 year ago
by
nutspiano
Available inference engine
#13 opened over 1 year ago
by
fpalllll
Uh I think your model is hallucinating a bit (details in description) /for-laughs
1
#12 opened over 1 year ago
by
ignemia
Link to paper
#10 opened over 1 year ago
by
nielsr
float32 please!!!!
1
#9 opened over 1 year ago
by
ctranslate2-4you
๋ง๋ก๋ง ๋ค์๋๋ฐ ์ฒด๊ฐ์ด ์๋๋ค..
๐ค 1
#7 opened over 1 year ago
by
hellostevehaha
Fine-tuning instructions
1
#6 opened over 1 year ago
by
millionwords
Space to test it online?
1
#1 opened over 1 year ago
by
celsowm