Run GLM-4-0414 with Keras 3: JAX, PyTorch, or TensorFlow

GitHub Docs HuggingFace

kerasformers/glm-4-32b-base-0414

Pure-Keras 3 conversion of zai-org/GLM-4-32B-Base-0414 for kerasformers. One implementation runs unmodified on TensorFlow / Torch / JAX. This is a GLM-4-0414 checkpoint served as text -> text; weights are stored in bfloat16.

For model details, license, and usage terms, see the upstream model card.

Paper: ChatGLM: A Family of Large Language Models from GLM-130B to GLM-4 All Tools (arXiv:2406.12793) · HF Papers

✨ Quick start

import os
os.environ["KERAS_BACKEND"] = "torch"  # or "jax" / "tensorflow"

from kerasformers.models.glm4 import Glm4TextGenerate, Glm4Tokenizer

model = Glm4TextGenerate.from_weights("kerasformers/glm-4-32b-base-0414")
tokenizer = Glm4Tokenizer.from_weights("kerasformers/glm-4-32b-base-0414")

messages = [{"role": "user", "content": "Name three prime numbers."}]
inputs = tokenizer(messages)
outputs = model.generate(**inputs, max_new_tokens=128)
print(tokenizer.decode(outputs[0]))

Load any GLM variant the same way with from_weights("kerasformers/<variant>"). Browse them all in the GLM collection.

Special Thanks

A huge thank you to the Zhipu AI / THUDM team for creating and releasing the GLM models.

License: mit (per the upstream model card).

Downloads last month
12
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for kerasformers/glm-4-32b-base-0414

Finetuned
(6)
this model

Collection including kerasformers/glm-4-32b-base-0414

Paper for kerasformers/glm-4-32b-base-0414