Skip to content

Commit

Permalink
Remove extra header
Browse files Browse the repository at this point in the history
  • Loading branch information
kesmit13 committed Sep 29, 2023
1 parent 021b6b0 commit ad753b2
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions notebooks/getting-started-with-dataframes/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
"metadata": {},
"source": [
"The code below will create the table in the server from the given `DataFrame`. The data types for the database table will be inferred from\n",
"the `DataFrame` data types. The `force=True` is merely used here in case you run the notebook code multiple times against the same\n",
"the `DataFrame` data types. The `overwrite=True` is merely used here in case you run the notebook code multiple times against the same\n",
"database. It will cause an existing `phones` table to be overwritten if it already exists."
]
},
Expand All @@ -223,7 +223,7 @@
"metadata": {},
"outputs": [],
"source": [
"phones_tbl = conn.create_table('phones', phones_df, force=True)\n",
"phones_tbl = conn.create_table('phones', phones_df, overwrite=True)\n",
"phones_tbl.head(3)"
]
},
Expand Down Expand Up @@ -432,7 +432,7 @@
"metadata": {},
"outputs": [],
"source": [
"tbl_2 = conn.create_table('phones2', phones_tbl, force=True)\n",
"tbl_2 = conn.create_table('phones2', phones_tbl, overwrite=True)\n",
"tbl_2"
]
},
Expand Down
2 changes: 1 addition & 1 deletion notebooks/getting-started-with-notebooks/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@
"df = pd.read_csv(url, index_col=0,\n",
" # Use parse_date=, dtype=, and converters= to specify explicit data types\n",
" parse_dates=['inspection_date'],\n",
" date_format='%m/%d/%Y %H:%M:%S %p',\n",
" dtype=dict(business_id=int, business_phone_number=str, business_postal_code=str, inspection_score=float),\n",
" converters=dict(business_location=str_to_shapely))\n",
"df"
Expand Down Expand Up @@ -194,7 +195,6 @@
"source": [
"%%sql\n",
"DROP DATABASE IF EXISTS {{database_name}};\n",
"\n",
"CREATE DATABASE {{database_name}};"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,6 @@
"</div>"
]
},
{
"cell_type": "markdown",
"id": "215c4617-6ebd-43fc-aa25-904fec4bdf5e",
"metadata": {},
"source": [
"# How to Build LLM Apps that can See, Hear, Speak"
]
},
{
"cell_type": "markdown",
"id": "a2a7fa17-ff2a-4abf-922d-af00514ab87e",
Expand Down
8 changes: 8 additions & 0 deletions notebooks/hybrid-search/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,14 @@
"all_embeddings.shape"
]
},
{
"cell_type": "markdown",
"id": "d74c544f-feea-4d48-84be-c62bf5cb4ea3",
"metadata": {},
"source": [
"Merge embedding values into `data` rows."
]
},
{
"cell_type": "code",
"execution_count": 10,
Expand Down
2 changes: 1 addition & 1 deletion notebooks/integrating-with-pandas/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@
"metadata": {},
"outputs": [],
"source": [
"ibis_iris = ibis_conn.create_table('iris', iris, force=True)\n",
"ibis_iris = ibis_conn.create_table('iris', iris, overwrite=True)\n",
"ibis_iris.limit(10).execute()"
]
},
Expand Down

0 comments on commit ad753b2

Please sign in to comment.