Skip to content

Commit

Permalink
Merge branch 'main' into formatting-2
Browse files Browse the repository at this point in the history
  • Loading branch information
vibrantvarun committed Jan 12, 2024
2 parents 6804861 + bd1dfbf commit 27d9bbc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Enhancements
### Bug Fixes
- Fixing multiple issues reported in #497 ([#524](https://github.com/opensearch-project/neural-search/pull/524))
- Fix Flaky test reported in #433 ([#533](https://github.com/opensearch-project/neural-search/pull/533))
### Infrastructure
- BWC tests for Neural Search ([#515](https://github.com/opensearch-project/neural-search/pull/515))
### Documentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class NormalizationProcessorIT extends BaseNeuralSearchIT {
private static final String TEST_KNN_VECTOR_FIELD_NAME_1 = "test-knn-vector-1";
private static final String TEST_TEXT_FIELD_NAME_1 = "test-text-field-1";
private static final String TEST_TEXT_FIELD_NAME_2 = "test-text-field-2";
private static final String SEARCH_PIPELINE = "phase-results-pipeline";
private static final String SEARCH_PIPELINE = "phase-results-normalization-processor-pipeline";
private final float[] testVector1 = createRandomVector(TEST_DIMENSION);
private final float[] testVector2 = createRandomVector(TEST_DIMENSION);
private final float[] testVector3 = createRandomVector(TEST_DIMENSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class ScoreCombinationIT extends BaseNeuralSearchIT {
private static final String TEST_DOC_TEXT5 = "Say hello and enter my friend";
private static final String TEST_KNN_VECTOR_FIELD_NAME_1 = "test-knn-vector-1";
private static final String TEST_TEXT_FIELD_NAME_1 = "test-text-field-1";
private static final String SEARCH_PIPELINE = "phase-results-pipeline";
private static final String SEARCH_PIPELINE = "phase-results-score-combination-pipeline";
private final float[] testVector1 = createRandomVector(TEST_DIMENSION);
private final float[] testVector2 = createRandomVector(TEST_DIMENSION);
private final float[] testVector3 = createRandomVector(TEST_DIMENSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class ScoreNormalizationIT extends BaseNeuralSearchIT {
private static final String TEST_DOC_TEXT4 = "Hello, I'm glad to you see you pal";
private static final String TEST_KNN_VECTOR_FIELD_NAME_1 = "test-knn-vector-1";
private static final String TEST_TEXT_FIELD_NAME_1 = "test-text-field-1";
private static final String SEARCH_PIPELINE = "phase-results-pipeline";
private static final String SEARCH_PIPELINE = "phase-results-normalization-pipeline";
private final float[] testVector1 = createRandomVector(TEST_DIMENSION);
private final float[] testVector2 = createRandomVector(TEST_DIMENSION);
private final float[] testVector3 = createRandomVector(TEST_DIMENSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class HybridQueryIT extends BaseNeuralSearchIT {
private final float[] testVector1 = createRandomVector(TEST_DIMENSION);
private final float[] testVector2 = createRandomVector(TEST_DIMENSION);
private final float[] testVector3 = createRandomVector(TEST_DIMENSION);
private static final String SEARCH_PIPELINE = "phase-results-pipeline";
private static final String SEARCH_PIPELINE = "phase-results-hybrid-pipeline";

@Before
public void setUp() throws Exception {
Expand Down

0 comments on commit 27d9bbc

Please sign in to comment.