You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I assume it should be in aux_utils.cpp/int build_disk_index(...){ }
maybe somewhere after diskann::build_merged_vamana_index(
data_file_to_use.c_str(), diskann::Metric::L2, L, R, p_val,
indexing_ram_budget, mem_index_path, medoids_path, centroids_path);?
but the code after that is quite the same as diskann, I assume there should be one step doing the block shuffling to distinguish it from diskann?
The text was updated successfully, but these errors were encountered:
The block shuffling is done after the index is built. We read from the built index and shuffle it via codes in a submodule. Make sure you git clone with the submodules and you will see a directory named graph_partition under the root of this repo.
I assume it should be in aux_utils.cpp/int build_disk_index(...){ }
maybe somewhere after diskann::build_merged_vamana_index(
data_file_to_use.c_str(), diskann::Metric::L2, L, R, p_val,
indexing_ram_budget, mem_index_path, medoids_path, centroids_path);?
but the code after that is quite the same as diskann, I assume there should be one step doing the block shuffling to distinguish it from diskann?
The text was updated successfully, but these errors were encountered: