gitextract_nogfp4_v/ ├── .build-bot.json ├── .coveragerc ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── datalab/ │ ├── README │ ├── __init__.py │ ├── bigquery/ │ │ ├── __init__.py │ │ ├── _api.py │ │ ├── _csv_options.py │ │ ├── _dataset.py │ │ ├── _dialect.py │ │ ├── _federated_table.py │ │ ├── _job.py │ │ ├── _parser.py │ │ ├── _query.py │ │ ├── _query_job.py │ │ ├── _query_results_table.py │ │ ├── _query_stats.py │ │ ├── _sampling.py │ │ ├── _schema.py │ │ ├── _table.py │ │ ├── _udf.py │ │ ├── _utils.py │ │ ├── _view.py │ │ └── commands/ │ │ ├── __init__.py │ │ └── _bigquery.py │ ├── context/ │ │ ├── __init__.py │ │ ├── _api.py │ │ ├── _context.py │ │ ├── _project.py │ │ ├── _utils.py │ │ └── commands/ │ │ ├── __init__.py │ │ └── _projects.py │ ├── data/ │ │ ├── __init__.py │ │ ├── _csv.py │ │ ├── _sql_module.py │ │ ├── _sql_statement.py │ │ ├── _utils.py │ │ └── commands/ │ │ ├── __init__.py │ │ └── _sql.py │ ├── kernel/ │ │ └── __init__.py │ ├── notebook/ │ │ ├── __init__.py │ │ └── static/ │ │ ├── bigquery.css │ │ ├── bigquery.ts │ │ ├── charting.css │ │ ├── charting.ts │ │ ├── element.ts │ │ ├── extern/ │ │ │ ├── d3.parcoords.css │ │ │ ├── d3.parcoords.js │ │ │ ├── lantern-browser.html │ │ │ ├── parcoords-LICENSE.txt │ │ │ ├── sylvester-LICENSE.txt │ │ │ └── sylvester.js │ │ ├── job.css │ │ ├── job.ts │ │ ├── parcoords.ts │ │ ├── style.ts │ │ └── visualization.ts │ ├── stackdriver/ │ │ ├── __init__.py │ │ ├── commands/ │ │ │ ├── __init__.py │ │ │ └── _monitoring.py │ │ └── monitoring/ │ │ ├── __init__.py │ │ ├── _group.py │ │ ├── _metric.py │ │ ├── _query.py │ │ ├── _query_metadata.py │ │ ├── _resource.py │ │ └── _utils.py │ ├── storage/ │ │ ├── __init__.py │ │ ├── _api.py │ │ ├── _bucket.py │ │ ├── _item.py │ │ └── commands/ │ │ ├── __init__.py │ │ └── _storage.py │ └── utils/ │ ├── __init__.py │ ├── _async.py │ ├── _dataflow_job.py │ ├── _gcp_job.py │ ├── _http.py │ ├── _iterator.py │ ├── _job.py │ ├── _json_encoder.py │ ├── _lambda_job.py │ ├── _lru_cache.py │ ├── _utils.py │ └── commands/ │ ├── __init__.py │ ├── _chart.py │ ├── _chart_data.py │ ├── _commands.py │ ├── _csv.py │ ├── _extension.py │ ├── _html.py │ ├── _job.py │ ├── _modules.py │ └── _utils.py ├── docs/ │ ├── .nojekyll │ ├── Makefile │ ├── README │ ├── conf.py │ ├── datalab Commands.rst │ ├── datalab.bigquery.rst │ ├── datalab.context.rst │ ├── datalab.data.rst │ ├── datalab.stackdriver.monitoring.rst │ ├── datalab.storage.rst │ ├── gen-magic-rst.ipy │ ├── google.datalab Commands.rst │ ├── google.datalab.bigquery.rst │ ├── google.datalab.data.rst │ ├── google.datalab.ml.rst │ ├── google.datalab.rst │ ├── google.datalab.stackdriver.monitoring.rst │ ├── google.datalab.storage.rst │ ├── index.rst │ ├── make.bat │ ├── mltoolbox.classification.dnn.rst │ ├── mltoolbox.classification.linear.rst │ ├── mltoolbox.image.classification.rst │ ├── mltoolbox.regression.dnn.rst │ └── mltoolbox.regression.linear.rst ├── externs/ │ └── ts/ │ └── require/ │ └── require.d.ts ├── google/ │ ├── __init__.py │ └── datalab/ │ ├── __init__.py │ ├── _context.py │ ├── _job.py │ ├── bigquery/ │ │ ├── __init__.py │ │ ├── _api.py │ │ ├── _csv_options.py │ │ ├── _dataset.py │ │ ├── _external_data_source.py │ │ ├── _job.py │ │ ├── _parser.py │ │ ├── _query.py │ │ ├── _query_job.py │ │ ├── _query_output.py │ │ ├── _query_results_table.py │ │ ├── _query_stats.py │ │ ├── _sampling.py │ │ ├── _schema.py │ │ ├── _table.py │ │ ├── _udf.py │ │ ├── _utils.py │ │ ├── _view.py │ │ └── commands/ │ │ ├── __init__.py │ │ └── _bigquery.py │ ├── commands/ │ │ ├── __init__.py │ │ └── _datalab.py │ ├── contrib/ │ │ ├── __init__.py │ │ ├── bigquery/ │ │ │ ├── __init__.py │ │ │ ├── commands/ │ │ │ │ ├── __init__.py │ │ │ │ └── _bigquery.py │ │ │ └── operators/ │ │ │ ├── __init__.py │ │ │ ├── _bq_execute_operator.py │ │ │ ├── _bq_extract_operator.py │ │ │ └── _bq_load_operator.py │ │ ├── mlworkbench/ │ │ │ ├── __init__.py │ │ │ ├── _archive.py │ │ │ ├── _local_predict.py │ │ │ ├── _prediction_explainer.py │ │ │ ├── _shell_process.py │ │ │ └── commands/ │ │ │ ├── __init__.py │ │ │ └── _ml.py │ │ └── pipeline/ │ │ ├── __init__.py │ │ ├── _pipeline.py │ │ ├── airflow/ │ │ │ ├── __init__.py │ │ │ └── _airflow.py │ │ ├── commands/ │ │ │ ├── __init__.py │ │ │ └── _pipeline.py │ │ └── composer/ │ │ ├── __init__.py │ │ ├── _api.py │ │ └── _composer.py │ ├── data/ │ │ ├── __init__.py │ │ └── _csv_file.py │ ├── kernel/ │ │ └── __init__.py │ ├── ml/ │ │ ├── __init__.py │ │ ├── _cloud_models.py │ │ ├── _cloud_training_config.py │ │ ├── _confusion_matrix.py │ │ ├── _dataset.py │ │ ├── _fasets.py │ │ ├── _feature_slice_view.py │ │ ├── _job.py │ │ ├── _metrics.py │ │ ├── _summary.py │ │ ├── _tensorboard.py │ │ └── _util.py │ ├── notebook/ │ │ ├── __init__.py │ │ └── static/ │ │ ├── bigquery.css │ │ ├── bigquery.ts │ │ ├── charting.css │ │ ├── charting.ts │ │ ├── element.ts │ │ ├── extern/ │ │ │ ├── d3.parcoords.css │ │ │ ├── d3.parcoords.js │ │ │ ├── facets-jupyter.html │ │ │ ├── lantern-browser.html │ │ │ ├── parcoords-LICENSE.txt │ │ │ ├── sylvester-LICENSE.txt │ │ │ └── sylvester.js │ │ ├── job.css │ │ ├── job.ts │ │ ├── parcoords.ts │ │ ├── style.ts │ │ └── visualization.ts │ ├── stackdriver/ │ │ ├── __init__.py │ │ ├── commands/ │ │ │ ├── __init__.py │ │ │ └── _monitoring.py │ │ └── monitoring/ │ │ ├── __init__.py │ │ ├── _group.py │ │ ├── _metric.py │ │ ├── _query.py │ │ ├── _query_metadata.py │ │ ├── _resource.py │ │ └── _utils.py │ ├── storage/ │ │ ├── __init__.py │ │ ├── _api.py │ │ ├── _bucket.py │ │ ├── _object.py │ │ └── commands/ │ │ ├── __init__.py │ │ └── _storage.py │ └── utils/ │ ├── __init__.py │ ├── _async.py │ ├── _dataflow_job.py │ ├── _gcp_job.py │ ├── _http.py │ ├── _iterator.py │ ├── _json_encoder.py │ ├── _lambda_job.py │ ├── _lru_cache.py │ ├── _utils.py │ ├── commands/ │ │ ├── __init__.py │ │ ├── _chart.py │ │ ├── _chart_data.py │ │ ├── _commands.py │ │ ├── _csv.py │ │ ├── _html.py │ │ ├── _job.py │ │ └── _utils.py │ └── facets/ │ ├── __init__.py │ ├── base_feature_statistics_generator.py │ ├── base_generic_feature_statistics_generator.py │ ├── feature_statistics_generator.py │ ├── feature_statistics_pb2.py │ └── generic_feature_statistics_generator.py ├── install-no-virtualenv.sh ├── install-virtualenv.sh ├── legacy_tests/ │ ├── _util/ │ │ ├── __init__.py │ │ ├── http_tests.py │ │ ├── lru_cache_tests.py │ │ └── util_tests.py │ ├── bigquery/ │ │ ├── __init__.py │ │ ├── api_tests.py │ │ ├── dataset_tests.py │ │ ├── federated_table_tests.py │ │ ├── jobs_tests.py │ │ ├── parser_tests.py │ │ ├── query_tests.py │ │ ├── sampling_tests.py │ │ ├── schema_tests.py │ │ ├── table_tests.py │ │ ├── udf_tests.py │ │ └── view_tests.py │ ├── data/ │ │ ├── __init__.py │ │ └── sql_tests.py │ ├── kernel/ │ │ ├── __init__.py │ │ ├── bigquery_tests.py │ │ ├── chart_data_tests.py │ │ ├── chart_tests.py │ │ ├── commands_tests.py │ │ ├── html_tests.py │ │ ├── module_tests.py │ │ ├── sql_tests.py │ │ ├── storage_tests.py │ │ └── utils_tests.py │ ├── main.py │ ├── stackdriver/ │ │ ├── __init__.py │ │ ├── commands/ │ │ │ ├── __init__.py │ │ │ └── monitoring_tests.py │ │ └── monitoring/ │ │ ├── __init__.py │ │ ├── group_tests.py │ │ ├── metric_tests.py │ │ ├── query_metadata_tests.py │ │ ├── query_tests.py │ │ ├── resource_tests.py │ │ └── utils_tests.py │ └── storage/ │ ├── __init__.py │ ├── api_tests.py │ ├── bucket_tests.py │ └── item_tests.py ├── release.sh ├── setup.cfg ├── setup.py ├── solutionbox/ │ ├── image_classification/ │ │ ├── mltoolbox/ │ │ │ ├── __init__.py │ │ │ └── image/ │ │ │ ├── __init__.py │ │ │ └── classification/ │ │ │ ├── __init__.py │ │ │ ├── _api.py │ │ │ ├── _cloud.py │ │ │ ├── _inceptionlib.py │ │ │ ├── _local.py │ │ │ ├── _model.py │ │ │ ├── _predictor.py │ │ │ ├── _preprocess.py │ │ │ ├── _trainer.py │ │ │ ├── _util.py │ │ │ ├── setup.py │ │ │ └── task.py │ │ └── setup.py │ ├── ml_workbench/ │ │ ├── setup.py │ │ ├── tensorflow/ │ │ │ ├── __init__.py │ │ │ ├── analyze.py │ │ │ ├── setup.py │ │ │ ├── trainer/ │ │ │ │ ├── __init__.py │ │ │ │ ├── feature_analysis.py │ │ │ │ ├── feature_transforms.py │ │ │ │ └── task.py │ │ │ └── transform.py │ │ ├── test_tensorflow/ │ │ │ ├── run_all.sh │ │ │ ├── test_analyze.py │ │ │ ├── test_cloud_workflow.py │ │ │ ├── test_feature_transforms.py │ │ │ ├── test_training.py │ │ │ └── test_transform.py │ │ ├── test_xgboost/ │ │ │ ├── run_all.sh │ │ │ ├── test_analyze.py │ │ │ └── test_transform.py │ │ └── xgboost/ │ │ ├── __init__.py │ │ ├── analyze.py │ │ ├── setup.py │ │ ├── trainer/ │ │ │ ├── __init__.py │ │ │ ├── feature_analysis.py │ │ │ ├── feature_transforms.py │ │ │ └── task.py │ │ └── transform.py │ └── structured_data/ │ ├── build.sh │ ├── mltoolbox/ │ │ ├── __init__.py │ │ ├── _structured_data/ │ │ │ ├── __init__.py │ │ │ ├── __version__.py │ │ │ ├── _package.py │ │ │ ├── master_setup.py │ │ │ ├── prediction/ │ │ │ │ ├── __init__.py │ │ │ │ └── predict.py │ │ │ ├── preprocess/ │ │ │ │ ├── __init__.py │ │ │ │ ├── cloud_preprocess.py │ │ │ │ └── local_preprocess.py │ │ │ └── trainer/ │ │ │ ├── __init__.py │ │ │ ├── task.py │ │ │ └── util.py │ │ ├── classification/ │ │ │ ├── __init__.py │ │ │ ├── dnn/ │ │ │ │ ├── __init__.py │ │ │ │ └── _classification_dnn.py │ │ │ └── linear/ │ │ │ ├── __init__.py │ │ │ └── _classification_linear.py │ │ └── regression/ │ │ ├── __init__.py │ │ ├── dnn/ │ │ │ ├── __init__.py │ │ │ └── _regression_dnn.py │ │ └── linear/ │ │ ├── __init__.py │ │ └── _regression_linear.py │ ├── setup.py │ └── test_mltoolbox/ │ ├── __init__.py │ ├── e2e_functions.py │ ├── test_datalab_e2e.py │ ├── test_package_functions.py │ ├── test_sd_preprocess.py │ └── test_sd_trainer.py ├── tests/ │ ├── _util/ │ │ ├── __init__.py │ │ ├── commands_tests.py │ │ ├── feature_statistics_generator_test.py │ │ ├── generic_feature_statistics_generator_test.py │ │ ├── http_tests.py │ │ ├── lru_cache_tests.py │ │ └── util_tests.py │ ├── bigquery/ │ │ ├── __init__.py │ │ ├── api_tests.py │ │ ├── dataset_tests.py │ │ ├── external_data_source_tests.py │ │ ├── jobs_tests.py │ │ ├── operator_tests.py │ │ ├── parser_tests.py │ │ ├── pipeline_tests.py │ │ ├── query_tests.py │ │ ├── sampling_tests.py │ │ ├── schema_tests.py │ │ ├── table_tests.py │ │ ├── udf_tests.py │ │ └── view_tests.py │ ├── context_tests.py │ ├── integration/ │ │ └── storage_test.py │ ├── kernel/ │ │ ├── __init__.py │ │ ├── bigquery_tests.py │ │ ├── chart_data_tests.py │ │ ├── chart_tests.py │ │ ├── html_tests.py │ │ ├── pipeline_tests.py │ │ ├── storage_tests.py │ │ └── utils_tests.py │ ├── main.py │ ├── ml/ │ │ ├── __init__.py │ │ ├── confusion_matrix_tests.py │ │ ├── dataset_tests.py │ │ ├── facets_tests.py │ │ ├── metrics_tests.py │ │ ├── summary_tests.py │ │ └── tensorboard_tests.py │ ├── ml_workbench/ │ │ ├── __init__.py │ │ └── all_tests.py │ ├── mltoolbox_structured_data/ │ │ ├── __init__.py │ │ ├── dl_interface_tests.py │ │ ├── sd_e2e_tests.py │ │ └── traininglib_tests.py │ ├── mlworkbench_magic/ │ │ ├── __init__.py │ │ ├── archive_tests.py │ │ ├── explainer_tests.py │ │ ├── local_predict_tests.py │ │ ├── ml_tests.py │ │ └── shell_process_tests.py │ ├── pipeline/ │ │ ├── __init__.py │ │ ├── airflow_tests.py │ │ ├── composer_api_tests.py │ │ ├── composer_tests.py │ │ └── pipeline_tests.py │ ├── stackdriver/ │ │ ├── __init__.py │ │ ├── commands/ │ │ │ ├── __init__.py │ │ │ └── monitoring_tests.py │ │ └── monitoring/ │ │ ├── __init__.py │ │ ├── group_tests.py │ │ ├── metric_tests.py │ │ ├── query_metadata_tests.py │ │ ├── query_tests.py │ │ ├── resource_tests.py │ │ └── utils_tests.py │ └── storage/ │ ├── __init__.py │ ├── api_tests.py │ ├── bucket_tests.py │ └── object_tests.py └── tox.ini