Skip to content

Commit e165e87

Browse files
committed
Typo in logging
1 parent 4e5ce11 commit e165e87

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

python-lib/dku_param_loading.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def load_input_output_params(recipe_id: RecipeID) -> Dict:
7070

7171

7272
def load_indexing_recipe_params() -> Dict:
73-
"""Load and validate parameters of the Nearest Neighbor Indexing recipe
73+
"""Load and validate parameters of the Build Nearest Neighbor Search index recipe
7474
7575
Returns:
7676
Dictionary of parameter names (key) and values
@@ -79,7 +79,7 @@ def load_indexing_recipe_params() -> Dict:
7979
PluginParamValidationError: If a parameter is not valid
8080
8181
"""
82-
logging.info("Validating Nearest Neighbor Indexing parameters...")
82+
logging.info("Validating Build Nearest Neighbor Search index recipe parameters...")
8383
input_output_params = load_input_output_params(RecipeID.SIMILARITY_SEARCH_INDEX)
8484
# Recipe modeling parameters
8585
modeling_params = {}
@@ -111,7 +111,7 @@ def load_indexing_recipe_params() -> Dict:
111111

112112

113113
def load_search_recipe_params() -> Dict:
114-
"""Load and validate parameters of the Nearest Neighbor Search recipe
114+
"""Load and validate parameters of the Find Nearest Neighbors recipe
115115
116116
Returns:
117117
Dictionary of parameter names (key) and values
@@ -120,7 +120,7 @@ def load_search_recipe_params() -> Dict:
120120
PluginParamValidationError: If a parameter is not valid
121121
122122
"""
123-
logging.info("Validating Nearest Neighbor Search parameters...")
123+
logging.info("Validating Find Nearest Neighbors recipe parameters...")
124124
input_output_params = load_input_output_params(RecipeID.SIMILARITY_SEARCH_QUERY)
125125
# Recipe lookup parameters
126126
lookup_params = {}

0 commit comments

Comments
 (0)