-
Notifications
You must be signed in to change notification settings - Fork 2k
feat: gemma2 models samples #3869
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
'use strict'; | ||
|
||
async function gemma2PredictGpu(predictionServiceClient) { | ||
// [START generativeaionvertexai_gemma2_predict_gpu] | ||
// Imports the Google Cloud Prediction Service Client library | ||
const { | ||
// TODO(developer): Uncomment PredictionServiceClient before running the sample. | ||
// PredictionServiceClient, | ||
helpers, | ||
} = require('@google-cloud/aiplatform'); | ||
/** | ||
* TODO(developer): Update these variables before running the sample. | ||
*/ | ||
const projectId = 'your-project-id'; | ||
const endpointRegion = 'your-vertex-endpoint-region'; | ||
const endpointId = 'your-vertex-endpoint-id'; | ||
|
||
// Default configuration | ||
const config = {maxOutputTokens: 1024, temperature: 0.9, topP: 1.0, topK: 1}; | ||
// Prompt used in the prediction | ||
const prompt = 'Why is the sky blue?'; | ||
|
||
// Encapsulate the prompt in a correct format for GPUs | ||
// Example format: [{inputs: 'Why is the sky blue?', parameters: {temperature: 0.9}}] | ||
const input = { | ||
inputs: prompt, | ||
parameters: config, | ||
}; | ||
|
||
// Convert input message to a list of GAPIC instances for model input | ||
const instances = [helpers.toValue(input)]; | ||
|
||
// TODO(developer): Uncomment apiEndpoint and predictionServiceClient before running the sample. | ||
// const apiEndpoint = `${endpointRegion}-aiplatform.googleapis.com`; | ||
|
||
// Create a client | ||
// predictionServiceClient = new PredictionServiceClient({apiEndpoint}); | ||
|
||
// Call the Gemma2 endpoint | ||
const gemma2Endpoint = `projects/${projectId}/locations/${endpointRegion}/endpoints/${endpointId}`; | ||
|
||
const [response] = await predictionServiceClient.predict({ | ||
endpoint: gemma2Endpoint, | ||
instances, | ||
}); | ||
|
||
const predictions = response.predictions; | ||
const text = predictions[0].stringValue; | ||
|
||
console.log('Predictions:', text); | ||
// [END generativeaionvertexai_gemma2_predict_gpu] | ||
return text; | ||
} | ||
|
||
module.exports = gemma2PredictGpu; | ||
|
||
// TODO(developer): Uncomment below lines before running the sample. | ||
// gemma2PredictGpu(...process.argv.slice(2)).catch(err => { | ||
// console.error(err.message); | ||
// process.exitCode = 1; | ||
// }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
'use strict'; | ||
|
||
async function gemma2PredictTpu(predictionServiceClient) { | ||
// [START generativeaionvertexai_gemma2_predict_tpu] | ||
// Imports the Google Cloud Prediction Service Client library | ||
const { | ||
// TODO(developer): Uncomment PredictionServiceClient before running the sample. | ||
// PredictionServiceClient, | ||
helpers, | ||
} = require('@google-cloud/aiplatform'); | ||
/** | ||
* TODO(developer): Update these variables before running the sample. | ||
*/ | ||
const projectId = 'your-project-id'; | ||
const endpointRegion = 'your-vertex-endpoint-region'; | ||
const endpointId = 'your-vertex-endpoint-id'; | ||
|
||
// Prompt used in the prediction | ||
const prompt = 'Why is the sky blue?'; | ||
|
||
// Encapsulate the prompt in a correct format for TPUs | ||
// Example format: [{prompt: 'Why is the sky blue?', temperature: 0.9}] | ||
const input = { | ||
prompt, | ||
// Parameters for default configuration | ||
maxOutputTokens: 1024, | ||
temperature: 0.9, | ||
topP: 1.0, | ||
topK: 1, | ||
}; | ||
|
||
// Convert input message to a list of GAPIC instances for model input | ||
const instances = [helpers.toValue(input)]; | ||
|
||
// TODO(developer): Uncomment apiEndpoint and predictionServiceClient before running the sample. | ||
// const apiEndpoint = `${endpointRegion}-aiplatform.googleapis.com`; | ||
|
||
// Create a client | ||
// predictionServiceClient = new PredictionServiceClient({apiEndpoint}); | ||
|
||
// Call the Gemma2 endpoint | ||
const gemma2Endpoint = `projects/${projectId}/locations/${endpointRegion}/endpoints/${endpointId}`; | ||
|
||
const [response] = await predictionServiceClient.predict({ | ||
endpoint: gemma2Endpoint, | ||
instances, | ||
}); | ||
|
||
const predictions = response.predictions; | ||
const text = predictions[0].stringValue; | ||
|
||
console.log('Predictions:', text); | ||
// [END generativeaionvertexai_gemma2_predict_tpu] | ||
return text; | ||
} | ||
|
||
module.exports = gemma2PredictTpu; | ||
|
||
// TODO(developer): Uncomment below lines before running the sample. | ||
// gemma2PredictTpu(...process.argv.slice(2)).catch(err => { | ||
// console.error(err.message); | ||
// process.exitCode = 1; | ||
// }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
* Copyright 2024 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const {expect} = require('chai'); | ||
const {afterEach, describe, it} = require('mocha'); | ||
const sinon = require('sinon'); | ||
const gemma2PredictGpu = require('../gemma2PredictGpu.js'); | ||
const gemma2PredictTpu = require('../gemma2PredictTpu.js'); | ||
|
||
const gpuResponse = `The sky appears blue due to a phenomenon called **Rayleigh scattering**. | ||
**Here's how it works:** | ||
1. **Sunlight:** Sunlight is composed of all the colors of the rainbow. | ||
2. **Earth's Atmosphere:** When sunlight enters the Earth's atmosphere, it collides with tiny particles like nitrogen and oxygen molecules. | ||
3. **Scattering:** These particles scatter the sunlight in all directions. However, blue light (which has a shorter wavelength) is scattered more effectively than other colors. | ||
4. **Our Perception:** As a result, we see a blue sky because the scattered blue light reaches our eyes from all directions. | ||
**Why not other colors?** | ||
* **Violet light** has an even shorter wavelength than blue and is scattered even more. However, our eyes are less sensitive to violet light, so we perceive the sky as blue. | ||
* **Longer wavelengths** like red, orange, and yellow are scattered less and travel more directly through the atmosphere. This is why we see these colors during sunrise and sunset, when sunlight has to travel through more of the atmosphere. | ||
`; | ||
|
||
const tpuResponse = | ||
'The sky appears blue due to a phenomenon called **Rayleigh scattering**.'; | ||
|
||
describe('Gemma2 predictions', async () => { | ||
const predictionServiceClientMock = { | ||
predict: sinon.stub().resolves([]), | ||
}; | ||
|
||
afterEach(() => { | ||
sinon.restore(); | ||
}); | ||
|
||
it('should run interference with GPU', async () => { | ||
predictionServiceClientMock.predict.resolves([ | ||
{ | ||
predictions: [ | ||
{ | ||
stringValue: gpuResponse, | ||
}, | ||
], | ||
}, | ||
]); | ||
|
||
const output = await gemma2PredictGpu(predictionServiceClientMock); | ||
|
||
expect(output).include('Rayleigh scattering'); | ||
}); | ||
|
||
it('should run interference with TPU', async () => { | ||
predictionServiceClientMock.predict.resolves([ | ||
{ | ||
predictions: [ | ||
{ | ||
stringValue: tpuResponse, | ||
}, | ||
], | ||
}, | ||
]); | ||
|
||
const output = await gemma2PredictTpu(predictionServiceClientMock); | ||
|
||
expect(output).include('Rayleigh scattering'); | ||
}); | ||
}); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.