Carlos Rosas commited on
Commit
920cc1a
1 Parent(s): 67cb741

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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
- # Create fictitious education documents
81
  documents = [
82
  {
83
  "hash": "DOC001",
@@ -96,7 +96,7 @@ documents = [
96
  }
97
  ]
98
 
99
- # Add documents to LanceDB (in a real scenario, this would be done separately)
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