2

I have a Jupyter Notebook containing the model creation, model deployment on the AI Platform, and creating versions. I am able to get the predictions for my model. Now I am trying to build a CI/CD pipeline automating the entire process. Is there a way that I can pass in my entire Jupyter notebook as a component in AI Platform Pipelines?

gogasca
  • 9,283
  • 6
  • 80
  • 125

1 Answers1

0

You can use Papermill to create a parameterized notebook, which can then be executed via CI/CD. This article explains a bit more in detail in the 'Reproducible Notebooks' section.

accraze
  • 1,522
  • 7
  • 20
  • 46