29.1K ダウンロード
Gemma 3の小さなテキスト専用バリアント:Googleの最新のオープンウェイトモデルファミリー
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 https://: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はお使いのマシンに最適なソースを選択します(これは上書きできます)。
このモデルに含まれるカスタム設定オプション