File tree 3 files changed +11
-11
lines changed
3 files changed +11
-11
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- module github.com/kubre/vdb
1
+ module github.com/kubre/VectorLite
2
2
3
3
go 1.21
Original file line number Diff line number Diff line change 1
- # VDB : Simple Vector Database
1
+ # VectorLite : Simple Vector Database
2
2
3
3
Database for storing any querying the embeddings and metadata alongside it.
4
4
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
+
5
11
## Development Log (26 Aug 2023)
6
12
7
13
** Requirements**
@@ -21,8 +27,10 @@ Querying
21
27
- Formula: dot(v, w) / (v.norm() \* w.norm())
22
28
- dot v w: sum(vi \* wi)
23
29
- norm v: sqrt(sum(vi \* vi))
30
+ - Euclidean Distance
31
+ - Dot Product
24
32
25
33
Storing
26
34
27
35
- 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
You can’t perform that action at this time.
0 commit comments