Predict

Gets prediction using the predict method.

Code sample

Python

Before trying this sample, follow the Python setup instructions in the Vertex AI quickstart using client libraries . For more information, see the Vertex AI Python API reference documentation .

To authenticate to Vertex AI, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  from 
  
 typing 
  
 import 
 Dict 
 from 
  
 google.cloud 
  
 import 
 aiplatform 
 from 
  
 google.protobuf 
  
 import 
 json_format 
 from 
  
 google.protobuf.struct_pb2 
  
 import 
 Value 
 def 
  
 predict_sample 
 ( 
 project 
 : 
 str 
 , 
 endpoint_id 
 : 
 str 
 , 
 instance_dict 
 : 
 Dict 
 , 
 location 
 : 
 str 
 = 
 "us-central1" 
 , 
 api_endpoint 
 : 
 str 
 = 
 "us-central1-aiplatform.googleapis.com" 
 , 
 ): 
 # The AI Platform services require regional API endpoints. 
 client_options 
 = 
 { 
 "api_endpoint" 
 : 
 api_endpoint 
 } 
 # Initialize client that will be used to create and send requests. 
 # This client only needs to be created once, and can be reused for multiple requests. 
 client 
 = 
 aiplatform 
 . 
 gapic 
 . 
  PredictionServiceClient 
 
 ( 
 client_options 
 = 
 client_options 
 ) 
 instance 
 = 
 json_format 
 . 
 ParseDict 
 ( 
 instance_dict 
 , 
 Value 
 ()) 
 instances 
 = 
 [ 
 instance 
 ] 
 parameters_dict 
 = 
 {} 
 parameters 
 = 
 json_format 
 . 
 ParseDict 
 ( 
 parameters_dict 
 , 
 Value 
 ()) 
 endpoint 
 = 
 client 
 . 
  endpoint_path 
 
 ( 
 project 
 = 
 project 
 , 
 location 
 = 
 location 
 , 
 endpoint 
 = 
 endpoint_id 
 ) 
 response 
 = 
 client 
 . 
  predict 
 
 ( 
 endpoint 
 = 
 endpoint 
 , 
 instances 
 = 
 instances 
 , 
 parameters 
 = 
 parameters 
 ) 
 print 
 ( 
 "response" 
 ) 
 print 
 ( 
 " deployed_model_id:" 
 , 
 response 
 . 
 deployed_model_id 
 ) 
 predictions 
 = 
 response 
 . 
 predictions 
 for 
 prediction 
 in 
 predictions 
 : 
 print 
 ( 
 " prediction:" 
 , 
 dict 
 ( 
 prediction 
 )) 
 

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser .

Create a Mobile Website
View Site in Mobile | Classic
Share by: