Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion collection.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import (
"github.com/gorse-io/xvec/internal/ailego/io"
"github.com/gorse-io/xvec/internal/ailego/parallel"
"github.com/gorse-io/xvec/internal/ailego/utility"
"github.com/gorse-io/xvec/internal/core"
"github.com/gorse-io/xvec/internal/core/algorithm"
"github.com/gorse-io/xvec/internal/db"
"github.com/gorse-io/xvec/internal/db/index/column/fts_column"
"github.com/gorse-io/xvec/internal/db/index/column/fts_column/tokenizer"
Expand Down
2 changes: 1 addition & 1 deletion collection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (

"github.com/gofrs/flock"
"github.com/gorse-io/xvec/internal/ailego/math"
"github.com/gorse-io/xvec/internal/core"
"github.com/gorse-io/xvec/internal/core/algorithm"
"github.com/gorse-io/xvec/internal/db"
"github.com/gorse-io/xvec/internal/db/index/column/fts_column/tokenizer"
"github.com/gorse-io/xvec/internal/db/index/common"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"fmt"

"github.com/gorse-io/xvec/internal/core"
"github.com/gorse-io/xvec/internal/core/algorithm"
)

func ExampleDiskANNIndex() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core_test
import (
"fmt"

"github.com/gorse-io/xvec/internal/core"
"github.com/gorse-io/xvec/internal/core/algorithm"
)

func ExampleNewDiskANNLayout() {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"fmt"

"github.com/gorse-io/xvec/internal/core"
"github.com/gorse-io/xvec/internal/core/algorithm"
)

func ExampleHNSWRaBitQBuilder() {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"fmt"

"github.com/gorse-io/xvec/internal/core"
"github.com/gorse-io/xvec/internal/core/algorithm"
)

func ExampleTrainPQ() {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"fmt"

"github.com/gorse-io/xvec/internal/core"
"github.com/gorse-io/xvec/internal/core/algorithm"
)

func ExampleTrainRaBitQ() {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"fmt"

"github.com/gorse-io/xvec/internal/core"
"github.com/gorse-io/xvec/internal/core/algorithm"
)

func ExampleVamanaBuilder() {
Expand Down
2 changes: 1 addition & 1 deletion reranker_weighted.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"math"

"github.com/gorse-io/xvec/internal/core"
"github.com/gorse-io/xvec/internal/core/algorithm"
)

// WeightedReranker normalizes each branch score according to its field metric,
Expand Down
Loading