-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Working on standalone implementation.
Signed-off-by: jzonthemtn <[email protected]>
- Loading branch information
1 parent
3fb1add
commit 17dcece
Showing
9 changed files
with
52 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
...arch-search-quality-evaluation-framework/src/main/java/org/opensearch/eval/Constants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package org.opensearch.eval; | ||
|
||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
|
||
public class Constants { | ||
|
||
private static final Logger LOGGER = LogManager.getLogger(Constants.class); | ||
|
||
/** | ||
* The name of the UBI index containing the queries. This should not be changed. | ||
*/ | ||
public static final String UBI_QUERIES_INDEX_NAME = "ubi_queries"; | ||
|
||
/** | ||
* The name of the UBI index containing the events. This should not be changed. | ||
*/ | ||
public static final String UBI_EVENTS_INDEX_NAME = "ubi_events"; | ||
|
||
/** | ||
* The name of the index to store the scheduled jobs to create implicit judgments. | ||
*/ | ||
public static final String SCHEDULED_JOBS_INDEX_NAME = "search_quality_eval_scheduled_jobs"; | ||
|
||
/** | ||
* The name of the index to store the completed jobs to create implicit judgments. | ||
*/ | ||
public static final String COMPLETED_JOBS_INDEX_NAME = "search_quality_eval_completed_jobs"; | ||
|
||
/** | ||
* The name of the index that stores the query sets. | ||
*/ | ||
public static final String QUERY_SETS_INDEX_NAME = "search_quality_eval_query_sets"; | ||
|
||
/** | ||
* The name of the index that stores the metrics for the dashboard. | ||
*/ | ||
public static final String DASHBOARD_METRICS_INDEX_NAME = "sqe_metrics_sample_data"; | ||
|
||
/** | ||
* The name of the index that stores the implicit judgments. | ||
*/ | ||
public static final String JUDGMENTS_INDEX_NAME = "judgments"; | ||
|
||
} |
213 changes: 0 additions & 213 deletions
213
...evaluation-framework/src/main/java/org/opensearch/eval/SearchQualityEvaluationPlugin.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters