Spaces:
Running
Running
File size: 7,727 Bytes
b110593 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
//
// CONTACT: [email protected]
//
package testinghelpers
import (
"encoding/binary"
"encoding/gob"
"fmt"
"io"
"math"
"math/rand"
"os"
"sort"
"testing"
"time"
"github.com/pkg/errors"
"github.com/sirupsen/logrus/hooks/test"
"github.com/stretchr/testify/require"
"github.com/weaviate/weaviate/adapters/repos/db/lsmkv"
"github.com/weaviate/weaviate/adapters/repos/db/vector/compressionhelpers"
"github.com/weaviate/weaviate/adapters/repos/db/vector/hnsw/distancer"
"github.com/weaviate/weaviate/entities/cyclemanager"
)
type DistanceFunction func([]float32, []float32) float32
func getRandomSeed() *rand.Rand {
return rand.New(rand.NewSource(time.Now().UnixNano()))
}
func int32FromBytes(bytes []byte) int {
return int(binary.LittleEndian.Uint32(bytes))
}
func float32FromBytes(bytes []byte) float32 {
bits := binary.LittleEndian.Uint32(bytes)
float := math.Float32frombits(bits)
return float
}
func readSiftFloat(file string, maxObjects int, vectorLengthFloat int) [][]float32 {
f, err := os.Open(file)
if err != nil {
panic(errors.Wrap(err, "Could not open SIFT file"))
}
defer f.Close()
fi, err := f.Stat()
if err != nil {
panic(errors.Wrap(err, "Could not get SIFT file properties"))
}
fileSize := fi.Size()
if fileSize < 1000000 {
panic("The file is only " + fmt.Sprint(fileSize) + " bytes long. Did you forgot to install git lfs?")
}
// The sift data is a binary file containing floating point vectors
// For each entry, the first 4 bytes is the length of the vector (in number of floats, not in bytes)
// which is followed by the vector data with vector length * 4 bytes.
// |-length-vec1 (4bytes)-|-Vec1-data-(4*length-vector-1 bytes)-|-length-vec2 (4bytes)-|-Vec2-data-(4*length-vector-2 bytes)-|
// The vector length needs to be converted from bytes to int
// The vector data needs to be converted from bytes to float
// Note that the vector entries are of type float but are integer numbers eg 2.0
bytesPerF := 4
objects := make([][]float32, maxObjects)
vectorBytes := make([]byte, bytesPerF+vectorLengthFloat*bytesPerF)
for i := 0; i >= 0; i++ {
_, err = f.Read(vectorBytes)
if err == io.EOF {
break
} else if err != nil {
panic(err)
}
if int32FromBytes(vectorBytes[0:bytesPerF]) != vectorLengthFloat {
panic("Each vector must have 128 entries.")
}
vectorFloat := []float32{}
for j := 0; j < vectorLengthFloat; j++ {
start := (j + 1) * bytesPerF // first bytesPerF are length of vector
vectorFloat = append(vectorFloat, float32FromBytes(vectorBytes[start:start+bytesPerF]))
}
objects[i] = vectorFloat
if i >= maxObjects-1 {
break
}
}
return objects
}
func ReadSiftVecsFrom(path string, size int, dimensions int) [][]float32 {
fmt.Printf("generating %d sift vectors...", size)
vectors := readSiftFloat(path, size, dimensions)
fmt.Printf(" done\n")
return vectors
}
func RandomVecs(size int, queriesSize int, dimensions int) ([][]float32, [][]float32) {
fmt.Printf("generating %d vectors...\n", size+queriesSize)
r := getRandomSeed()
vectors := make([][]float32, 0, size)
queries := make([][]float32, 0, queriesSize)
for i := 0; i < size; i++ {
vectors = append(vectors, genVector(r, dimensions))
}
for i := 0; i < queriesSize; i++ {
queries = append(queries, genVector(r, dimensions))
}
return vectors, queries
}
func genVector(r *rand.Rand, dimensions int) []float32 {
vector := make([]float32, 0, dimensions)
for i := 0; i < dimensions; i++ {
// Some distances like dot could produce negative values when the vectors have negative values
// This change will not affect anything when using a distance like l2, but will cover some bugs
// when using distances like dot
vector = append(vector, r.Float32()*2-1)
}
return vector
}
func Normalize(vectors [][]float32) {
for i := range vectors {
vectors[i] = distancer.Normalize(vectors[i])
}
}
func ReadVecs(size int, queriesSize int, dimensions int, db string, path ...string) ([][]float32, [][]float32) {
fmt.Printf("generating %d read vectors...", size+queriesSize)
uri := db
if len(path) > 0 {
uri = fmt.Sprintf("%s/%s", path[0], uri)
}
vectors := readSiftFloat(fmt.Sprintf("%s/%s_base.fvecs", uri, db), size, dimensions)
queries := readSiftFloat(fmt.Sprintf("%s/%s_query.fvecs", uri, db), queriesSize, dimensions)
fmt.Printf(" done\n")
return vectors, queries
}
func ReadQueries(queriesSize int) [][]float32 {
fmt.Printf("generating %d read queries vectors...", queriesSize)
queries := readSiftFloat("sift/sift_query.fvecs", queriesSize, 128)
fmt.Printf(" done\n")
return queries
}
func BruteForce(vectors [][]float32, query []float32, k int, distance DistanceFunction) ([]uint64, []float32) {
type distanceAndIndex struct {
distance float32
index uint64
}
distances := make([]distanceAndIndex, len(vectors))
compressionhelpers.Concurrently(uint64(len(vectors)), func(i uint64) {
dist := distance(query, vectors[i])
distances[i] = distanceAndIndex{
index: uint64(i),
distance: dist,
}
})
sort.Slice(distances, func(a, b int) bool {
return distances[a].distance < distances[b].distance
})
if len(distances) < k {
k = len(distances)
}
out := make([]uint64, k)
dists := make([]float32, k)
for i := 0; i < k; i++ {
out[i] = distances[i].index
dists[i] = distances[i].distance
}
return out, dists
}
func BuildTruths(queriesSize int, vectorsSize int, queries [][]float32, vectors [][]float32, k int, distance DistanceFunction, path ...string) [][]uint64 {
uri := "sift/sift_truths%d.%d.gob"
if len(path) > 0 {
uri = fmt.Sprintf("%s/%s", path[0], uri)
}
fileName := fmt.Sprintf(uri, k, vectorsSize)
truths := make([][]uint64, queriesSize)
if _, err := os.Stat(fileName); err == nil {
return loadTruths(fileName, queriesSize, k)
}
compressionhelpers.Concurrently(uint64(len(queries)), func(i uint64) {
truths[i], _ = BruteForce(vectors, queries[i], k, distance)
})
f, err := os.Create(fileName)
if err != nil {
panic(errors.Wrap(err, "Could not open file"))
}
defer f.Close()
enc := gob.NewEncoder(f)
err = enc.Encode(truths)
if err != nil {
panic(errors.Wrap(err, "Could not encode truths"))
}
return truths
}
func loadTruths(fileName string, queriesSize int, k int) [][]uint64 {
f, err := os.Open(fileName)
if err != nil {
panic(errors.Wrap(err, "Could not open truths file"))
}
defer f.Close()
truths := make([][]uint64, queriesSize)
cDec := gob.NewDecoder(f)
err = cDec.Decode(&truths)
if err != nil {
panic(errors.Wrap(err, "Could not decode truths"))
}
return truths
}
func MatchesInLists(control []uint64, results []uint64) uint64 {
desired := map[uint64]struct{}{}
for _, relevant := range control {
desired[relevant] = struct{}{}
}
var matches uint64
for _, candidate := range results {
_, ok := desired[candidate]
if ok {
matches++
}
}
return matches
}
func NewDummyStore(t testing.TB) *lsmkv.Store {
logger, _ := test.NewNullLogger()
storeDir := t.TempDir()
store, err := lsmkv.New(storeDir, storeDir, logger, nil,
cyclemanager.NewCallbackGroupNoop(), cyclemanager.NewCallbackGroupNoop())
require.Nil(t, err)
return store
}
|