Run custom training job with pre-built container in Vertex AI

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ต.ค. 2024

ความคิดเห็น • 17

  • @algorithmo134
    @algorithmo134 หลายเดือนก่อน

    excellent tutorial! Do you have a video on pipeline with vertex AI?

  • @aljauzi1941
    @aljauzi1941 3 หลายเดือนก่อน

    this is very helpful, thank you

  • @AdhvaithG
    @AdhvaithG 3 หลายเดือนก่อน

    Hi ... I wanted to take a moment to express my appreciation for your videos. They have been incredibly helpful as I learn about GCP, and your clear explanations make complex topics much more accessible.
    One question here, here every thing we are doing it manually using GUI and alternatively can we do the same process using Python SDK right from building package and pushing the package to Cloud Bucket and then training setup, Model Registry, Deployment and end point creation? If yes, when you get a time can you please post a video on this?

    • @cloud4datascience772
      @cloud4datascience772  3 หลายเดือนก่อน +1

      Thank you for the kind words! You are right, majority of the things can be done also by using Python SDK or gcloud CLI tool. I always try to focus first on the GUI approach as once you learn it it’s much easier to automate entire process with code. Unfortunately due to lot of project work on my end recently, I am not planning any new videos on that topic in the nearest future. I might come back to it, but I don’t know when it might happen. Hope that this video will be sufficient starting point for you!

  • @luismendezescobar9049
    @luismendezescobar9049 2 ปีที่แล้ว +2

    Excellent tutorial , very easy to follow up 😀

    • @cloud4datascience772
      @cloud4datascience772  2 ปีที่แล้ว

      Thank you! I am super happy that you found this tutorial easy to follow ;)

  • @sushmitarai4471
    @sushmitarai4471 ปีที่แล้ว

    Great tutorial, I have a question, is it optimal or good practice to initiate training job from cloud run? If so, can you add short description on how you'd do it? I'm trying to automate custom container training on vertex ai through cloud workflow service where I can invoke cloud run job since there is no direct support of workflow support to vertex ai.

    • @cloud4datascience772
      @cloud4datascience772  ปีที่แล้ว +2

      I am not sure if that is the best practice to initiate it from this service, it depends on a lot of things. If that is the service that you would like to use maybe you can use this together with Cloud Scheduler and on a defined schedule Cloud Scheduler would trigger the Cloud Run container with a training job. This sounds like a simple yet correct architecture to me :)

    • @sushmitarai4471
      @sushmitarai4471 ปีที่แล้ว

      Thank you, that was great help.@@cloud4datascience772

  • @isak371
    @isak371 ปีที่แล้ว

    great video

  • @angelwidatti
    @angelwidatti ปีที่แล้ว

    i followed your steps, but when i try to run, i get an error: Unable to start training due to the following error: Required field is not set. Where possibly could i be wrong? I tried various factors but nothing worked
    (I am training an image classification model)

    • @cloud4datascience772
      @cloud4datascience772  ปีที่แล้ว

      Hey, are you using my code for training from the task.py file or your own? Also, what is the command that is raising this error? There might be a possibility that Google has changed the mandatory fields for some API calls, please give me some more details and possibly I will be able to figure out what is going on :)

    • @angelwidatti
      @angelwidatti ปีที่แล้ว

      @@cloud4datascience772 Thank you for your reply. I am using my own file for this and i am training a image processing model . My script runs well on local machine, but while training it on GCP, it fails giving the above error. I have input all the parameters as mentioned in your video, I followed the steps but still I get an error. It does not provide any specific field because of which the error is generating, it just says, field not set

  • @simplyswaras
    @simplyswaras ปีที่แล้ว

    I tried to use the created model in batch / online prediction.
    I get "Prediction failed: Exception during sklearn prediction: 'DecisionTreeClassifier' object has no attribute 'n_features_'" or
    "Prediction failed: Exception during sklearn prediction: float() argument must be a string or a number, not 'dict'"
    Pls guide how to test this model with online /batch prediction . what should be the format of test data

    • @cloud4datascience772
      @cloud4datascience772  ปีที่แล้ว

      Hi, I think it could be a good idea to deploy your model to the local endpoint and test it there. There is a very helpful section on that: cloud.google.com/vertex-ai/docs/predictions/get-predictions#test_your_model_locally - On this page, you can also find more details regarding the input data requirements.

    • @Angel-ou2ce
      @Angel-ou2ce 10 หลายเดือนก่อน

      I have the same problem, have you managed to solve it?