Text Generation
Transformers
Safetensors
English
glm4_moe_lite
causal-lm
fp8
quantization
Mixture of Experts
glm
deploypad
inference
conversational
Eval Results (legacy)
modelopt
Instructions to use Geodd/GLM-4.7-Flash-FP8 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Geodd/GLM-4.7-Flash-FP8 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Geodd/GLM-4.7-Flash-FP8") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Geodd/GLM-4.7-Flash-FP8") model = AutoModelForCausalLM.from_pretrained("Geodd/GLM-4.7-Flash-FP8") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Geodd/GLM-4.7-Flash-FP8 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Geodd/GLM-4.7-Flash-FP8" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Geodd/GLM-4.7-Flash-FP8", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Geodd/GLM-4.7-Flash-FP8
- SGLang
How to use Geodd/GLM-4.7-Flash-FP8 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 "Geodd/GLM-4.7-Flash-FP8" \ --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": "Geodd/GLM-4.7-Flash-FP8", "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 "Geodd/GLM-4.7-Flash-FP8" \ --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": "Geodd/GLM-4.7-Flash-FP8", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Geodd/GLM-4.7-Flash-FP8 with Docker Model Runner:
docker model run hf.co/Geodd/GLM-4.7-Flash-FP8
| { | |
| "producer": { | |
| "name": "modelopt", | |
| "version": "0.37.0" | |
| }, | |
| "quantization": { | |
| "quant_algo": "FP8", | |
| "kv_cache_quant_algo": null, | |
| "exclude_modules": [ | |
| "lm_head", | |
| "model.layers.0.mlp.gate_proj", | |
| "model.layers.0.self_attn*", | |
| "model.layers.1.mlp.shared_experts.gate_proj", | |
| "model.layers.1.self_attn*", | |
| "model.layers.10.mlp.shared_experts.gate_proj", | |
| "model.layers.10.self_attn*", | |
| "model.layers.11.mlp.shared_experts.gate_proj", | |
| "model.layers.11.self_attn*", | |
| "model.layers.12.mlp.shared_experts.gate_proj", | |
| "model.layers.12.self_attn*", | |
| "model.layers.13.mlp.shared_experts.gate_proj", | |
| "model.layers.13.self_attn*", | |
| "model.layers.14.mlp.shared_experts.gate_proj", | |
| "model.layers.14.self_attn*", | |
| "model.layers.15.mlp.shared_experts.gate_proj", | |
| "model.layers.15.self_attn*", | |
| "model.layers.16.mlp.shared_experts.gate_proj", | |
| "model.layers.16.self_attn*", | |
| "model.layers.17.mlp.shared_experts.gate_proj", | |
| "model.layers.17.self_attn*", | |
| "model.layers.18.mlp.shared_experts.gate_proj", | |
| "model.layers.18.self_attn*", | |
| "model.layers.19.mlp.shared_experts.gate_proj", | |
| "model.layers.19.self_attn*", | |
| "model.layers.2.mlp.shared_experts.gate_proj", | |
| "model.layers.2.self_attn*", | |
| "model.layers.20.mlp.shared_experts.gate_proj", | |
| "model.layers.20.self_attn*", | |
| "model.layers.21.mlp.shared_experts.gate_proj", | |
| "model.layers.21.self_attn*", | |
| "model.layers.22.mlp.shared_experts.gate_proj", | |
| "model.layers.22.self_attn*", | |
| "model.layers.23.mlp.shared_experts.gate_proj", | |
| "model.layers.23.self_attn*", | |
| "model.layers.24.mlp.shared_experts.gate_proj", | |
| "model.layers.24.self_attn*", | |
| "model.layers.25.mlp.shared_experts.gate_proj", | |
| "model.layers.25.self_attn*", | |
| "model.layers.26.mlp.shared_experts.gate_proj", | |
| "model.layers.26.self_attn*", | |
| "model.layers.27.mlp.shared_experts.gate_proj", | |
| "model.layers.27.self_attn*", | |
| "model.layers.28.mlp.shared_experts.gate_proj", | |
| "model.layers.28.self_attn*", | |
| "model.layers.29.mlp.shared_experts.gate_proj", | |
| "model.layers.29.self_attn*", | |
| "model.layers.3.mlp.shared_experts.gate_proj", | |
| "model.layers.3.self_attn*", | |
| "model.layers.30.mlp.shared_experts.gate_proj", | |
| "model.layers.30.self_attn*", | |
| "model.layers.31.mlp.shared_experts.gate_proj", | |
| "model.layers.31.self_attn*", | |
| "model.layers.32.mlp.shared_experts.gate_proj", | |
| "model.layers.32.self_attn*", | |
| "model.layers.33.mlp.shared_experts.gate_proj", | |
| "model.layers.33.self_attn*", | |
| "model.layers.34.mlp.shared_experts.gate_proj", | |
| "model.layers.34.self_attn*", | |
| "model.layers.35.mlp.shared_experts.gate_proj", | |
| "model.layers.35.self_attn*", | |
| "model.layers.36.mlp.shared_experts.gate_proj", | |
| "model.layers.36.self_attn*", | |
| "model.layers.37.mlp.shared_experts.gate_proj", | |
| "model.layers.37.self_attn*", | |
| "model.layers.38.mlp.shared_experts.gate_proj", | |
| "model.layers.38.self_attn*", | |
| "model.layers.39.mlp.shared_experts.gate_proj", | |
| "model.layers.39.self_attn*", | |
| "model.layers.4.mlp.shared_experts.gate_proj", | |
| "model.layers.4.self_attn*", | |
| "model.layers.40.mlp.shared_experts.gate_proj", | |
| "model.layers.40.self_attn*", | |
| "model.layers.41.mlp.shared_experts.gate_proj", | |
| "model.layers.41.self_attn*", | |
| "model.layers.42.mlp.shared_experts.gate_proj", | |
| "model.layers.42.self_attn*", | |
| "model.layers.43.mlp.shared_experts.gate_proj", | |
| "model.layers.43.self_attn*", | |
| "model.layers.44.mlp.shared_experts.gate_proj", | |
| "model.layers.44.self_attn*", | |
| "model.layers.45.mlp.shared_experts.gate_proj", | |
| "model.layers.45.self_attn*", | |
| "model.layers.46.mlp.shared_experts.gate_proj", | |
| "model.layers.46.self_attn*", | |
| "model.layers.5.mlp.shared_experts.gate_proj", | |
| "model.layers.5.self_attn*", | |
| "model.layers.6.mlp.shared_experts.gate_proj", | |
| "model.layers.6.self_attn*", | |
| "model.layers.7.mlp.shared_experts.gate_proj", | |
| "model.layers.7.self_attn*", | |
| "model.layers.8.mlp.shared_experts.gate_proj", | |
| "model.layers.8.self_attn*", | |
| "model.layers.9.mlp.shared_experts.gate_proj", | |
| "model.layers.9.self_attn*" | |
| ] | |
| } | |
| } |