mirror of
https://github.com/GoogleCloudPlatform/vertex-ai-samples.git
synced 2026-09-26 14:42:04 +00:00
fine tuning: auto error detection (#2539)
This commit is contained in:
@@ -457,7 +457,7 @@ def _save_results(results: List[NotebookExecutionResult],
|
||||
error_type = ''
|
||||
elif '500 Internal' in result.error_message or 'INTERNAL' in result.error_message or 'internal error' in result.error_message:
|
||||
error_type = 'INTERNAL'
|
||||
elif 'context deadline exceeded' in result.error_message:
|
||||
elif 'context deadline exceeded' in result.error_message or 'TIMEOUT' in result.error_message:
|
||||
error_type = 'TIMEOUT'
|
||||
elif 'Quota' in result.error_message or 'quotas are exceeded' in result.error_message:
|
||||
error_type = 'QUOTA'
|
||||
|
||||
@@ -5,3 +5,4 @@ notebooks/official/prediction/llm_streaming_prediction.ipynb
|
||||
notebooks/official/migration/sdk-automl-text-classification-batch-prediction.ipynb
|
||||
notebooks/official/vizier/get_started_vertex_vizier.ipynb
|
||||
notebooks/official/workbench/sentiment_analysis/Sentiment_Analysis.ipynb
|
||||
notebooks/official/model_monitoring/get_started_with_model_monitoring_automl.ipynb
|
||||
|
||||
|
@@ -1,3 +1,4 @@
|
||||
notebook,status
|
||||
prediction/llm_streaming_prediction.ipynb,wait_for_fix
|
||||
custom/get_started_with_vertex_endpoint_and_shared_vm.ipynb,issue 2527
|
||||
feature_store/online_feature_serving_and_fetching_bigquery_data_with_feature_store.ipynb,wait_for_reaper
|
||||
@@ -8,10 +9,11 @@ explainable_ai/sdk_custom_image_classification_online_explain.ipynb,issue 2528
|
||||
explainable_ai/sdk_custom_tabular_regression_online_explain.ipynb,issue 2528
|
||||
explainable_ai/sdk_automl_tabular_binary_classification_batch_explain.ipynb,issue 2528
|
||||
explainable_ai/xai_image_classification_feature_attributions.ipynb,issue 2528
|
||||
matching_engine,sdk_matching_engine_create_stack_overflow_embeddings.ipynb,internal
|
||||
matching_engine,sdk_matching_engine_create_stack_overflow_embeddings.ipynb,issue 2530
|
||||
automl/automl_forecasting_bqml_arima_plus_comparison.ipynb,flaky
|
||||
model_evaluation/custom_tabular_regression_model_evaluation.ipynb,regr
|
||||
experiments/get_started_with_vertex_experiments.ipynb,regr
|
||||
experiments/comparing_local_trained_models.ipynb,regr
|
||||
generative_ai/tune_peft.ipynb,internal
|
||||
pipelines/custom_model_training_and_batch_prediction.ipynb,regr
|
||||
feature_store/online_feature_serving_and_fetching_bigquery_data_with_feature_store_optimized.ipynb,wait_for_reaper
|
||||
|
Reference in New Issue
Block a user