Skip to content

Commit 9b84fc1

Browse files
authored
chore: updates notebook title and removes section numbers (#2388)
1 parent cd21a10 commit 9b84fc1

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

gemini/use-cases/applying-llms-to-data/ai-assisted-data-science/ai-assisted-data-science.ipynb

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"id": "9Ku6cXXnwATV"
3232
},
3333
"source": [
34-
"# Multimodal Analysis and Vector Search with BigQuery ML\n",
34+
"# AI-Assisted Data Science Workflows in BigQuery\n",
3535
"\n",
3636
"<table align=\"left\">\n",
3737
" <td style=\"text-align: center\">\n",
@@ -334,7 +334,7 @@
334334
},
335335
"source": [
336336
"---\n",
337-
"## 1. Data Preparation and Feature Engineering\n",
337+
"## Data Preparation and Feature Engineering\n",
338338
"\n",
339339
"### Create a BigQuery dataset\n",
340340
"\n",
@@ -443,7 +443,7 @@
443443
"SELECT\n",
444444
" *,\n",
445445
" EXTRACT(YEAR FROM CURRENT_DATE()) - year_built AS property_age,\n",
446-
" OBJ.FETCH_METADATA(OBJ.MAKE_REF(house_uri, 'us.ai_connection')) as image_ref\n",
446+
" OBJ.FETCH_METADATA(OBJ.MAKE_REF(house_uri, 'us.ai_connection')) AS image_ref\n",
447447
"FROM\n",
448448
" `housing_dataset.listings`\n",
449449
"WHERE sale_status = 'For Sale';"
@@ -457,7 +457,7 @@
457457
},
458458
"source": [
459459
"---\n",
460-
"## 2. Multimodal Enrichment with AI Functions\n",
460+
"## Multimodal Enrichment with AI Functions\n",
461461
"\n",
462462
"### Create a remote model for Gemini\n",
463463
"\n",
@@ -578,7 +578,7 @@
578578
},
579579
"source": [
580580
"---\n",
581-
"## 3. Model Training with K-Means Clustering\n",
581+
"## Model Training with K-Means Clustering\n",
582582
"\n",
583583
"With your enriched and feature-engineered dataset, you can now build a machine learning model. Your goal is to segment the house listings into distinct groups based on their characteristics. K-means clustering is an unsupervised learning algorithm that groups data points based on their similarity.\n",
584584
"\n",
@@ -621,7 +621,7 @@
621621
},
622622
"source": [
623623
"---\n",
624-
"## 4. Model Evaluation and Prediction\n",
624+
"## Model Evaluation and Prediction\n",
625625
"\n",
626626
"### Evaluate the clustering model\n",
627627
"\n",
@@ -713,7 +713,7 @@
713713
"---\n",
714714
"\n",
715715
"\n",
716-
"## 5. Visualize and Interpret Clusters\n",
716+
"## Visualize and Interpret Clusters\n",
717717
"\n",
718718
"With each property now assigned to a cluster, you can visualize the results to better understand the distinct housing segments."
719719
]
@@ -824,7 +824,7 @@
824824
},
825825
"source": [
826826
"---\n",
827-
"## 6. Generate Cluster Descriptions with Gemini\n",
827+
"## Generate Cluster Descriptions with Gemini\n",
828828
"\n",
829829
"While the centroids and visualizations are useful, you can use generative AI to create human-readable descriptions for each cluster.\n",
830830
"\n",
@@ -997,7 +997,7 @@
997997
},
998998
"source": [
999999
"---\n",
1000-
"## 7. Automate Modeling with the Data Science Agent\n",
1000+
"## Automate Modeling with the Data Science Agent\n",
10011001
"\n",
10021002
"Now, you'll explore a different approach to the same problem. Instead of writing SQL and Python code manually, you will use the integrated [**Data Science Agent**](https://cloud.google.com/bigquery/docs/colab-data-science-agent) to automatically generate code for a K-means clustering model.\n",
10031003
"\n",
@@ -1021,7 +1021,7 @@
10211021
},
10221022
"source": [
10231023
"---\n",
1024-
"## 8. Multimodal Search with Embeddings and Vector Search\n",
1024+
"## Multimodal Search with Embeddings and Vector Search\n",
10251025
"\n",
10261026
"In this final section, you will use a multimodal embedding model to convert images into [vector embeddings](https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-generate-embedding#embeddings) and then use BigQuery's built-in [vector search](https://cloud.google.com/bigquery/docs/vector-search-intro) capabilities to find similar houses based on a text description or another image."
10271027
]
@@ -1313,7 +1313,7 @@
13131313
"---\n",
13141314
"\n",
13151315
"\n",
1316-
"## 9. Cleaning Up\n",
1316+
"## Cleaning Up\n",
13171317
"\n",
13181318
"To clean up all Google Cloud resources used in this project, you can [delete the Google Cloud project](https://cloud.google.com/resource-manager/docs/creating-managing-projects#shutting_down_projects) you used for the tutorial.\n",
13191319
"\n",

0 commit comments

Comments
 (0)