Google Gemma 2

2024 年 6 月 27 日

Ollama in Noogler hat with Gemma 2 logo

Google Gemma 2 现已推出三种尺寸:2B、9B 和 27B,采用全新的架构设计,旨在提供一流的性能和效率。

运行 Gemma 2

ollama run gemma2

一流的性能

在 270 亿参数的情况下,Gemma 2 在基准测试中表现超越了尺寸超过其两倍的模型。这一突破性的效率为开放模型领域设定了新标准。

三种尺寸:2B、9B 和 27B 参数

Gemma 2 的初始版本包含两种尺寸

使用 Gemma 2 与流行工具

LangChain

from langchain_community.llms import Ollama
llm = Ollama(model="gemma2")
llm.invoke("Why is the sky blue?")

LlamaIndex

from llama_index.llms.ollama import Ollama
llm = Ollama(model="gemma2")
llm.complete("Why is the sky blue?")