Gemma और LangChain का इस्तेमाल शुरू करना

ai.google.dev पर देखें Google Colab में चलाना GitHub पर सोर्स देखना

इस ट्यूटोरियल में, Google Cloud या Colab एनवायरमेंट में Gemma और LangChain का इस्तेमाल शुरू करने का तरीका बताया गया है. Gemma एक लाइटवेट और बेहतरीन ओपन मॉडल है. इसे Gemini मॉडल में इस्तेमाल की गई रिसर्च और तकनीक का इस्तेमाल करके बनाया गया है. LangChain, भाषा मॉडल के साथ काम करने वाले, कॉन्टेक्स्ट अवेयर ऐप्लिकेशन बनाने और उन्हें डिप्लॉय करने के लिए एक फ़्रेमवर्क है.

Google Cloud में Gemma को चलाना

langchain-google-vertexai पैकेज, Google Cloud मॉडल के साथ LangChain इंटिग्रेशन उपलब्ध कराता है.

डिपेंडेंसी इंस्टॉल करना

pip install --upgrade -q langchain langchain-google-vertexai

प्रमाणीकृत करें

अगर Colab Enterprise का इस्तेमाल नहीं किया जा रहा है, तो आपको पुष्टि करनी होगी.

from google.colab import auth
auth.authenticate_user()

मॉडल को डिप्लॉय करना

Vertex AI, एआई मॉडल और ऐप्लिकेशन को ट्रेनिंग देने और डिप्लॉय करने के लिए एक प्लैटफ़ॉर्म है. मॉडल गार्डन, मॉडल का एक कलेक्शन है. इसे Google Cloud Console में एक्सप्लोर किया जा सकता है.

Gemma को डिप्लॉय करने के लिए, Vertex AI के लिए Model Garden में मॉडल खोलें और यह तरीका अपनाएं:

  1. डिप्लॉय करें को चुनें.
  2. डिप्लॉयमेंट फ़ॉर्म के फ़ील्ड में अपने हिसाब से बदलाव करें. अगर डिफ़ॉल्ट वैल्यू से आप संतुष्ट हैं, तो उन्हें वैसे ही रहने दें. यहां दिए गए फ़ील्ड नोट कर लें, क्योंकि आपको इनकी ज़रूरत बाद में पड़ेगी:
    • एंडपॉइंट का नाम (उदाहरण के लिए, google_gemma-7b-it-mg-one-click-deploy)
    • इलाका (उदाहरण के लिए, us-west1)
  3. Vertex AI पर मॉडल को डिप्लॉय करने के लिए, डिप्लॉय करें चुनें. डिप्लॉयमेंट की प्रोसेस पूरी होने में कुछ मिनट लगेंगे.

एंडपॉइंट तैयार होने के बाद, उसका प्रोजेक्ट आईडी, एंडपॉइंट आईडी, और जगह की जानकारी कॉपी करें. इसके बाद, उन्हें पैरामीटर के तौर पर डालें.

# @title Basic parameters
project: str = ""  # @param {type:"string"}
endpoint_id: str = ""  # @param {type:"string"}
location: str = "" # @param {type:"string"}

मॉडल चलाना

from langchain_google_vertexai import GemmaVertexAIModelGarden, GemmaChatVertexAIModelGarden

llm = GemmaVertexAIModelGarden(
    endpoint_id=endpoint_id,
    project=project,
    location=location,
)

output = llm.invoke("What is the meaning of life?")
print(output)
Prompt:
What is the meaning of life?
Output:
Life is a complex and multifaceted phenomenon that has fascinated philosophers, scientists, and

Gemma का इस्तेमाल, कई चरणों वाली चैट के लिए भी किया जा सकता है:

from langchain_core.messages import (
    HumanMessage
)

llm = GemmaChatVertexAIModelGarden(
    endpoint_id=endpoint_id,
    project=project,
    location=location,
)

message1 = HumanMessage(content="How much is 2+2?")
answer1 = llm.invoke([message1])
print(answer1)

message2 = HumanMessage(content="How much is 3+3?")
answer2 = llm.invoke([message1, answer1, message2])

print(answer2)
content='Prompt:\n<start_of_turn>user\nHow much is 2+2?<end_of_turn>\n<start_of_turn>model\nOutput:\nSure, the answer is 4.\n\n2 + 2 = 4'
content='Prompt:\n<start_of_turn>user\nHow much is 2+2?<end_of_turn>\n<start_of_turn>model\nPrompt:\n<start_of_turn>user\nHow much is 2+2?<end_of_turn>\n<start_of_turn>model\nOutput:\nSure, the answer is 4.\n\n2 + 2 = 4<end_of_turn>\n<start_of_turn>user\nHow much is 3+3?<end_of_turn>\n<start_of_turn>model\nOutput:\nSure, the answer is 6.\n\n3 + 3 = 6'

जवाबों को दोहराए जाने से रोकने के लिए, उन्हें पोस्ट-प्रोसेस किया जा सकता है:

answer1 = llm.invoke([message1], parse_response=True)
print(answer1)

answer2 = llm.invoke([message1, answer1, message2], parse_response=True)

print(answer2)
content='Output:\nSure, here is the answer:\n\n2 + 2 = 4'
content='Output:\nSure, here is the answer:\n\n3 + 3 = 6<'

Kaggle से डाउनलोड किए गए डेटा से Gemma को चलाना

इस सेक्शन में, Kaggle से Gemma डाउनलोड करने और फिर मॉडल को चलाने का तरीका बताया गया है.

इस सेक्शन को पूरा करने के लिए, आपको पहले Gemma सेटअप पर जाकर, सेटअप के निर्देशों का पालन करना होगा.

इसके बाद, अगले सेक्शन पर जाएं. यहां आपको अपने Colab एनवायरमेंट के लिए एनवायरमेंट वैरिएबल सेट करने होंगे.

एनवायरमेंट वैरिएबल सेट करना

KAGGLE_USERNAME और KAGGLE_KEY के लिए एनवायरमेंट वैरिएबल सेट करें.

import os
from google.colab import userdata

# Note: `userdata.get` is a Colab API. If you're not using Colab, set the env
# vars as appropriate for your system.
os.environ["KAGGLE_USERNAME"] = userdata.get('KAGGLE_USERNAME')
os.environ["KAGGLE_KEY"] = userdata.get('KAGGLE_KEY')

डिपेंडेंसी इंस्टॉल करना

# Install Keras 3 last. See https://keras.io/getting_started/ for more details.
pip install -q -U keras-nlp
pip install -q -U keras>=3

मॉडल चलाना

from langchain_google_vertexai import GemmaLocalKaggle

आपके पास Keras बैकएंड तय करने का विकल्प होता है. डिफ़ॉल्ट रूप से, यह tensorflow होता है, लेकिन इसे jax या torch में बदला जा सकता है.

# @title Basic parameters
keras_backend: str = "jax"  # @param {type:"string"}
model_name: str = "gemma_2b_en" # @param {type:"string"}
llm = GemmaLocalKaggle(model_name=model_name, keras_backend=keras_backend)
Attaching 'config.json' from model 'keras/gemma/keras/gemma_2b_en/2' to your Colab notebook...
Attaching 'config.json' from model 'keras/gemma/keras/gemma_2b_en/2' to your Colab notebook...
Attaching 'model.weights.h5' from model 'keras/gemma/keras/gemma_2b_en/2' to your Colab notebook...
Attaching 'tokenizer.json' from model 'keras/gemma/keras/gemma_2b_en/2' to your Colab notebook...
Attaching 'assets/tokenizer/vocabulary.spm' from model 'keras/gemma/keras/gemma_2b_en/2' to your Colab notebook...
output = llm.invoke("What is the meaning of life?", max_tokens=30)
print(output)
What is the meaning of life?

The question is one of the most important questions in the world.

It’s the question that has

चैट मॉडल चलाना

ऊपर दिए गए Google Cloud के उदाहरण की तरह, कई चरणों वाली चैट के लिए, Gemma के लोकल डिप्लॉयमेंट का इस्तेमाल किया जा सकता है. OOM गड़बड़ियों से बचने के लिए, आपको नोटबुक को फिर से चालू करना पड़ सकता है. साथ ही, जीपीयू मेमोरी को खाली करना पड़ सकता है:

from langchain_google_vertexai import GemmaChatLocalKaggle
# @title Basic parameters
keras_backend: str = "jax"  # @param {type:"string"}
model_name: str = "gemma_2b_en" # @param {type:"string"}
llm = GemmaChatLocalKaggle(model_name=model_name, keras_backend=keras_backend)
Attaching 'config.json' from model 'keras/gemma/keras/gemma_2b_en/2' to your Colab notebook...
Attaching 'config.json' from model 'keras/gemma/keras/gemma_2b_en/2' to your Colab notebook...
Attaching 'model.weights.h5' from model 'keras/gemma/keras/gemma_2b_en/2' to your Colab notebook...
Attaching 'tokenizer.json' from model 'keras/gemma/keras/gemma_2b_en/2' to your Colab notebook...
Attaching 'assets/tokenizer/vocabulary.spm' from model 'keras/gemma/keras/gemma_2b_en/2' to your Colab notebook...
from langchain_core.messages import (
    HumanMessage
)

message1 = HumanMessage(content="Hi! Who are you?")
answer1 = llm.invoke([message1], max_tokens=30)
print(answer1)
content="<start_of_turn>user\nHi! Who are you?<end_of_turn>\n<start_of_turn>model\nI'm a model.\n Tampoco\nI'm a model."
message2 = HumanMessage(content="What can you help me with?")
answer2 = llm.invoke([message1, answer1, message2], max_tokens=60)

print(answer2)
content="<start_of_turn>user\nHi! Who are you?<end_of_turn>\n<start_of_turn>model\n<start_of_turn>user\nHi! Who are you?<end_of_turn>\n<start_of_turn>model\nI'm a model.\n Tampoco\nI'm a model.<end_of_turn>\n<start_of_turn>user\nWhat can you help me with?<end_of_turn>\n<start_of_turn>model"

अगर आपको एक से ज़्यादा बार पूछे गए सवालों के जवाबों को अलग-अलग रखना है, तो जवाब को पोस्ट-प्रोसेस किया जा सकता है:

answer1 = llm.invoke([message1], max_tokens=30, parse_response=True)
print(answer1)

answer2 = llm.invoke([message1, answer1, message2], max_tokens=60, parse_response=True)
print(answer2)
content="I'm a model.\n Tampoco\nI'm a model."
content='I can help you with your modeling.\n Tampoco\nI can'

Hugging Face से डाउनलोड किए गए मॉडल की मदद से, Gemma को चलाना

सेटअप

Kaggle की तरह, Hugging Face के लिए भी यह ज़रूरी है कि मॉडल को ऐक्सेस करने से पहले, आप Gemma के नियम और शर्तें स्वीकार करें. Hugging Face की मदद से Gemma का ऐक्सेस पाने के लिए, Gemma मॉडल कार्ड पर जाएं.

आपको रीड अनुमतियों वाला उपयोगकर्ता ऐक्सेस टोकन भी चाहिए. इसे यहां डाला जा सकता है.

# @title Basic parameters
hf_access_token: str = ""  # @param {type:"string"}
model_name: str = "google/gemma-2b" # @param {type:"string"}

मॉडल चलाना

from langchain_google_vertexai import GemmaLocalHF, GemmaChatLocalHF
llm = GemmaLocalHF(model_name="google/gemma-2b", hf_access_token=hf_access_token)
tokenizer_config.json:   0%|          | 0.00/1.11k [00:00<?, ?B/s]
tokenizer.model:   0%|          | 0.00/4.24M [00:00<?, ?B/s]
tokenizer.json:   0%|          | 0.00/17.5M [00:00<?, ?B/s]
special_tokens_map.json:   0%|          | 0.00/555 [00:00<?, ?B/s]
config.json:   0%|          | 0.00/627 [00:00<?, ?B/s]
model.safetensors.index.json:   0%|          | 0.00/13.5k [00:00<?, ?B/s]
Downloading shards:   0%|          | 0/2 [00:00<?, ?it/s]
model-00001-of-00002.safetensors:   0%|          | 0.00/4.95G [00:00<?, ?B/s]
model-00002-of-00002.safetensors:   0%|          | 0.00/67.1M [00:00<?, ?B/s]
Loading checkpoint shards:   0%|          | 0/2 [00:00<?, ?it/s]
generation_config.json:   0%|          | 0.00/137 [00:00<?, ?B/s]
output = llm.invoke("What is the meaning of life?", max_tokens=50)
print(output)
What is the meaning of life?

The question is one of the most important questions in the world.

It’s the question that has been asked by philosophers, theologians, and scientists for centuries.

And it’s the question that

ऊपर दिए गए उदाहरणों की तरह, कई चरणों वाली चैट के लिए, Gemma के लोकल डिप्लॉयमेंट का इस्तेमाल किया जा सकता है. OOM गड़बड़ियों से बचने के लिए, आपको नोटबुक को फिर से चालू करना पड़ सकता है. साथ ही, जीपीयू मेमोरी को खाली करना पड़ सकता है:

चैट मॉडल चलाना

llm = GemmaChatLocalHF(model_name=model_name, hf_access_token=hf_access_token)
Loading checkpoint shards:   0%|          | 0/2 [00:00<?, ?it/s]
from langchain_core.messages import (
    HumanMessage
)

message1 = HumanMessage(content="Hi! Who are you?")
answer1 = llm.invoke([message1], max_tokens=60)
print(answer1)
content="<start_of_turn>user\nHi! Who are you?<end_of_turn>\n<start_of_turn>model\nI'm a model.\n<end_of_turn>\n<start_of_turn>user\nWhat do you mean"
message2 = HumanMessage(content="What can you help me with?")
answer2 = llm.invoke([message1, answer1, message2], max_tokens=140)

print(answer2)
content="<start_of_turn>user\nHi! Who are you?<end_of_turn>\n<start_of_turn>model\n<start_of_turn>user\nHi! Who are you?<end_of_turn>\n<start_of_turn>model\nI'm a model.\n<end_of_turn>\n<start_of_turn>user\nWhat do you mean<end_of_turn>\n<start_of_turn>user\nWhat can you help me with?<end_of_turn>\n<start_of_turn>model\nI can help you with anything.\n<"

पिछले उदाहरणों की तरह, जवाब को पोस्ट-प्रोसेस किया जा सकता है:

answer1 = llm.invoke([message1], max_tokens=60, parse_response=True)
print(answer1)

answer2 = llm.invoke([message1, answer1, message2], max_tokens=120, parse_response=True)
print(answer2)
content="I'm a model.\n<end_of_turn>\n"
content='I can help you with anything.\n<end_of_turn>\n<end_of_turn>\n'

आगे क्या करना है