From 2f901c5926b83dde24d3a91ab9277a4159bcfb1d Mon Sep 17 00:00:00 2001 From: Jon McLean <4429525+jonmclean@users.noreply.github.com> Date: Thu, 24 Aug 2023 13:49:28 -0700 Subject: [PATCH] Added clarity to the universal label --- include/program_options_utils.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/program_options_utils.hpp b/include/program_options_utils.hpp index 71077b7b2..2be60595b 100644 --- a/include/program_options_utils.hpp +++ b/include/program_options_utils.hpp @@ -73,7 +73,9 @@ const char *LABEL_FILE = "Input label file in txt format for Filtered Index buil const char *UNIVERSAL_LABEL = "Universal label, Use only in conjunction with label file for filtered index build. If a " "graph node has all the labels against it, we can assign a special universal filter to the " - "point instead of comma separated filters for that point"; + "point instead of comma separated filters for that point. The universal label should be assigned to nodes " + "in the labels file instead of listing all labels for a node. DiskANN will not automatically assign a " + "universal label to a node."; const char *FILTERED_LBUILD = "Build complexity for filtered points, higher value results in better graphs"; } // namespace program_options_utils