4

I am new to google cloud service VERTEX AI.

I am looking to Create, train, and deploy an AutoML text classification model through .Net application. I did not find anything for .Net with Vertex AI. If someone can please guide my to the location or any .Net code samples, will be really helpful.

tt0206
  • 747
  • 3
  • 9
  • 24

2 Answers2

2

You can check Google.Cloud.AutoML.V1 NuGet package for .NET. Additionally, check the Github of Google.Cloud.AutoML.V1 NuGet Package where you can see the sample codes.

Jose Gutierrez Paliza
  • 1,373
  • 1
  • 5
  • 12
1

The .NET library for Vertex AI is Google.Cloud.AIPlatform.V1 (documentation).

We don't have samples for .NET I'm afraid, but I expect that if you follow through the Java samples, you can adapt them easily for .NET.

Jon Skeet
  • 1,421,763
  • 867
  • 9,128
  • 9,194
  • Can I get a batch prediction for video action recognition as in other libraries? https://cloud.google.com/vertex-ai/docs/video-data/action-recognition/get-predictions – Mr Patience Oct 26 '22 at 17:50
  • 1
    @MrPatience: I would assume so, given that the other libraries are just making RPCs as well. The Java example should be relatively straightforward to translate into C#. – Jon Skeet Oct 26 '22 at 17:52
  • @JonSkeet Hi, can we make requests to VertexAI Generative AI Language model 'text-bison' with this library on .NET? Thanks – fatihyildizhan Jul 16 '23 at 07:43
  • 1
    @fatihyildizhan: I don't know, I'm afraid. Anything that can be done from the *published* protos in https://github.com/googleapis/googleapis should be doable from the .NET client, but I don't know details about that API, and there may be some aspects that aren't published in the protos yet. – Jon Skeet Jul 16 '23 at 14:45