Carlos Rosas
commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -77,7 +77,7 @@ import pandas as pd
|
|
| 77 |
db = lancedb.connect("lancedb_data")
|
| 78 |
table = db.open_table("education")
|
| 79 |
|
| 80 |
-
#
|
| 81 |
documents = [
|
| 82 |
{
|
| 83 |
"hash": "DOC001",
|
|
@@ -96,7 +96,7 @@ documents = [
|
|
| 96 |
}
|
| 97 |
]
|
| 98 |
|
| 99 |
-
# Add documents to LanceDB
|
| 100 |
table.add(documents)
|
| 101 |
|
| 102 |
# Load the model
|
|
|
|
| 77 |
db = lancedb.connect("lancedb_data")
|
| 78 |
table = db.open_table("education")
|
| 79 |
|
| 80 |
+
# We will create some ficticious education documents to add to the database
|
| 81 |
documents = [
|
| 82 |
{
|
| 83 |
"hash": "DOC001",
|
|
|
|
| 96 |
}
|
| 97 |
]
|
| 98 |
|
| 99 |
+
# Add documents to LanceDB
|
| 100 |
table.add(documents)
|
| 101 |
|
| 102 |
# Load the model
|