-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Joanna Grycz
committed
Sep 20, 2024
1 parent
023f53b
commit a7a1616
Showing
2 changed files
with
130 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,73 @@ | ||
// 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. | ||
|
||
// [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'); | ||
|
||
async function gemma2PredictGpu(predictionServiceClient) { | ||
/** | ||
* TODO(developer): Update/uncomment 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; | ||
|
||
gemma2PredictGpu(...process.argv.slice(2)).catch(err => { | ||
console.error(err.message); | ||
process.exitCode = 1; | ||
}); |
This file contains 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,57 @@ | ||
/* | ||
* 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 text = `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. | ||
`; | ||
|
||
describe('Gemma2 predictions', async () => { | ||
const predictionServiceClientMock = { | ||
predict: sinon.stub().resolves([ | ||
{ | ||
predictions: [ | ||
{ | ||
stringValue: text, | ||
}, | ||
], | ||
}, | ||
]), | ||
}; | ||
|
||
afterEach(() => { | ||
sinon.restore(); | ||
}); | ||
|
||
it('should run interference with GPU', async () => { | ||
const output = await gemma2PredictGpu(predictionServiceClientMock); | ||
|
||
expect(output).include('Rayleigh scattering'); | ||
}); | ||
}); |