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?")