Views
No views yet
LGAI-EXAONE/EXAONE-4.5-33BNVFP4model.safetensorsvLLMvLLMtransformers1uv pip install git+https://github.com/lkm2835/vllm.git@add-exaone4_5
2uv pip install git+https://github.com/nuxlear/transformers.git@add-exaone4_5transformers fork after vLLM installation so EXAONE 4.5 config support is preserved.1VLLM_NVFP4_GEMM_BACKEND=marlin \
2python -m vllm.entrypoints.openai.api_server \
3 --model /path/to/this/model \
4 --served-model-name exaone45-nvfp4 \
5 --host 127.0.0.1 \
6 --port 8012 \
7 --trust-remote-code \
8 --quantization modelopt \
9 --dtype auto \
10 --kv-cache-dtype fp8 \
11 --gpu-memory-utilization 0.80 \
12 --max-model-len 2048transformers did not sufficiently recognize the modeladd-exaone4_5 fork was requiredadd-exaone4_5 vLLM fork was requiredk_scale / v_scaleMARLIN1curl http://127.0.0.1:8012/v1/models
2
3curl http://127.0.0.1:8012/v1/chat/completions \
4 -H 'Content-Type: application/json' \
5 -d '{
6 "model": "exaone45-nvfp4",
7 "messages": [{"role": "user", "content": "안녕하세요. 한 줄로 자기소개 해주세요."}],
8 "max_tokens": 64
9 }'model.safetensorsconfig.jsonhf_quant_config.jsongeneration_config.jsonprocessor_config.jsonpreprocessor_config.jsontokenizer.jsontokenizer_config.jsonchat_template.jinjavLLM and forked transformers