zai-org/GLM-5.3-Flash开源了新模型
根据官方来源,zai-org/GLM-5.3-Flash开源了新模型。详细信息请以原始来源为准。
证据来源
查看来源摘录
Zhipu AI zai-org/GLM-5.3-Flash zai-org/GLM-5.3-Flash https://huggingface.co/zai-org/GLM-5.3-Flash
查看来源摘录
zai-org/GLM-5.3-Flash · Hugging Face Hugging Face (https://huggingface.co/) Models (https://huggingface.co/models) Datasets (https://huggingface.co/datasets) Spaces (https://huggingface.co/spaces) Buckets new (https://huggingface.co/storage) Docs (https://huggingface.co/docs) Enterprise (https://huggingface.co/enterprise) Pricing (https://huggingface.co/pricing) Website Tasks (https://huggingface.co/tasks) HuggingChat (https://huggingface.co/chat) Collections (https://huggingface.co/collections) Languages (https://huggingface.co/languages) Organizations (https://huggingface.co/organizations) Community Blog (https://huggingface.co/blog) Posts (https://huggingface.co/posts) Daily Papers (https://huggingface.co/papers) Hardware (https://huggingface.co/hardware) Learn (https://huggingface.co/learn) Discord (https://huggingface.co/join/discord) Forum (https://discuss.huggingface.co/) GitHub (https://github.com/huggingface) Solutions Team & Enterprise (https://huggingface.co/enterprise) Hugging Face PRO (https://huggingface.co/pro) Enterprise Support (https://huggingface.co/support) Inference Providers (https://huggingface.co/inference/models) Inference Endpoints (https://huggingface.co/inference-endpoints) Storage Buckets (https://huggingface.co/storage) Log In (https://huggingface.co/login) Sign Up (https://huggingface.co/join) (https://huggingface.co/zai-org) zai-org (https://huggingface.co/zai-org) / GLM-5.3-Flash (https://huggingface.co/zai-org/GLM-5.3-Flash) like 1.88k Follow Z.ai 20k Image-Text-to-Text (https://huggingface.co/models?pipeline_tag=image-text-to-text) Transformers (https://huggingface.co/models?library=transformers) Safetensors (https://huggingface.co/models?library=safetensors) English (https://huggingface.co/models?language=en) Chinese (https://huggingface.co/models?language=zh) glm5_next (https://huggingface.co/models?other=glm5_next) conversational (https://huggingface.co/models?other=conversational) Eval Results (https://huggingface.co/models?other=eval-results) fp8 (https://huggingface.co/models?other=fp8) arxiv: 2602.15763 License: mit Model card (https://huggingface.co/zai-org/GLM-5.3-Flash) Files Files and versions xet (https://huggingface.co/zai-org/GLM-5.3-Flash/tree/main) Community 36 (https://huggingface.co/zai-org/GLM-5.3-Flash/discussions) Deploy Copy to bucket new Use this model Instructions to use zai-org/GLM-5.3-Flash with libraries, inference providers, notebooks, and local apps. Follow these links to get started. Libraries Transformers (https://huggingface.co/zai-org/GLM-5.3-Flash?library=transformers) How to use zai-org/GLM-5.3-Flash with Transformers: # Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="zai-org/GLM-5.3-Flash") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages) # Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("zai-org/GLM-5.3-Flash") model = AutoModelForMultimodalLM.from_pretrained("zai-org/GLM-5.3-Flash", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.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(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) Inference Inference Providers HuggingChat (https://huggingface.co/chat/models/zai-org/GLM-5.3-Flash) Notebooks Google Colab (https://hugg
来自 星盘大模型百科