Compare commits

...
Author SHA1 Message Date
Andrew Ferlitsch 6418bef8ff fix: missing import 2022-12-09 22:15:47 +00:00
Andrew Ferlitsch b924c87d0e fix: dependencies 2022-12-09 22:03:45 +00:00
Andrew Ferlitsch bbcffc4536 fix: install/import issues 2022-12-09 02:31:34 +00:00
Andrew Ferlitsch 5b705a78e6 fix: install/import issues 2022-12-09 01:00:50 +00:00
Andrew Ferlitsch 2e470dab2f fix: install/import issues 2022-12-09 00:48:25 +00:00
Andrew Ferlitsch cdfe4a7269 fix: install/import issues 2022-12-09 00:35:38 +00:00
Andrew Ferlitsch ae032af5c2 fix: install/import issues 2022-12-09 00:23:37 +00:00
Andrew Ferlitsch fc6b302d51 fix: install/import issues 2022-12-08 23:33:00 +00:00
Andrew Ferlitsch a9be1fd57d fix: install/import issues 2022-12-08 21:21:43 +00:00
Andrew Ferlitsch e4f326da9a fix: install/import issues 2022-12-08 21:03:10 +00:00
Andrew Ferlitsch fb2df718e1 fix: install/import issues 2022-12-08 20:47:38 +00:00
Andrew Ferlitsch d8a19272e3 fix: install/import issues 2022-12-08 20:38:51 +00:00
Andrew Ferlitsch 246ff07191 fix: install/import issues 2022-12-08 20:24:12 +00:00
Andrew Ferlitsch bdbb68b381 fix: install/import issues 2022-12-08 20:11:30 +00:00
Andrew Ferlitsch 2f92c5fe5a fix: install/import issues 2022-12-08 19:58:43 +00:00
Andrew Ferlitsch 0c3cd70940 fix: install/import issues 2022-12-08 19:48:27 +00:00
Andrew Ferlitsch 48f82167e9 fix: install/import issues 2022-12-08 19:33:10 +00:00
Andrew Ferlitsch a17958ca0a fix: install/import issues 2022-12-08 19:22:22 +00:00
Andrew Ferlitsch f95d4af2ad fix: install/import issues 2022-12-08 19:08:55 +00:00
Andrew Ferlitsch 52ddc2ca7a fix: install/import issues 2022-12-08 18:19:24 +00:00
Andrew Ferlitsch 9f436dbe3d fix: install/import issues 2022-12-07 23:30:42 +00:00
Andrew Ferlitsch 164c37331f fix: install/import issues 2022-12-07 23:16:27 +00:00
Andrew Ferlitsch 4ca502beec fix: install/import issues 2022-12-07 23:05:36 +00:00
Andrew Ferlitsch eff88ceb47 fix: install/import issues 2022-12-07 22:50:18 +00:00
Andrew FerlitschandGitHub 6e7db6512e Update batch_prediction_model_monitoring.ipynb 2022-12-07 14:46:47 -08:00
Andrew FerlitschandGitHub d6c7419994 Update batch_prediction_model_monitoring.ipynb 2022-12-07 12:27:02 -08:00
Andrew FerlitschandGitHub 554d60b540 Update batch_prediction_model_monitoring.ipynb 2022-12-07 12:14:20 -08:00
Andrew FerlitschandGitHub 3f24397dfc fix package issue when testing 2022-12-07 11:59:16 -08:00
Andrew Ferlitsch 9566da8444 fix: set links to official 2022-12-07 18:55:01 +00:00
Andrew Ferlitsch 94362637b4 feat: migrate notebook to official 2022-12-06 21:00:27 +00:00
@@ -35,17 +35,17 @@
"\n",
"<table align=\"left\">\n",
" <td>\n",
" <a href=\"https://colab.research.google.com/github/GoogleCloudPlatform/vertex-ai-samples/blob/main/notebooks/community/model_monitoring/batch_prediction_model_monitoring.ipynb\">\n",
" <a href=\"https://colab.research.google.com/github/GoogleCloudPlatform/vertex-ai-samples/blob/main/notebooks/official/model_monitoring/batch_prediction_model_monitoring.ipynb\">\n",
" <img src=\"https://cloud.google.com/ml-engine/images/colab-logo-32px.png\" alt=\"Colab logo\"> Open in Colab\n",
" </a>\n",
" </td>\n",
" <td>\n",
" <a href=\"https://github.com/GoogleCloudPlatform/vertex-ai-samples/blob/main/notebooks/community/model_monitoring/batch_prediction_model_monitoring.ipynb\">\n",
" <a href=\"https://github.com/GoogleCloudPlatform/vertex-ai-samples/blob/main/notebooks/official/model_monitoring/batch_prediction_model_monitoring.ipynb\">\n",
" <img src=\"https://cloud.google.com/ml-engine/images/github-logo-32px.png\" alt=\"GitHub logo\">\n",
" View on GitHub\n",
" </a>\n",
" </td><td>\n",
" <a href=\"https://console.cloud.google.com/ai-platform/notebooks/deploy-notebook?name=Model%20Monitoring&download_url=https%3A%2F%2Fraw.githubusercontent.com%2FGoogleCloudPlatform%2Fvertex-ai-samples%2Fmain%2Fnotebooks%2Fcommunity%2Fmodel_monitoring%2Fbatch_prediction_model_monitoring.ipynb\">\n",
" <a href=\"https://console.cloud.google.com/ai-platform/notebooks/deploy-notebook?name=Model%20Monitoring&download_url=https%3A%2F%2Fraw.githubusercontent.com%2FGoogleCloudPlatform%2Fvertex-ai-samples%2Fmain%2Fnotebooks%2Fofficial%2Fmodel_monitoring%2Fbatch_prediction_model_monitoring.ipynb\">\n",
" <img src=\"https://www.gstatic.com/cloud/images/navigation/vertex-ai.svg\" alt=\"Google Cloud Notebooks\">Open in Workbench AI Notebook\n",
" </a>\n",
" </td> \n",
@@ -173,9 +173,11 @@
" USER_FLAG = \"--user\"\n",
"\n",
"# Install Python package dependencies.\n",
"! pip3 install -q {USER_FLAG} tensorflow-data-validation \\\n",
" google-api-core \\\n",
" google-cloud-aiplatform"
"! pip3 install -q {USER_FLAG} google-cloud-aiplatform \\\n",
" tensorflow-data-validation \\\n",
" protobuf==3.20.3\n",
"\n",
"! pip3 install -q {USER_FLAG} cachetools==5.2.0"
]
},
{
@@ -883,6 +885,8 @@
},
"outputs": [],
"source": [
"import time\n",
"\n",
"# If auto-testing, wait for request completion\n",
"if os.getenv(\"IS_TESTING\"):\n",
" time.sleep(1800)"