6.1K 下载量
Gemma 3 的微型纯文本变体:Google 最新的开放权重模型家族
上次更新时间 27 天前
来自 Google 的图像+文本输入模型的量化感知训练版本,基于用于创建 Gemini 模型的相同研究和技术构建。
# Using LM Studio CLI lms get google/gemma-3-1B-it-QAT
import lmstudio as lms model = lms.llm("google/gemma-3-1B-it-QAT") result = model.respond("What is the meaning of life?") print(result)
import { LMStudioClient } from "@lmstudio/sdk"; const client = new LMStudioClient(); const model = await client.llm.model("google/gemma-3-1B-it-QAT"); const result = await model.respond("What is the meaning of life?"); console.info(result.content);
curl http://localhost:1234/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{ "model": "google/gemma-3-1B-it-QAT", "messages": [ { "role": "system", "content": "You are a helpful assistant." }, { "role": "user", "content": "Explain quantum computing in simple terms." } ], "temperature": 0.7, "max_tokens": 1024 }'
此模型使用的底层模型文件
当您下载此模型时,LM Studio 会选择最适合您机器的来源(您可以覆盖此设置)
此模型包含的自定义配置选项