Skip to content

Commit af0cfd3

Browse files
committed
Added instructions
1 parent 34a6efc commit af0cfd3

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.idea/.gitignore

-8
This file was deleted.

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/kubre/vdb
1+
module github.com/kubre/VectorLite
22

33
go 1.21

readme.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
# VDB: Simple Vector Database
1+
# VectorLite: Simple Vector Database
22

33
Database for storing any querying the embeddings and metadata alongside it.
44

5+
## WIP: Just toy project as of now not even in working state
6+
7+
**To Run:** `go run main.go record.go`
8+
9+
There is also python file to generate and test with embeddings as of now
10+
511
## Development Log (26 Aug 2023)
612

713
**Requirements**
@@ -21,8 +27,10 @@ Querying
2127
- Formula: dot(v, w) / (v.norm() \* w.norm())
2228
- dot v w: sum(vi \* wi)
2329
- norm v: sqrt(sum(vi \* vi))
30+
- Euclidean Distance
31+
- Dot Product
2432

2533
Storing
2634

2735
- How to store vector format
28-
- Store test data into csv files from python with index and paragraph
36+
- Store test data into csv files from python with index and paragraph

0 commit comments

Comments
 (0)