Compare commits

...
Author SHA1 Message Date
Andrew Ferlitsch 2d53be8da7 fix: workaround for running > 24hrs 2023-02-28 16:56:44 +00:00
Andrew Ferlitsch 774edaf885 update tag/linkback 2023-02-22 22:46:22 +00:00
@@ -65,7 +65,7 @@
"\n",
"You can find more details about the model at [Hugging Face Hub](https://huggingface.co/bert-base-cased). For more notebooks with the state of the art PyTorch/Tensorflow/JAX, you can explore [Hugging FaceNotebooks](https://huggingface.co/transformers/notebooks.html).\n",
"\n",
"Learn more about [Vertex AI Training](https://cloud.google.com/vertex-ai/docs/training/custom-training)."
"Learn more about [Custom training](https://cloud.google.com/vertex-ai/docs/training/custom-training)."
]
},
{
@@ -1301,12 +1301,26 @@
"- `machine_type`: Mahcine type on which the job needs to run.\n",
"- `accelerator_type`: Hardware accelerator type for running the job. One of _ACCELERATOR_TYPE_UNSPECIFIED_,\n",
" _NVIDIA_TESLA_K80_, _NVIDIA_TESLA_P100_, _NVIDIA_TESLA_V100_, _NVIDIA_TESLA_P4_,\n",
" _NVIDIA_TESLA_T4_.\n",
" _NVIDIA_TESLA_T4_, _NVIDIA_TELSA_A100_\n",
"- `accelerator_count`: The number of accelerators to attach to a worker replica.\n",
"- `replica_count`: The number of worker replicas.\n",
"- `args`: Command line arguments to be passed to the Python script.\n",
"\n",
"Learn more about Vertex AI's [Custom Python-Package Trainining](https://cloud.google.com/python/docs/reference/aiplatform/latest/google.cloud.aiplatform.CustomPythonPackageTrainingJob)."
"Learn more about Vertex AI's [Custom Python-Package Trainining](https://cloud.google.com/python/docs/reference/aiplatform/latest/google.cloud.aiplatform.CustomPythonPackageTrainingJob).\n",
"\n",
"*Note*: This training job may take over 24 hours."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "b3709beb73e2"
},
"outputs": [],
"source": [
"if os.getenv(\"IS_TESTING\"):\n",
" sys.exit(0)"
]
},
{