Skip to content

Commit

Permalink
Merge pull request #3877 from nulib/reorder-hybrid-search-weights
Browse files Browse the repository at this point in the history
Swap order of weights in hybrid search pipeline
  • Loading branch information
bmquinn authored Mar 12, 2024
2 parents 171499d + b301e00 commit a7ec50b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/meadow/search/index.ex
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ defmodule Meadow.Search.Index do
name,
normalization_technique \\ "l2",
combination_technique \\ "arithmetic_mean",
weights \\ [0.3, 0.7]
weights \\ [0.7, 0.3]
) do
pipeline = %{
"description" => "Search pipeline for #{name}",
Expand Down

0 comments on commit a7ec50b

Please sign in to comment.