├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── 01-pipeline-custom-xgb ├── deploy │ ├── Dockerfile │ ├── deploy_script.py │ └── requirements.txt ├── generatedata │ ├── Dockerfile │ ├── generatedata_script.py │ └── requirements.txt ├── pipeline.py ├── pipeline_custom.png ├── skaffold.yaml └── train │ ├── Dockerfile │ ├── requirements.txt │ └── trainer_script.py ├── 02-pipeline-gcp-operators ├── .DS_Store ├── pipeline.py └── pipeline_gccaip.png ├── 03-pipeline-lwpython-tf ├── .DS_Store ├── pipeline.py └── pipeline_lwpython.png ├── 04-pipeline-lwpython-xgb ├── .DS_Store ├── pipeline.py ├── pipeline_dev.py └── pipeline_lwpython_xgb.png ├── 05-pipeline-tfx-vertex ├── penguin_trainer.py ├── pipeline.png └── pipeline.py ├── 06-pipeline-retraining ├── .DS_Store ├── 000000000000.csv ├── Dockerfile ├── archive │ ├── BORRAR-recurring-pipeline.py │ ├── initial-pipeline.py │ ├── main_backup.py │ └── utils │ │ ├── config-long.json │ │ └── test-stats.py ├── config.json ├── main.py ├── monitor-create.py ├── monitor-trigger.py ├── retraining.py ├── tables_eval_component.yaml └── trainer │ └── train.py ├── 07-featurestore ├── fraud_data_kaggle_5000.csv ├── fs_batch_serving.py ├── fs_create_and_import_fraud.py ├── fs_create_and_import_gapic.py ├── fs_create_and_import_ulb.py ├── fs_delete.py ├── fs_online_serving.py ├── read_entity_instance.csv ├── xgboost_model.py └── xgboost_new.py ├── 10-training-tables-ulb ├── custom_training_simple.py └── script_custom_training.py ├── 11-training-tables-ulb-gpu ├── custom_training_simple_gpu.py └── script_custom_training_gpu.py ├── 12-training-tables-ulb-ht ├── custom_training_simple_ht.py └── script_custom_training_ht.py ├── 13-training-tables-iris ├── mbsdk_all.py └── training │ ├── Dockerfile │ └── train_script.py ├── 14-experiments ├── 01-local-training │ ├── experiments-simple.py │ ├── experiments.py │ └── helpers.py ├── 02-experiment-lineage │ ├── experiments.py │ └── helpers.py └── 03-tensorboard │ └── profiler.py ├── 15-tabular-workflows-tabnet ├── online_predict.py └── pipeline.py ├── 20-prediction ├── batch_predict.py ├── batch_ulb_gcs_source_3.jsonl ├── batch_ulb_gcs_source_31.jsonl ├── batch_ulb_gcs_source_32.jsonl ├── batch_ulb_gcs_source_names.jsonl ├── batch_ulb_gcs_source_names_1.jsonl ├── batch_ulb_gcs_source_names_1_1.jsonl ├── batch_ulb_gcs_source_names_1_quotes.jsonl ├── batch_ulb_gcs_source_names_5.jsonl ├── batch_ulb_gcs_source_names_5_list.jsonl ├── batch_ulb_gcs_source_names_list.jsonl ├── local_predict.py └── online_predict.py ├── README.md ├── dataset ├── fraud_data_kaggle_5000.csv └── ulb.md └── roots.pem /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /01-pipeline-custom-xgb/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/01-pipeline-custom-xgb/deploy/Dockerfile -------------------------------------------------------------------------------- /01-pipeline-custom-xgb/deploy/deploy_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/01-pipeline-custom-xgb/deploy/deploy_script.py -------------------------------------------------------------------------------- /01-pipeline-custom-xgb/deploy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/01-pipeline-custom-xgb/deploy/requirements.txt -------------------------------------------------------------------------------- /01-pipeline-custom-xgb/generatedata/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/01-pipeline-custom-xgb/generatedata/Dockerfile -------------------------------------------------------------------------------- /01-pipeline-custom-xgb/generatedata/generatedata_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/01-pipeline-custom-xgb/generatedata/generatedata_script.py -------------------------------------------------------------------------------- /01-pipeline-custom-xgb/generatedata/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/01-pipeline-custom-xgb/generatedata/requirements.txt -------------------------------------------------------------------------------- /01-pipeline-custom-xgb/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/01-pipeline-custom-xgb/pipeline.py -------------------------------------------------------------------------------- /01-pipeline-custom-xgb/pipeline_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/01-pipeline-custom-xgb/pipeline_custom.png -------------------------------------------------------------------------------- /01-pipeline-custom-xgb/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/01-pipeline-custom-xgb/skaffold.yaml -------------------------------------------------------------------------------- /01-pipeline-custom-xgb/train/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/01-pipeline-custom-xgb/train/Dockerfile -------------------------------------------------------------------------------- /01-pipeline-custom-xgb/train/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/01-pipeline-custom-xgb/train/requirements.txt -------------------------------------------------------------------------------- /01-pipeline-custom-xgb/train/trainer_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/01-pipeline-custom-xgb/train/trainer_script.py -------------------------------------------------------------------------------- /02-pipeline-gcp-operators/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/02-pipeline-gcp-operators/.DS_Store -------------------------------------------------------------------------------- /02-pipeline-gcp-operators/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/02-pipeline-gcp-operators/pipeline.py -------------------------------------------------------------------------------- /02-pipeline-gcp-operators/pipeline_gccaip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/02-pipeline-gcp-operators/pipeline_gccaip.png -------------------------------------------------------------------------------- /03-pipeline-lwpython-tf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/03-pipeline-lwpython-tf/.DS_Store -------------------------------------------------------------------------------- /03-pipeline-lwpython-tf/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/03-pipeline-lwpython-tf/pipeline.py -------------------------------------------------------------------------------- /03-pipeline-lwpython-tf/pipeline_lwpython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/03-pipeline-lwpython-tf/pipeline_lwpython.png -------------------------------------------------------------------------------- /04-pipeline-lwpython-xgb/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/04-pipeline-lwpython-xgb/.DS_Store -------------------------------------------------------------------------------- /04-pipeline-lwpython-xgb/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/04-pipeline-lwpython-xgb/pipeline.py -------------------------------------------------------------------------------- /04-pipeline-lwpython-xgb/pipeline_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/04-pipeline-lwpython-xgb/pipeline_dev.py -------------------------------------------------------------------------------- /04-pipeline-lwpython-xgb/pipeline_lwpython_xgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/04-pipeline-lwpython-xgb/pipeline_lwpython_xgb.png -------------------------------------------------------------------------------- /05-pipeline-tfx-vertex/penguin_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/05-pipeline-tfx-vertex/penguin_trainer.py -------------------------------------------------------------------------------- /05-pipeline-tfx-vertex/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/05-pipeline-tfx-vertex/pipeline.png -------------------------------------------------------------------------------- /05-pipeline-tfx-vertex/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/05-pipeline-tfx-vertex/pipeline.py -------------------------------------------------------------------------------- /06-pipeline-retraining/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/.DS_Store -------------------------------------------------------------------------------- /06-pipeline-retraining/000000000000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/000000000000.csv -------------------------------------------------------------------------------- /06-pipeline-retraining/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/Dockerfile -------------------------------------------------------------------------------- /06-pipeline-retraining/archive/BORRAR-recurring-pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/archive/BORRAR-recurring-pipeline.py -------------------------------------------------------------------------------- /06-pipeline-retraining/archive/initial-pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/archive/initial-pipeline.py -------------------------------------------------------------------------------- /06-pipeline-retraining/archive/main_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/archive/main_backup.py -------------------------------------------------------------------------------- /06-pipeline-retraining/archive/utils/config-long.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/archive/utils/config-long.json -------------------------------------------------------------------------------- /06-pipeline-retraining/archive/utils/test-stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/archive/utils/test-stats.py -------------------------------------------------------------------------------- /06-pipeline-retraining/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/config.json -------------------------------------------------------------------------------- /06-pipeline-retraining/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/main.py -------------------------------------------------------------------------------- /06-pipeline-retraining/monitor-create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/monitor-create.py -------------------------------------------------------------------------------- /06-pipeline-retraining/monitor-trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/monitor-trigger.py -------------------------------------------------------------------------------- /06-pipeline-retraining/retraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/retraining.py -------------------------------------------------------------------------------- /06-pipeline-retraining/tables_eval_component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/tables_eval_component.yaml -------------------------------------------------------------------------------- /06-pipeline-retraining/trainer/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/06-pipeline-retraining/trainer/train.py -------------------------------------------------------------------------------- /07-featurestore/fraud_data_kaggle_5000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/07-featurestore/fraud_data_kaggle_5000.csv -------------------------------------------------------------------------------- /07-featurestore/fs_batch_serving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/07-featurestore/fs_batch_serving.py -------------------------------------------------------------------------------- /07-featurestore/fs_create_and_import_fraud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/07-featurestore/fs_create_and_import_fraud.py -------------------------------------------------------------------------------- /07-featurestore/fs_create_and_import_gapic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/07-featurestore/fs_create_and_import_gapic.py -------------------------------------------------------------------------------- /07-featurestore/fs_create_and_import_ulb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/07-featurestore/fs_create_and_import_ulb.py -------------------------------------------------------------------------------- /07-featurestore/fs_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/07-featurestore/fs_delete.py -------------------------------------------------------------------------------- /07-featurestore/fs_online_serving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/07-featurestore/fs_online_serving.py -------------------------------------------------------------------------------- /07-featurestore/read_entity_instance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/07-featurestore/read_entity_instance.csv -------------------------------------------------------------------------------- /07-featurestore/xgboost_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/07-featurestore/xgboost_model.py -------------------------------------------------------------------------------- /07-featurestore/xgboost_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/07-featurestore/xgboost_new.py -------------------------------------------------------------------------------- /10-training-tables-ulb/custom_training_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/10-training-tables-ulb/custom_training_simple.py -------------------------------------------------------------------------------- /10-training-tables-ulb/script_custom_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/10-training-tables-ulb/script_custom_training.py -------------------------------------------------------------------------------- /11-training-tables-ulb-gpu/custom_training_simple_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/11-training-tables-ulb-gpu/custom_training_simple_gpu.py -------------------------------------------------------------------------------- /11-training-tables-ulb-gpu/script_custom_training_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/11-training-tables-ulb-gpu/script_custom_training_gpu.py -------------------------------------------------------------------------------- /12-training-tables-ulb-ht/custom_training_simple_ht.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/12-training-tables-ulb-ht/custom_training_simple_ht.py -------------------------------------------------------------------------------- /12-training-tables-ulb-ht/script_custom_training_ht.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/12-training-tables-ulb-ht/script_custom_training_ht.py -------------------------------------------------------------------------------- /13-training-tables-iris/mbsdk_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/13-training-tables-iris/mbsdk_all.py -------------------------------------------------------------------------------- /13-training-tables-iris/training/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/13-training-tables-iris/training/Dockerfile -------------------------------------------------------------------------------- /13-training-tables-iris/training/train_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/13-training-tables-iris/training/train_script.py -------------------------------------------------------------------------------- /14-experiments/01-local-training/experiments-simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/14-experiments/01-local-training/experiments-simple.py -------------------------------------------------------------------------------- /14-experiments/01-local-training/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/14-experiments/01-local-training/experiments.py -------------------------------------------------------------------------------- /14-experiments/01-local-training/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/14-experiments/01-local-training/helpers.py -------------------------------------------------------------------------------- /14-experiments/02-experiment-lineage/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/14-experiments/02-experiment-lineage/experiments.py -------------------------------------------------------------------------------- /14-experiments/02-experiment-lineage/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/14-experiments/02-experiment-lineage/helpers.py -------------------------------------------------------------------------------- /14-experiments/03-tensorboard/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/14-experiments/03-tensorboard/profiler.py -------------------------------------------------------------------------------- /15-tabular-workflows-tabnet/online_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/15-tabular-workflows-tabnet/online_predict.py -------------------------------------------------------------------------------- /15-tabular-workflows-tabnet/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/15-tabular-workflows-tabnet/pipeline.py -------------------------------------------------------------------------------- /20-prediction/batch_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/batch_predict.py -------------------------------------------------------------------------------- /20-prediction/batch_ulb_gcs_source_3.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/batch_ulb_gcs_source_3.jsonl -------------------------------------------------------------------------------- /20-prediction/batch_ulb_gcs_source_31.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/batch_ulb_gcs_source_31.jsonl -------------------------------------------------------------------------------- /20-prediction/batch_ulb_gcs_source_32.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/batch_ulb_gcs_source_32.jsonl -------------------------------------------------------------------------------- /20-prediction/batch_ulb_gcs_source_names.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/batch_ulb_gcs_source_names.jsonl -------------------------------------------------------------------------------- /20-prediction/batch_ulb_gcs_source_names_1.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/batch_ulb_gcs_source_names_1.jsonl -------------------------------------------------------------------------------- /20-prediction/batch_ulb_gcs_source_names_1_1.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/batch_ulb_gcs_source_names_1_1.jsonl -------------------------------------------------------------------------------- /20-prediction/batch_ulb_gcs_source_names_1_quotes.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/batch_ulb_gcs_source_names_1_quotes.jsonl -------------------------------------------------------------------------------- /20-prediction/batch_ulb_gcs_source_names_5.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/batch_ulb_gcs_source_names_5.jsonl -------------------------------------------------------------------------------- /20-prediction/batch_ulb_gcs_source_names_5_list.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/batch_ulb_gcs_source_names_5_list.jsonl -------------------------------------------------------------------------------- /20-prediction/batch_ulb_gcs_source_names_list.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/batch_ulb_gcs_source_names_list.jsonl -------------------------------------------------------------------------------- /20-prediction/local_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/local_predict.py -------------------------------------------------------------------------------- /20-prediction/online_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/20-prediction/online_predict.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/README.md -------------------------------------------------------------------------------- /dataset/fraud_data_kaggle_5000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/dataset/fraud_data_kaggle_5000.csv -------------------------------------------------------------------------------- /dataset/ulb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/dataset/ulb.md -------------------------------------------------------------------------------- /roots.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelsf80/vertex-ai-labs/HEAD/roots.pem --------------------------------------------------------------------------------