├── .clang-format ├── .git_archival.txt ├── .gitattributes ├── .github └── workflows │ ├── build-wheels.yml │ ├── check-formatting.yml │ ├── ci-python.yml │ ├── ci.yml │ ├── nightly.yml │ └── quarto-render.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── _quarto.yml ├── apis └── python │ ├── CMakeLists.txt │ ├── MANIFEST.in │ ├── README.md │ ├── environment.yml │ ├── examples │ └── object_api │ │ ├── bioimg_similarity_search.ipynb │ │ ├── image_search_from_directory.ipynb │ │ ├── image_search_from_tiledb.ipynb │ │ ├── multi_modal_pdf_search.ipynb │ │ ├── soma_cell_similarity_search.ipynb │ │ ├── text_search_documents.ipynb │ │ └── text_search_wikipedia.ipynb │ ├── src │ └── tiledb │ │ └── vector_search │ │ ├── __init__.py │ │ ├── embeddings │ │ ├── __init__.py │ │ ├── colpali_embedding.py │ │ ├── huggingface_auto_image_embedding.py │ │ ├── image_resnetv2_embedding.py │ │ ├── langchain_embedding.py │ │ ├── object_embedding.py │ │ ├── random_embedding.py │ │ ├── sentence_transformers_embedding.py │ │ ├── soma_geneptw_embedding.py │ │ ├── soma_scgpt_embedding.py │ │ └── soma_scvi_embedding.py │ │ ├── flat_index.py │ │ ├── index.py │ │ ├── ingestion.py │ │ ├── ivf_flat_index.py │ │ ├── ivf_pq_index.py │ │ ├── kmeans.cc │ │ ├── module.cc │ │ ├── module.py │ │ ├── object_api │ │ ├── __init__.py │ │ ├── embeddings_ingestion.py │ │ └── object_index.py │ │ ├── object_readers │ │ ├── __init__.py │ │ ├── bioimage_reader.py │ │ ├── directory_reader.py │ │ ├── object_reader.py │ │ ├── soma_reader.py │ │ └── tiledb_1d_array_reader.py │ │ ├── storage_formats.py │ │ ├── type_erased_module.cc │ │ ├── utils.py │ │ └── vamana_index.py │ └── test │ ├── array_paths.py │ ├── common.py │ ├── conftest.py │ ├── ipynb │ ├── README.md │ ├── image-search-dashboard.ipynb │ ├── requirements.txt │ ├── staging-vector-search-checks-py.ipynb │ └── tiledb_101_vector_search.ipynb │ ├── local-benchmarks.py │ ├── test_api.py │ ├── test_backwards_compatibility.py │ ├── test_cloud.py │ ├── test_directory_reader.py │ ├── test_distance_metrics.py │ ├── test_index.py │ ├── test_ingestion.py │ ├── test_module.py │ ├── test_object_index.py │ ├── test_type_erased_module.py │ └── test_utils.py ├── backwards-compatibility-data ├── README.md ├── data │ ├── 0.0.10 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ └── __1707752073625_1707752073625_4325ff5e299b4feab26996f49b757620_2 │ │ │ ├── __meta │ │ │ │ └── __1707752073618_1707752073618_89e72e1f1f454bfb9dbfeec7f80be57c │ │ │ ├── __tiledb_group.tdb │ │ │ └── parts.tdb │ │ │ │ ├── __commits │ │ │ │ └── __1707752073631_1707752073631_0674618bfa5e45288a131f642728cfcb_21.con │ │ │ │ ├── __fragments │ │ │ │ └── __1707752073631_1707752073631_10e7874587b34088b16190d5b2bc64e5_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1707752073624_1707752073624_e42832516f54483687a57dfebb47714f │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ └── __1707752073649_1707752073649_f63b4c96b14f48dc9a1709088945d85a_2 │ │ │ ├── __meta │ │ │ │ └── __1707752073648_1707752073648_8a467c33edc8449390e6a5e760eda84a │ │ │ ├── __tiledb_group.tdb │ │ │ └── parts.tdb │ │ │ │ ├── __commits │ │ │ │ └── __1707752073652_1707752073652_058fdc4ea9af46338a3b245012a10de2_21.con │ │ │ │ ├── __fragments │ │ │ │ └── __1707752073652_1707752073652_93b6a7415dd44e3f95640e8ecd722608_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1707752073649_1707752073649_3c89bd9653b940dd9b13cc677cf78a78 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ └── __1707752073671_1707752073671_ffed66fe7c21494fabf737ea2a8414ac_2 │ │ │ ├── __meta │ │ │ │ └── __1707752073665_1707752073665_651f827c949942e6929de6318522842a │ │ │ ├── __tiledb_group.tdb │ │ │ ├── centroids.tdb │ │ │ │ ├── __commits │ │ │ │ │ └── __1707752074278_1707752074278_fc85ee3258754b1c832cf377905982dc_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707752074278_1707752074278_fc85ee3258754b1c832cf377905982dc_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707752073666_1707752073666_07293cb6d2784c69bf2e82aa2b7d0ec0 │ │ │ ├── ids.tdb │ │ │ │ ├── __commits │ │ │ │ │ └── __1707752074519_1707752074519_94b73b5c1e30443892dbd36e7be357e8_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707752074519_1707752074519_381c0da86bd14d31a5d952999699a788_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707752073667_1707752073667_986a9f8116834c9fb7e65d8908353c55 │ │ │ ├── index.tdb │ │ │ │ ├── __commits │ │ │ │ │ └── __1707752074501_1707752074501_7163a46737754586aecaa432433cba3d_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707752074501_1707752074501_7163a46737754586aecaa432433cba3d_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707752073666_1707752073666_3e4cf17350b6448ba6c9b1629e90cda3 │ │ │ └── parts.tdb │ │ │ │ ├── __commits │ │ │ │ └── __1707752074515_1707752074515_4d2e69eeedac4ed8bd8915c6f3504b37_21.con │ │ │ │ ├── __fragments │ │ │ │ └── __1707752074515_1707752074515_9b10e18d58c2495bbbc467bc9bdc5441_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1707752073667_1707752073667_6ab9a27f3ec34c9f90269da714f13b1a │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ └── __1707752074545_1707752074545_5d00896b298d4fe69a3531e498599329_2 │ │ │ ├── __meta │ │ │ └── __1707752074540_1707752074540_44689ff48b0e4334951c2164668f024c │ │ │ ├── __tiledb_group.tdb │ │ │ ├── centroids.tdb │ │ │ ├── __commits │ │ │ │ └── __1707752074550_1707752074550_b5c6a112d8324187a1eede3acfb841a1_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1707752074550_1707752074550_b5c6a112d8324187a1eede3acfb841a1_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1707752074540_1707752074540_b7ba7de9932c4032881bf4eb6eb4da79 │ │ │ ├── ids.tdb │ │ │ ├── __commits │ │ │ │ └── __1707752074601_1707752074601_47806aa4750d406094837f427d246d38_21.con │ │ │ ├── __fragments │ │ │ │ └── __1707752074601_1707752074601_aac9c907761f4681b5c1008e33168044_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1707752074541_1707752074541_446c4f4ee0c64f3c81a0dbe15f367781 │ │ │ ├── index.tdb │ │ │ ├── __commits │ │ │ │ └── __1707752074579_1707752074579_699ea5a1d24d4c5f83b1a4d2a55bdf90_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1707752074579_1707752074579_699ea5a1d24d4c5f83b1a4d2a55bdf90_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1707752074541_1707752074541_a15876a9fd52421eb8169b66adce3c6f │ │ │ └── parts.tdb │ │ │ ├── __commits │ │ │ └── __1707752074596_1707752074596_bd64fa7be4e340c4a5f65021ec6470f1_21.con │ │ │ ├── __fragments │ │ │ └── __1707752074596_1707752074596_e475f4c9724448988d5d39cfef6dc9f1_21 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ └── __1707752074542_1707752074542_9c97de3e09894397817372a3ddb760d9 │ ├── 0.0.17 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ └── __1707750629897_1707750629897_363784f9f5a746b78558cb5dd92e0550_2 │ │ │ ├── __meta │ │ │ │ └── __1707750629881_1707750629881_da62baf6acb945d3bafdc51876cd758f │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids_02_12_2024_16_10_29 │ │ │ │ ├── __commits │ │ │ │ │ └── __1707750629906_1707750629906_91a0ffea737c496daee855e9fe8af736_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707750629906_1707750629906_91a0ffea737c496daee855e9fe8af736_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707750629896_1707750629896_e45029591800475f92415bfe77e5aa90 │ │ │ └── shuffled_vectors_02_12_2024_16_10_29 │ │ │ │ ├── __commits │ │ │ │ └── __1707750629902_1707750629902_023f97b6ba494a1a8bf452d6a4781677_21.con │ │ │ │ ├── __fragments │ │ │ │ └── __1707750629902_1707750629902_fb2ce4823de34db5a01df9a3d63d5bb4_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1707750629896_1707750629896_bc1bd745832140cb8ff976ed96298113 │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ └── __1707750629932_1707750629932_4bc4a9422285434f89110dbfa9f0f556_2 │ │ │ ├── __meta │ │ │ │ └── __1707750629925_1707750629925_82cbefe1f55348b490400fe3a38d726d │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids_02_12_2024_16_10_29 │ │ │ │ ├── __commits │ │ │ │ │ └── __1707750629939_1707750629939_04355f4446dc41e19daad291b8afbdbd_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707750629939_1707750629939_04355f4446dc41e19daad291b8afbdbd_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707750629930_1707750629930_10a984fb7fc544a1a73efd22204de6af │ │ │ └── shuffled_vectors_02_12_2024_16_10_29 │ │ │ │ ├── __commits │ │ │ │ └── __1707750629935_1707750629935_c4985d0a58074d31b70069e81af96ae0_21.con │ │ │ │ ├── __fragments │ │ │ │ └── __1707750629935_1707750629935_e30cf61398dc4138a709c335cb8b1643_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1707750629931_1707750629931_079e83256fc041cfbd4ce6bdbe6a2140 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ └── __1707750629965_1707750629965_ed5800f60e484302b42eedcca2fa725d_2 │ │ │ ├── __meta │ │ │ │ └── __1707750629954_1707750629954_1da2d927b54944afbfe8f3a125c070c3 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids_02_12_2024_16_10_29 │ │ │ │ ├── __commits │ │ │ │ │ └── __1707750630608_1707750630608_bf853bd2c0014c108bff5faf07b68191_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707750630608_1707750630608_bf853bd2c0014c108bff5faf07b68191_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707750629959_1707750629959_c8dc2ec1bd47422da55a2d03f6d60171 │ │ │ ├── partition_indexes_02_12_2024_16_10_29 │ │ │ │ ├── __commits │ │ │ │ │ └── __1707750630790_1707750630790_886d38a0ae7543ba91299cae7825b055_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707750630790_1707750630790_886d38a0ae7543ba91299cae7825b055_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707750629960_1707750629960_cf475ca5e3b644d5a1aaf5971f3dc7bc │ │ │ ├── shuffled_vector_ids_02_12_2024_16_10_29 │ │ │ │ ├── __commits │ │ │ │ │ └── __1707750630823_1707750630823_59ee47c1699143f29de034f6d0291079_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707750630823_1707750630823_aafd47729ad744a0863addcc24fd3946_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707750629961_1707750629961_59c3c69f36424ee9b042d7695ccc7a97 │ │ │ └── shuffled_vectors_02_12_2024_16_10_29 │ │ │ │ ├── __commits │ │ │ │ └── __1707750630818_1707750630818_51d007ff309b4db281b4fe9db2cef90c_21.con │ │ │ │ ├── __fragments │ │ │ │ └── __1707750630818_1707750630818_b73bcd3fefb44fdf8ae8b5b06d56e37c_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1707750629961_1707750629961_ab4e7a86719f4d3bb02e87d8bc991775 │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ └── __1707750630856_1707750630856_b6a1047bacd640009229c249fe7ccb0b_2 │ │ │ ├── __meta │ │ │ └── __1707750630846_1707750630846_d044df47d7b84887b66c6f7ce0ced11c │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids_02_12_2024_16_10_30 │ │ │ ├── __commits │ │ │ │ └── __1707750630867_1707750630867_ee4a9a8825994dbbbbaf53d27d2eaad2_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1707750630867_1707750630867_ee4a9a8825994dbbbbaf53d27d2eaad2_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1707750630851_1707750630851_e677394d49a7462b928dd11bd0618468 │ │ │ ├── partition_indexes_02_12_2024_16_10_30 │ │ │ ├── __commits │ │ │ │ └── __1707750630899_1707750630899_782dac7705a44071bea4ed033b622019_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1707750630899_1707750630899_782dac7705a44071bea4ed033b622019_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1707750630852_1707750630852_3591ca40328044a0bbeaad027708c944 │ │ │ ├── shuffled_vector_ids_02_12_2024_16_10_30 │ │ │ ├── __commits │ │ │ │ └── __1707750630920_1707750630920_bca4b5559da44964aacc2291af4b8d77_21.con │ │ │ ├── __fragments │ │ │ │ └── __1707750630920_1707750630920_a54813a00db54d6ea45bbab4b4f0d4a1_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1707750630852_1707750630852_4e745d47ab3d4068bc5941b5d60dfb4e │ │ │ └── shuffled_vectors_02_12_2024_16_10_30 │ │ │ ├── __commits │ │ │ └── __1707750630915_1707750630915_f551836b3ab941bd9bd170a0990d6b47_21.con │ │ │ ├── __fragments │ │ │ └── __1707750630915_1707750630915_fc9c5de6e07149dfaa57141b0fec29c4_21 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ └── __1707750630853_1707750630853_b1ba2461371c42fb9b00d8b9da30e330 │ ├── 0.0.21 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1707751776300_1707751776300_0f40bdd13c924dba8388a98976c057cf_2 │ │ │ │ └── __1707751776305_1707751776305_8676eb368eb0400797a4093b60ce641d_2 │ │ │ ├── __meta │ │ │ │ ├── __1707751776282_1707751776282_d8f82393dd974ecc99a2b4b46b5f6bc4 │ │ │ │ ├── __1707751776298_1707751776298_c1f351554dc64da693d8a29daae72410 │ │ │ │ ├── __1707751776337_1707751776337_2186013aa07740078730e3abc6812739 │ │ │ │ └── __1707751776338_1707751776338_97d3edf62f1d49e288e3ded9b0d27170 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1707751776334_1707751776334_3392391857f640cdb015fd03d87af538_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707751776334_1707751776334_8824049876fa4376a83a5f37b95e8eb2_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707751776299_1707751776299_b7955fc0b02a4c31953314fc04b09c2d │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1707751776310_1707751776310_354ef92f12584b3c937a55e1a41b5742_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707751776310_1707751776310_75a74ecb81d241b1847e7aa06931b6fb_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707751776299_1707751776299_3d9f18b1d09c42ed9a69c83a4de8719c │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1707751776300_1707751776300_8e37965c711a4d948f83cfa37a45ff4a │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1707751776370_1707751776370_17c43d97c3a8422388d1d49e20013029_2 │ │ │ │ └── __1707751776374_1707751776374_5d456ef9477b4dc588e9f9ed68b23949_2 │ │ │ ├── __meta │ │ │ │ ├── __1707751776363_1707751776363_336dac60aa894acd803d886cdf1c1f85 │ │ │ │ ├── __1707751776368_1707751776368_9f178649a6ba4fbfb1b0f971fc910a6a │ │ │ │ ├── __1707751776402_1707751776402_84b93822933c4daaa90814f9e628e8f1 │ │ │ │ └── __1707751776403_1707751776403_c9c46a600d4d4c3297962b09dabca927 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1707751776396_1707751776396_dde6557ee9d24a09a60102437edf4c93_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707751776396_1707751776396_dcae2bc05f01421f87fc491cc18a5647_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707751776369_1707751776369_5c3bb34f60d64555a67bd9b8773de8c6 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1707751776378_1707751776378_fb76a3023ef74a19acf11c1fc42381f8_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707751776378_1707751776378_5be6c0be0a5542f7ad7a998ce0732d59_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707751776369_1707751776369_1bfbdb3993364228b72cb6f29a1f7263 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1707751776370_1707751776370_83130d6fad4744d59031bc1cb6f2ed88 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1707751776444_1707751776444_edd342abfcc9404fbd7bf6edd6872e87_2 │ │ │ │ ├── __1707751776450_1707751776450_a911f0242d6746e4afce37d99fdb0d62_2 │ │ │ │ └── __1707751777353_1707751777353_b424d3096b824c1291bf778dc3102756_2 │ │ │ ├── __meta │ │ │ │ ├── __1707751776432_1707751776432_1def698cd1ce4525a1eb65cf6f65a992 │ │ │ │ ├── __1707751776440_1707751776440_5cae9e999b9d492fafc03bcbadd62f7a │ │ │ │ ├── __1707751776441_1707751776441_01f91a9f40664f72894983f41ae0a0ee │ │ │ │ ├── __1707751777305_1707751777305_185ef039bd8c46fe99c328181bed5ee3 │ │ │ │ └── __1707751777343_1707751777343_1e6cc0fe7a4d441199d35f3f6234da67 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1707751777074_1707751777074_10761ec3337a4c3aa8af73b2635d6b19_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707751777074_1707751777074_10761ec3337a4c3aa8af73b2635d6b19_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707751776441_1707751776441_c42601e6030840269c21fe7487805845 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1707751777306_1707751777306_0196e677b4c94d6cb749cbe149de7c6c_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707751777306_1707751777306_0196e677b4c94d6cb749cbe149de7c6c_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707751776441_1707751776441_764375dde3174a829b115ea346255a12 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1707751777338_1707751777338_2d8e60f42d0140f48167b416689c8db7_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707751777338_1707751777338_0ac57118ab0940c8a1f8edada80c75eb_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707751776442_1707751776442_307697f4121444989a0877c8736c9957 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1707751777325_1707751777325_a202feddbe1c4d29b750b9e3c435e6c3_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1707751777325_1707751777325_3d95e255bd834b818a8d2f8597c08a33_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1707751776443_1707751776443_9b354ef72c1c4ae8b50879ab45ccb02a │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1707751776444_1707751776444_ef3ab3c8cef149da9083c2e33da014a8 │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1707751777387_1707751777387_b4e10611711643108fb5cf894da5f563_2 │ │ │ ├── __1707751777398_1707751777398_a75c95c61d0c4e7e94456caeb00a1b09_2 │ │ │ └── __1707751777517_1707751777517_74d2aaa777454b7383453456cdfc2088_2 │ │ │ ├── __meta │ │ │ ├── __1707751777375_1707751777375_a33f6d9e609d4b3cba57fafb59aa03d0 │ │ │ ├── __1707751777382_1707751777382_6773f5861b784812938e5eb196e28afe │ │ │ ├── __1707751777383_1707751777383_e0df41fa73514748928530ab78d4dd90 │ │ │ ├── __1707751777464_1707751777464_19ae1f5ff9744f579cb3c2ecdc2eed54 │ │ │ └── __1707751777506_1707751777506_edf192695b704b2c8ccfe314874463fe │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1707751777403_1707751777403_aa0383445d6e489f90e5bf4626ac7f6f_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1707751777403_1707751777403_aa0383445d6e489f90e5bf4626ac7f6f_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1707751777383_1707751777383_b78646e393e248c6b06c80e89f10a61d │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1707751777465_1707751777465_eb7523e4760248c2aee05b37522e4a91_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1707751777465_1707751777465_eb7523e4760248c2aee05b37522e4a91_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1707751777384_1707751777384_c02b80f87b3a43d48590d28ad9717c2a │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1707751777500_1707751777500_b36752b9f3214adeab9994b3ae249b3e_21.con │ │ │ ├── __fragments │ │ │ │ └── __1707751777500_1707751777500_f2cd576f38874f8fbeca7b9ba748510d_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1707751777385_1707751777385_e9ae215ac0914b07974afa614fe51011 │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1707751777487_1707751777487_5b159f49eab94de6b25a190cd6908bfa_21.con │ │ │ ├── __fragments │ │ │ │ └── __1707751777487_1707751777487_1bbc36baf4c746a5aaf68a24804d1e8f_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1707751777385_1707751777385_308ac99c3d3146069d38b90732837ca1 │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1707751777386_1707751777386_795de4813c4c4dadb24fa5ee34fa7589 │ ├── 0.0.22 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1709222107586_1709222107586_93c6447f6795430e93d693f6a5c413c0_2 │ │ │ │ └── __1709222107594_1709222107594_32695026873141f7aa12a5c27beec003_2 │ │ │ ├── __meta │ │ │ │ ├── __1709222107569_1709222107569_d49e9e2eea5d4212bd44df32f4097860 │ │ │ │ ├── __1709222107581_1709222107581_223551694e134f1a8b58a8559333e487 │ │ │ │ ├── __1709222107645_1709222107645_0c4f1743c1a84ac19d71b2e137471093 │ │ │ │ └── __1709222107647_1709222107647_01021d1ab7ca464f92f45063f7d55a65 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1709222107640_1709222107640_f4ea1c0157e04ada9c5792e4b343baed_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709222107640_1709222107640_4691e47895384e21a2c5d7860fe3d25b_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709222107583_1709222107583_a1c2491a4cbc4994940d3c166778ee2d │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1709222107601_1709222107601_a5b71052443e4e5db34f357831e40c1b_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709222107601_1709222107601_fc1a30824e72487398fc98e22edfbf43_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709222107584_1709222107584_2ea236ee6e044e4f920f53d457e42afa │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1709222107585_1709222107585_bc999c55bd2443449aea6c8db4013bea │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1709222107695_1709222107695_80d39dedcb9641f98f89c55d93915489_2 │ │ │ │ └── __1709222107701_1709222107701_003ed01ebb8940a4ab031b5767e96413_2 │ │ │ ├── __meta │ │ │ │ ├── __1709222107683_1709222107683_35c75b3553a4438385f3942af9a52634 │ │ │ │ ├── __1709222107690_1709222107690_0fc25d8b973244d4aa4c240cf47c3f8e │ │ │ │ ├── __1709222107753_1709222107753_b09cfe4fccf34855a966b99ad9be2f00 │ │ │ │ └── __1709222107754_1709222107754_81512222bfee49cb89b0a6aec0c78e3a │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1709222107744_1709222107744_5f77eae093b74d4fac242c8d5b9b268b_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709222107744_1709222107744_6ba01e4b04684339b2c8deb0c6aa1a31_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709222107692_1709222107692_e222963676f3416da2958ffffbc4bc66 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1709222107711_1709222107711_ad8a2c5463dd48ad9b42c11075c480e6_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709222107711_1709222107711_a586ff993714405bad078131a0393c68_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709222107693_1709222107693_ec26368385b04e298afa9474598eedb0 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1709222107695_1709222107695_f82ea34836c146a4b726697743488cba │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1709222107805_1709222107805_d79c372a05b54d61abd07938529235f3_2 │ │ │ │ ├── __1709222107815_1709222107815_ea7f955047de44539bfdc279c267f362_2 │ │ │ │ └── __1709222108928_1709222108928_50c2c8928fe04e1f8877b807ab4d7a33_2 │ │ │ ├── __meta │ │ │ │ ├── __1709222107790_1709222107790_1b362590d68746e0862dd0518fe2e69c │ │ │ │ ├── __1709222107797_1709222107797_79070dbcb324417f9575886f7ee97a9b │ │ │ │ ├── __1709222107799_1709222107799_1efb1111a3d9457ca9734cb9292e9e67 │ │ │ │ ├── __1709222108863_1709222108863_9e0fc1bf79b34ca98949a5ee280e72ab │ │ │ │ └── __1709222108918_1709222108918_52bbdd5c42084b4daca4dbe036f65dcb │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1709222108738_1709222108738_8505735551de4702928353c1934672e4_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709222108738_1709222108738_8505735551de4702928353c1934672e4_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709222107799_1709222107799_632e7b2e2bd64578940e03dce1eb667d │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1709222108865_1709222108865_dacbdbdc3b8b450f9bc2b8ef4d6e9da8_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709222108865_1709222108865_dacbdbdc3b8b450f9bc2b8ef4d6e9da8_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709222107800_1709222107800_d77781c7481042c0a1749d2fb0dac81e │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1709222108912_1709222108912_10fccc48ba4f4dc18007e1730f2c63fd_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709222108912_1709222108912_21cf5f3803e148f388bf99a12f28c41e_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709222107801_1709222107801_098f5e676bfa46129b08cb50100ab2f6 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1709222108888_1709222108888_acca45949fc2487d8ecca6f741028289_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709222108888_1709222108888_2e569a2437e941a887083636004ffd50_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709222107802_1709222107802_73ad1c05f6e1490481186458af6906a1 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1709222107803_1709222107803_a558f911b4864fbcbfec92c10b4bc8c0 │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1709222108972_1709222108972_9c1307df3746483a98cd8939b44ca612_2 │ │ │ ├── __1709222108982_1709222108982_3d05e43bcc174e2489133328fb5eaf55_2 │ │ │ └── __1709222109121_1709222109121_bc256de515b6453fbf43ec7f8e8eaf9b_2 │ │ │ ├── __meta │ │ │ ├── __1709222108957_1709222108957_f2a5713930844dbea9b1578de15401f5 │ │ │ ├── __1709222108965_1709222108965_5770b591a80149ffb6daf34282728914 │ │ │ ├── __1709222108966_1709222108966_690d215beb6b4a80b1acdbc452a0293d │ │ │ ├── __1709222109059_1709222109059_f575ddcec3f541b0b1bd4a7b5309e563 │ │ │ └── __1709222109110_1709222109110_d1ab477c5b864a11a8e71d329ba268bb │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1709222108989_1709222108989_fa821bd5fb264b8c80f405f4212c7f73_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1709222108989_1709222108989_fa821bd5fb264b8c80f405f4212c7f73_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1709222108966_1709222108966_6a40c188d26741f89f46c23fe6ea393c │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1709222109060_1709222109060_d9f4e6dc36e04a5690fa5a811f1352a5_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1709222109060_1709222109060_d9f4e6dc36e04a5690fa5a811f1352a5_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1709222108967_1709222108967_ddabe08105044ba0a86e056cdb796104 │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1709222109102_1709222109102_509a8b205e4b48b889c3906d22cc5e8e_21.con │ │ │ ├── __fragments │ │ │ │ └── __1709222109102_1709222109102_9a6bbcdd203d4a38b35a4420a2f6fb85_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1709222108968_1709222108968_4ab126fd2b7948ab818bda6ed190926a │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1709222109083_1709222109083_989871ef05dc401694a4ed2f11121094_21.con │ │ │ ├── __fragments │ │ │ │ └── __1709222109083_1709222109083_70090a9206a04bd695d92a0987566771_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1709222108970_1709222108970_29e1f99e8443452e8aea12d91bcdc752 │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1709222108971_1709222108971_a311838af68f437d95fe9cb86c6a6c63 │ ├── 0.0.23 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1709639933084_1709639933084_9c785a73353946fd8df93646bc7acee5_2 │ │ │ │ └── __1709639933092_1709639933092_601ee538089140f594996ca2b14213dc_2 │ │ │ ├── __meta │ │ │ │ ├── __1709639933068_1709639933068_a485b2ee0be745bcbff3efba49872a5d │ │ │ │ ├── __1709639933080_1709639933080_05e8ae499f4742168c957d75006b591f │ │ │ │ ├── __1709639933138_1709639933138_efe0b3321ee14a318a15623b476a5214 │ │ │ │ └── __1709639933140_1709639933140_27276a66c1c84461b7499ae83d3cff09 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1709639933133_1709639933133_6de28b1298d54d40a8c0fb5ceabd41db_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709639933133_1709639933133_0a1ec3f92e2945408a45b7657050a429_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709639933081_1709639933081_b2f2fbebc537445b9d97fb30995fb96f │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1709639933098_1709639933098_c944c4259449463e809eef5e9914b2e3_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709639933098_1709639933098_e021fc6dfeac47df83d1048d28dcd4dd_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709639933083_1709639933083_1515ca6712f14eac898bff51bf9a00c3 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1709639933084_1709639933084_75c9dc7009f546799dfbdcbcec7ee152 │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1709639933184_1709639933184_5d9385551ac643c9bb7aa99d6a4f72cc_2 │ │ │ │ └── __1709639933190_1709639933190_29a4a0f62044489db18a9b0803e384c5_2 │ │ │ ├── __meta │ │ │ │ ├── __1709639933172_1709639933172_0163572869734d42b6873a83224954a8 │ │ │ │ ├── __1709639933179_1709639933179_2040cd27f0c241eebaf06d10fd80ceb7 │ │ │ │ ├── __1709639933241_1709639933241_d4e2cb0a53464be3a3fefb887f857ee0 │ │ │ │ └── __1709639933243_1709639933243_a04287d4d3cc43479068c23d690eaa4c │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1709639933233_1709639933233_4f3df7beff474ae8876e615c2f024904_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709639933233_1709639933233_4d3927a125d244cf8c5465ed0f1e2adf_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709639933181_1709639933181_e8f48e3778b64e40be3cb5c2b5de79bc │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1709639933200_1709639933200_27fb2d2df1864b408f7fe45ada502881_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709639933200_1709639933200_3c228221221f485bb8dc2baf384a79e2_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709639933182_1709639933182_3a978cbcdbf24294b8ae86c29f2b5ca5 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1709639933183_1709639933183_b1bc3f6e0c5844408193ede79578284a │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1709639933297_1709639933297_6e0fbf32005e4bbaaa8a793af457e4b3_2 │ │ │ │ ├── __1709639933309_1709639933309_d3806035d24349158443c244864903c3_2 │ │ │ │ └── __1709639934093_1709639934093_bdf20fd9df7b48a487642b52270e04ac_2 │ │ │ ├── __meta │ │ │ │ ├── __1709639933280_1709639933280_3d700935cc864e3abf6c3b8faa7f1034 │ │ │ │ ├── __1709639933288_1709639933288_ecad75d5ba8d4da8bc6f43623e6596ca │ │ │ │ ├── __1709639933290_1709639933290_2524c97c83424c9cb7541b2e87ab06a3 │ │ │ │ ├── __1709639934030_1709639934030_ef9cff56e0e7489c99d7e7753077d7ee │ │ │ │ └── __1709639934082_1709639934082_65b2830c58154e6fba3d0fe5c9edcba0 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1709639933900_1709639933900_6ee8c71ec7344554b3ca051a2d08550d_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709639933900_1709639933900_6ee8c71ec7344554b3ca051a2d08550d_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709639933291_1709639933291_979f5a81db2b41a0b46aa9b48c0e22ee │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1709639934032_1709639934032_c9987c83572342888b46bc4ffae7d905_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709639934032_1709639934032_c9987c83572342888b46bc4ffae7d905_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709639933292_1709639933292_9693f3eab322411d8918f35598a99686 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1709639934075_1709639934075_4e80029966e9460a8c342ec65d3d8a14_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709639934075_1709639934075_cc3a79e4c4cc48e087ef10ec58b6a02f_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709639933293_1709639933293_95b44b60ef4842a98dce9a3b38653f20 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1709639934055_1709639934055_97d2f788bc1f421eac4a224038c23378_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1709639934055_1709639934055_48fe0b17a9da411eac473fefa3326ffe_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1709639933294_1709639933294_6c7b3029c0534415bbd2932eec562759 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1709639933295_1709639933295_f1d4c410001441fb8f09e821caaffc6c │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1709639934138_1709639934138_c14ecadd07fb473c9deb64e984b630fe_2 │ │ │ ├── __1709639934150_1709639934150_7b0efb611a604770b7be8cc95969a153_2 │ │ │ └── __1709639934293_1709639934293_0da69eddc33a4dd3897c8e3c3203395f_2 │ │ │ ├── __meta │ │ │ ├── __1709639934122_1709639934122_b0f3b2254ba84bfd90b587c51be5164c │ │ │ ├── __1709639934130_1709639934130_693b31e81e3b473687446eb8c0c56f8f │ │ │ ├── __1709639934131_1709639934131_5f8d6a3ee5fb44d4a887cd5de5a06699 │ │ │ ├── __1709639934229_1709639934229_051ef0aacfc445fbac608d8e1780d52d │ │ │ └── __1709639934282_1709639934282_4351e9f5db43428191219310ac2bffb6 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1709639934157_1709639934157_0f4a697b44b24649909c0e3c392d622f_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1709639934157_1709639934157_0f4a697b44b24649909c0e3c392d622f_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1709639934132_1709639934132_7304c555717449d48fae8bac228e00cd │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1709639934232_1709639934232_123d7582b4d54d59a1444f6e367fed01_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1709639934232_1709639934232_123d7582b4d54d59a1444f6e367fed01_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1709639934133_1709639934133_2f3e7826d43545c5ac6926358b5c0b93 │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1709639934274_1709639934274_e04ca3c666f140a1ba398e40e748a7a3_21.con │ │ │ ├── __fragments │ │ │ │ └── __1709639934274_1709639934274_21b19a80c42e4fb6a914afa0a049bade_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1709639934134_1709639934134_36610b20cfd04ad1ab8705a07f6bad30 │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1709639934254_1709639934254_1527dd5ff6e34d1c897e600e8994f98f_21.con │ │ │ ├── __fragments │ │ │ │ └── __1709639934254_1709639934254_fcdce0dc6e0842bea9af44d1ce19ca0c_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1709639934135_1709639934135_01ce49b480144cbb93834c6790f52536 │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1709639934136_1709639934136_9569d3ec8bfb40629498d4632e59609d │ ├── 0.1.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1708115904942_1708115904942_31bd85d8e9024bfa994d832930ef0711_2 │ │ │ │ └── __1708115904954_1708115904954_877ab9dd1cd2443ab39445c89d19f653_2 │ │ │ ├── __meta │ │ │ │ ├── __1708115904922_1708115904922_adac57ea17104e1c9a8e2aab872b6899 │ │ │ │ ├── __1708115904934_1708115904934_12e14643efef4a9681b4787d415aa8d5 │ │ │ │ ├── __1708115905009_1708115905009_2f62fa8961be4a2aa79fa08877cb8a96 │ │ │ │ └── __1708115905011_1708115905011_f9e318f483344d39867efb8ad6d4cf8a │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1708115905003_1708115905003_b4bdd31ae86d41e7979fefe3710ce011_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1708115905003_1708115905003_99df5ce3efe644d5becb4ec4b3e18095_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1708115904937_1708115904937_619945d6fac4451a9d2f9effe7fb695d │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1708115904960_1708115904960_ff975e58c2274b9cbcbc562cf1fef08a_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1708115904960_1708115904960_603ef16d368943ba98d1d0f0f2c6c6a8_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1708115904938_1708115904938_da7a0ab7776a4edba8cccb93ec51f74e │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1708115904939_1708115904939_4bf7b77f0adb40de9dce00842dbebbe5 │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1708115905062_1708115905062_8175c224fe0548268996e7eb7eb61a40_2 │ │ │ │ └── __1708115905067_1708115905067_d1d3da1a9a094a3794e5cc96b1acb8da_2 │ │ │ ├── __meta │ │ │ │ ├── __1708115905047_1708115905047_44b525af3db84c41a6cc23ad49b64f3d │ │ │ │ ├── __1708115905055_1708115905055_d260a10f915c4048b757c21160601d2c │ │ │ │ ├── __1708115905123_1708115905123_6db6f4a9536a4a7d90f4c486ad235851 │ │ │ │ └── __1708115905126_1708115905126_b0bd3bc51b53446facf2a208b6f5f36a │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1708115905114_1708115905114_25419eed42d3419c9fb9fb3e725860d9_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1708115905114_1708115905114_7dd8f0fc6da842bf8a648c5e84b21a43_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1708115905058_1708115905058_57b61be8f8324654887ca157ad8e27bf │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1708115905078_1708115905078_187a6dfdb77145fda6a3560599ef0465_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1708115905078_1708115905078_a52b427642b7431ab57d0878d8a3df0b_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1708115905059_1708115905059_4018656b4ade418fbd3a0db552e81fa4 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1708115905061_1708115905061_1ca73272ea9b49ccbd3763e733a8d331 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1708115905179_1708115905179_054a53cd19d04a7099da6cc9ea7cc3ae_2 │ │ │ │ ├── __1708115905193_1708115905193_8135f913476340a08307d2bee0547470_2 │ │ │ │ └── __1708115905941_1708115905941_97eb8207e7604afb9553e40d32d838d5_2 │ │ │ ├── __meta │ │ │ │ ├── __1708115905161_1708115905161_a6e1daeaa4704581bfecbad43a56aedf │ │ │ │ ├── __1708115905170_1708115905170_de283e498fda4469a574a391778c53fa │ │ │ │ ├── __1708115905172_1708115905172_1165a704968b44198fd77e3d8c594c0a │ │ │ │ ├── __1708115905874_1708115905874_10c7e79b659a4e0785b82d2bcf16c3d7 │ │ │ │ └── __1708115905929_1708115905929_9252d9c05f404d10b437e9a2d75c44a1 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1708115905745_1708115905745_db421bd366d2445a8422d9cb595584d6_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1708115905745_1708115905745_db421bd366d2445a8422d9cb595584d6_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1708115905172_1708115905172_86f2a4d4821443d8bbd988a8945d7d6f │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1708115905876_1708115905876_f4eecd0594d3410aa6fa3211559d2d85_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1708115905876_1708115905876_f4eecd0594d3410aa6fa3211559d2d85_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1708115905173_1708115905173_5d0f450322e647baaba79e058ade687d │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1708115905922_1708115905922_b72896645f8940b9a707c51c05c3a9ea_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1708115905922_1708115905922_8bbfc26315f441658bbc187f1c150e93_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1708115905174_1708115905174_cec18c04ba0a4647b92590ed62e6a17c │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1708115905898_1708115905898_5520c478e75d4e0fb3d77ade83bfc707_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1708115905898_1708115905898_45613b6c4f6a41358ddb2f8025090505_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1708115905176_1708115905176_3ba0b8eb281a49a1b1797aab3b62cf8b │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1708115905177_1708115905177_96638c3ca86b4ad68a6d723c181896fe │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1708115905987_1708115905987_9a996054bad745a1bb36e02ffa68a50f_2 │ │ │ ├── __1708115905999_1708115905999_3548c8c8356340e79fd2b557791a2f03_2 │ │ │ └── __1708115906156_1708115906156_d61c5deac8174d0d973fece83eccaba5_2 │ │ │ ├── __meta │ │ │ ├── __1708115905971_1708115905971_642e0c5c70a04e5a939586f52b8d47ea │ │ │ ├── __1708115905979_1708115905979_1f1712b511644a42bf250a255f3d53d3 │ │ │ ├── __1708115905980_1708115905980_df4b9bfd07864fab88da57bf04f78dd3 │ │ │ ├── __1708115906090_1708115906090_693d399d37f34d1d94023b65b7299917 │ │ │ └── __1708115906144_1708115906144_77896560214c44e793f27afd4aa66d57 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1708115906006_1708115906006_c82fa505823d447586aa3e18275ad5ac_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1708115906006_1708115906006_c82fa505823d447586aa3e18275ad5ac_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1708115905980_1708115905980_806c4167c5134fc5aff25019b5199991 │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1708115906092_1708115906092_4ce44abe232d4671b1e6ac2e0a80fa2d_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1708115906092_1708115906092_4ce44abe232d4671b1e6ac2e0a80fa2d_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1708115905982_1708115905982_3d26de3d91b64c3cbcd3617d16ebce94 │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1708115906136_1708115906136_bd610636453445dc9b0d9c6ce52cb752_21.con │ │ │ ├── __fragments │ │ │ │ └── __1708115906136_1708115906136_b72b77a7e0bb486686326f942323ef45_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1708115905983_1708115905983_70b89304f4774451b2c5a0c615a8ca1d │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1708115906115_1708115906115_ee70764c616d41ce86270c93def81dc2_21.con │ │ │ ├── __fragments │ │ │ │ └── __1708115906115_1708115906115_28b03b4070244b32a60bceeab969ca4f_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1708115905984_1708115905984_8c0a86f9a53b4415a174c011cb5b3e95 │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1708115905985_1708115905985_442bf1c0c89a45eba706defa60c5e0ae │ ├── 0.1.3 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1711629398717_1711629398717_6c929439afdd4751a06a6dfb4e9940e2_2 │ │ │ │ └── __1711629398730_1711629398730_2e6e6387493e45009e3424e2664f4c7f_2 │ │ │ ├── __meta │ │ │ │ ├── __1711629398699_1711629398699_1d0682b3bf1c49a3807c4efe4b4c2bd8 │ │ │ │ ├── __1711629398711_1711629398711_9aa9fa6c8d654b038f69448ea22ddc79 │ │ │ │ ├── __1711629398777_1711629398777_f3f2afda90ec434fb46e53bf062c20c2 │ │ │ │ └── __1711629398779_1711629398779_7337d1319c824e419edad02f5194517a │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1711629398772_1711629398772_bc63b6bfb5984050a62154548c3a8bf1_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711629398772_1711629398772_0e60600782354b9a89a0dd47be380f56_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711629398713_1711629398713_d2af233b447f4b99a09c7141112ac817 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1711629398736_1711629398736_ed324df3db18461ba534ba7b6096b6c0_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711629398736_1711629398736_a2de5d64505744e2a7c812fa3b605ad9_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711629398714_1711629398714_fc1e8e5c570e499ca7e13f4cbbee3845 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1711629398716_1711629398716_dc3167bb5d28428a9008a8b1f22ac651 │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1711629398825_1711629398825_eb06bbcec6fa4357b27117cc86aa9119_2 │ │ │ │ └── __1711629398831_1711629398831_50d1a315fede4b6c8293a989dc7f144d_2 │ │ │ ├── __meta │ │ │ │ ├── __1711629398812_1711629398812_447090e34391484babce4081159d2931 │ │ │ │ ├── __1711629398820_1711629398820_03025b1cbdad4f948b244ffa27658614 │ │ │ │ ├── __1711629398881_1711629398881_77a74157e5b2461bbd34a6223b1b5743 │ │ │ │ └── __1711629398883_1711629398883_e2798ba8543742a7b6105c65aa2dbb5d │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1711629398872_1711629398872_6ce64493651d4159b7677f368bc2d232_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711629398872_1711629398872_49bf24176ba14305bc43ffd1ea7ba7b7_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711629398822_1711629398822_4b22b47782a4484f944abc6de8cb0d57 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1711629398836_1711629398836_c784d29a86d7460a93e7fc11549d4af4_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711629398836_1711629398836_5326dc85204a417db746f8741c44102c_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711629398823_1711629398823_6d0bacb1f8244b4180ce7ba9aa36b7b7 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1711629398824_1711629398824_f2727cdb1fd7490e8d9ac7aec167ab19 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1711629398939_1711629398939_57fecc2ae2cb4c4e811c6a319197d370_2 │ │ │ │ ├── __1711629398951_1711629398951_4973aaac33b04b4b8355a459069ae1f9_2 │ │ │ │ └── __1711629399841_1711629399841_fa942ff02bb74ee5840de5e0251e4b79_2 │ │ │ ├── __meta │ │ │ │ ├── __1711629398923_1711629398923_6449ca652d524c2e888106257971c5b6 │ │ │ │ ├── __1711629398931_1711629398931_e4169f33ee9e48a2a1ccf8df2fadd00a │ │ │ │ ├── __1711629398933_1711629398933_f1821828b5664918b7b45e261c6d209b │ │ │ │ ├── __1711629399777_1711629399777_d8e39195ecd943c6970f6595201eb182 │ │ │ │ └── __1711629399830_1711629399830_7502795257c8474e96367c6e3ac8133b │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1711629399649_1711629399649_967cb51e19f741ecb71ead443b834cce_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711629399649_1711629399649_967cb51e19f741ecb71ead443b834cce_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711629398933_1711629398933_378e2bf4298b4a4f9801debfa277e2d0 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1711629399779_1711629399779_d3b59fa4319f40c1b6ee8d7228799dc6_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711629399779_1711629399779_d3b59fa4319f40c1b6ee8d7228799dc6_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711629398934_1711629398934_b657c6038b1d4ba4b708e1bfcd9b5755 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1711629399824_1711629399824_4fad79ad0999472187cf7db8fb6d85c4_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711629399824_1711629399824_f3968ea8c9e34b0eb6a0e1df82f11341_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711629398935_1711629398935_9dfd89b1d18e4ebbaf9fd45cbe20655b │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1711629399802_1711629399802_d552f1d7ed924eeb8cc7a858bbee1cf8_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711629399802_1711629399802_a8ccf59724dc4c718a4fe963c4acbe29_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711629398936_1711629398936_e4a2673c155f4dcc95ad6aadc22a78bb │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1711629398937_1711629398937_83bef22ac0964ca999a07462e7eabdda │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1711629399888_1711629399888_0b933aa43cad487dbb1a24fa7752972a_2 │ │ │ ├── __1711629399900_1711629399900_6aa8287e38674f95873dd6f8eef2d75d_2 │ │ │ └── __1711629400040_1711629400040_44b81c79fd1241719c86d397d33bd8c4_2 │ │ │ ├── __meta │ │ │ ├── __1711629399873_1711629399873_fc678ec8786a449ca2f0f27fd2c901b2 │ │ │ ├── __1711629399881_1711629399881_ab6b910ddf4940cf9c79f7d05f2d0fb7 │ │ │ ├── __1711629399882_1711629399882_3f3793c8376844dcba5732e1e5386b3e │ │ │ ├── __1711629399979_1711629399979_b0b5ab2b587b4e73bfc56ed48212581e │ │ │ └── __1711629400029_1711629400029_bc3452ef14e8431cb2de854d0e9284b4 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1711629399907_1711629399907_daadfc03677a458985e5c1eca989f6b8_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1711629399907_1711629399907_daadfc03677a458985e5c1eca989f6b8_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1711629399882_1711629399882_a026a7da73834b509990ea43b0c4252b │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1711629399980_1711629399980_e5e8918dc02a496992714f484e21f51e_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1711629399980_1711629399980_e5e8918dc02a496992714f484e21f51e_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1711629399884_1711629399884_50c50918040645c98eca9a034dc2ea1c │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1711629400022_1711629400022_0cec71789a094926a588505317fb59d5_21.con │ │ │ ├── __fragments │ │ │ │ └── __1711629400022_1711629400022_26e62ad9f50c4748a7db0cb76f6022fd_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1711629399885_1711629399885_005f7bbfbc914d6aa54efc52bb536d92 │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1711629400001_1711629400001_345c67e6bb844957abda192f424713aa_21.con │ │ │ ├── __fragments │ │ │ │ └── __1711629400001_1711629400001_967ea18a42504910abcd92d72b589457_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1711629399886_1711629399886_3c77cc2b98b84c72a6e772ddd9ed5343 │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1711629399887_1711629399887_5b76c4d787c942718cdef977ecc39eb2 │ ├── 0.10.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1727090162505_1727090162505_5c5acae10632dcc547d9d770915b7923_2 │ │ │ │ ├── __1727090162518_1727090162518_26658cce9b2f2ab6667fedb97a702c53_2 │ │ │ │ └── __1727090162571_1727090162571_1496b246f2df792fcf5befb9ee1e081f_2 │ │ │ ├── __meta │ │ │ │ ├── __1727090162496_1727090162496_0000000344424a97b25be31ad61d32aa │ │ │ │ ├── __1727090162497_1727090162497_7f494ff31b6a5298e9abe70725b3862f │ │ │ │ ├── __1727090162560_1727090162560_0cc1a61853f586aa6978285f090b18cf │ │ │ │ └── __1727090162562_1727090162562_5d3c16bf96b22ab5c21cb509d496b274 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090162496_1727090162496_5b2a4a959de9e3aa9cdf8e202f856d66_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090162496_1727090162496_2c55e311a226625e0bdb72b25acfd374_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090162502_1727090162502_739a869169ca6c65d65c07e601312c82 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090162496_1727090162496_55b25957387f995da838207f1a5d566a_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090162496_1727090162496_70fa5e5d777768cac904848ebfb50904_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090162503_1727090162503_694cd7ea0d2b46b23025dfae36cc4b00 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1727090162504_1727090162504_0d05652462bf8eb894c9e282277ddbbe │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1727090162601_1727090162601_722afa3e2f0b8a6c93db5ae76a200624_2 │ │ │ │ ├── __1727090162613_1727090162613_5e7b93987409a6a767b23c397771a892_2 │ │ │ │ └── __1727090162673_1727090162673_7f29eeceb6ae656581483ef74798bded_2 │ │ │ ├── __meta │ │ │ │ ├── __1727090162595_1727090162595_384b095c834857ff63a948f4a9d64aed │ │ │ │ ├── __1727090162596_1727090162596_751b85ef2b337dd301d7c9c5eae6a813 │ │ │ │ ├── __1727090162662_1727090162662_1a40f58eecbb627d52dcfd9b973cb6fb │ │ │ │ └── __1727090162664_1727090162664_4b99a59f0751d91b7f1a17bd3baa4574 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090162595_1727090162595_157865214d51612e8cc27e05aeba72f0_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090162595_1727090162595_63413af22ee90e4b06d87d9794e26a9e_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090162598_1727090162598_7ef3de9dcc3d8a7e7bf25ec0843211e7 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090162595_1727090162595_53eae4adfdd91fb7f9cc6e3226309be4_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090162595_1727090162595_61af0a55d1a4697b5712dfbc5f4c273b_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090162599_1727090162599_4b41a96b8d5e82f599528c9e22411404 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1727090162600_1727090162600_38027d43eff4387bd209cd362ce05937 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1727090162708_1727090162708_19b25b613f22a4e21755ad0de5e96891_2 │ │ │ │ ├── __1727090162723_1727090162723_50862901bad7011e0cc62b63829d5ad3_2 │ │ │ │ └── __1727090163627_1727090163627_17f21f2135941761634bc152349bf1c4_2 │ │ │ ├── __meta │ │ │ │ ├── __1727090162700_1727090162700_75be1102bc356ba93b5cb408aeffa28e │ │ │ │ ├── __1727090162701_1727090162701_038afd699f3fb599318559f69650b290 │ │ │ │ ├── __1727090162702_1727090162702_0f787f10731b922b00672c7c7aef9db8 │ │ │ │ ├── __1727090163572_1727090163572_6eef6ea8fd2cafe3a8711024be2afd95 │ │ │ │ └── __1727090163618_1727090163618_403b478960b1574eac2ce7a6e1a4eff1 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090162699_1727090162699_039d56b137f92b838f0bfef5d39e7981_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090162699_1727090162699_039d56b137f92b838f0bfef5d39e7981_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090162703_1727090162703_10e215f4b99e8c36bd3ca87d108f9627 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090162699_1727090162699_67a162dcb85c735c655b8ec7c8c27d6e_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090162699_1727090162699_67a162dcb85c735c655b8ec7c8c27d6e_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090162704_1727090162704_3cefcc406c89b5bcc6d161a244b6b594 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090162699_1727090162699_67ef894eb2616acb5b3f5774e58dba39_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090162699_1727090162699_0f1a360006bf33871735be9000b4b0dd_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090162705_1727090162705_2992e3e5afe045b55145a38c9655b35a │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090162699_1727090162699_1d79526ba9aa33053441515c0a90c895_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090162699_1727090162699_28b4c6df1c06d1159fb8848dc3ca4625_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090162706_1727090162706_4b22d99d5414a326481e9147c04f84ec │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1727090162707_1727090162707_54a14062422796b1cced5b8b4e6cf08e │ │ ├── ivf_flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1727090163665_1727090163665_5ddd121c2ceafe15eb873efd69b61429_2 │ │ │ │ ├── __1727090163681_1727090163681_1ab00b5febc90d11221235bc9a2fd93a_2 │ │ │ │ └── __1727090163816_1727090163816_0526735294f1fb0f5899ab90ac14ab64_2 │ │ │ ├── __meta │ │ │ │ ├── __1727090163656_1727090163656_476cd8820931faa7ae1e1692edd08fd1 │ │ │ │ ├── __1727090163657_1727090163657_5af86719f08fa5b6f46dd128cd5b8d5e │ │ │ │ ├── __1727090163659_1727090163659_15bbec14d9f4211249581d87511d798e │ │ │ │ ├── __1727090163758_1727090163758_5939964838bd2df495536936ed2f99b0 │ │ │ │ └── __1727090163807_1727090163807_0bfeb7675522560b56c2b760d53cc272 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090163656_1727090163656_6ed4cbea328afc6938f704e7de669375_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090163656_1727090163656_6ed4cbea328afc6938f704e7de669375_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090163659_1727090163659_15bbec1687ada5a0b9839de47000249c │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090163656_1727090163656_4887f14122cf64522433433dfb679624_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090163656_1727090163656_4887f14122cf64522433433dfb679624_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090163661_1727090163661_148010ceb051bbc2659252d677833305 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090163656_1727090163656_5df8ecedef45f43722fb3ff8091718c1_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090163656_1727090163656_58b6a2a81932fe8b53841ccdcb4362ff_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090163662_1727090163662_44f1a190f578b5cd7ea573ee1d4a8b2b │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090163656_1727090163656_585a619eb084c9c4d7bf3a6d643d659b_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090163656_1727090163656_17ed4f2a7e01337202b3c502b12f818b_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090163663_1727090163663_11a911c6c5a859c5158b163756e6e82e │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1727090163664_1727090163664_21418cc60a71936eb327b0cbf4f5d3c8 │ │ ├── vamana_float32 │ │ │ ├── __group │ │ │ │ ├── __1727090163853_1727090163853_52c573083a37ccca9a11d4bf7bc76a59_2 │ │ │ │ ├── __1727090163870_1727090163870_2efd8ae127b74b1f385fd5a84338d126_2 │ │ │ │ └── __1727090163983_1727090163983_3c487cb5b110ce46f63414da1d58a17e_2 │ │ │ ├── __meta │ │ │ │ ├── __1727090163846_1727090163846_475eb91ba2cabe9795d58bcf01d11175 │ │ │ │ ├── __1727090163854_1727090163854_34c30f0be4dc4a6a9d09b48ae4a32511 │ │ │ │ ├── __1727090163861_1727090163861_662f2ee720685a515a7fe8aed87b7cbb │ │ │ │ ├── __1727090163913_1727090163913_7b46e5f0d11e10a30a64b02a6f777a9e │ │ │ │ └── __1727090163931_1727090163931_39b82df541446fdd50277d6761ee970c │ │ │ ├── __tiledb_group.tdb │ │ │ ├── adjacency_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090163861_1727090163861_22e67c30690b0a0bdd4aa4f554ddfa8d_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090163861_1727090163861_22e67c30690b0a0bdd4aa4f554ddfa8d_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090163849_1727090163849_46c9eb15067470285031e5c03c162124 │ │ │ ├── adjacency_row_index │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090163861_1727090163861_4f32597813af2300b67d337dbaa12aa1_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090163861_1727090163861_4f32597813af2300b67d337dbaa12aa1_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090163851_1727090163851_4c00e6fa0e16fef1dad2125a5bd87b99 │ │ │ ├── adjacency_scores │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090163861_1727090163861_712e1d3945f1f9199a8f89c3b7d8ddc3_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090163861_1727090163861_712e1d3945f1f9199a8f89c3b7d8ddc3_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090163848_1727090163848_37c7464f777ef42a262b86c7d81bb7af │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1727090163861_1727090163861_11bcd9d7e0f1584c23dd2afeec1b6462_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1727090163861_1727090163861_11bcd9d7e0f1584c23dd2afeec1b6462_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1727090163847_1727090163847_1930b9d2125b7a6176c3182a28cc0a3b │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1727090163861_1727090163861_0c4773023f87439c96a7f79d17b1697a_22.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1727090163861_1727090163861_0c4773023f87439c96a7f79d17b1697a_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1727090163846_1727090163846_475eb91dd843395559c0575e3f54376e │ │ └── vamana_uint8 │ │ │ ├── __group │ │ │ ├── __1727090164015_1727090164015_69eedfddbfbb1698431ea38cfc17d081_2 │ │ │ ├── __1727090164032_1727090164032_3f9e76987f8ae970503118392052c228_2 │ │ │ └── __1727090164144_1727090164144_35a956638c4fb5eb0f22df61bedd8391_2 │ │ │ ├── __meta │ │ │ ├── __1727090164009_1727090164009_7fded8b22ea68b940a7415e3fae3ae54 │ │ │ ├── __1727090164015_1727090164015_69eedfdf99db023a04f8616a70fc2210 │ │ │ ├── __1727090164024_1727090164024_465d5e6f4c96fcf2fee5b78b7d125b90 │ │ │ ├── __1727090164068_1727090164068_3b253a30fe96ddb7611a62852af342c9 │ │ │ └── __1727090164091_1727090164091_2214e7b7b35d281ab52cf2a5a9fd5aba │ │ │ ├── __tiledb_group.tdb │ │ │ ├── adjacency_ids │ │ │ ├── __commits │ │ │ │ └── __1727090164023_1727090164023_6eff7a21126448378c00d65f4ff4ffa8_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1727090164023_1727090164023_6eff7a21126448378c00d65f4ff4ffa8_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1727090164012_1727090164012_2b6d3cb5530c58b9d7c7f6a2075a2089 │ │ │ ├── adjacency_row_index │ │ │ ├── __commits │ │ │ │ └── __1727090164023_1727090164023_63aaf150525f81f49e3467ee62e23ef1_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1727090164023_1727090164023_63aaf150525f81f49e3467ee62e23ef1_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1727090164013_1727090164013_3902f37123c43bf77516aedd8d4a2157 │ │ │ ├── adjacency_scores │ │ │ ├── __commits │ │ │ │ └── __1727090164023_1727090164023_74884760a1028685f1b9943fdb655fdd_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1727090164023_1727090164023_74884760a1028685f1b9943fdb655fdd_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1727090164011_1727090164011_29b12d6e034483f0377809f1a9cb3d75 │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1727090164023_1727090164023_7ac1f540e95ea6fe123a503e2c07637d_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1727090164023_1727090164023_7ac1f540e95ea6fe123a503e2c07637d_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1727090164010_1727090164010_2cb0b46992662885575b4c1017865d97 │ │ │ └── shuffled_vectors │ │ │ ├── __commits │ │ │ └── __1727090164023_1727090164023_1f8cbda9912582c09ca19d5abf047c87_22.wrt │ │ │ ├── __fragments │ │ │ └── __1727090164023_1727090164023_1f8cbda9912582c09ca19d5abf047c87_22 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ └── __1727090164009_1727090164009_7fded8b47c0fb06326d43e2a74d3b01f │ ├── 0.13.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1747189594252_1747189594252_18afbbcf8d52d21d00966a08f22f95c1_2 │ │ │ │ └── __1747189594302_1747189594302_1b02cadc330215f8a3b8f9aeebf2f05d_2 │ │ │ ├── __meta │ │ │ │ ├── __1747189594231_1747189594231_00000003200d068cc7ff7acbe71e8997 │ │ │ │ ├── __1747189594295_1747189594295_382db7b4d46c95b2d06c2ad900b095be │ │ │ │ └── __1747189594297_1747189594297_3116f0f1e4d2261d7e17fbb80d964a2c │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1747189594231_1747189594231_0de18c4a2d0aea99cf1d0acaa09f7ddb_22.wrt │ │ │ │ │ └── __1747189594231_1747189594231_510edf5d339a5b9ee37f4352858fc06f_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189594231_1747189594231_0de18c4a2d0aea99cf1d0acaa09f7ddb_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189594232_1747189594232_60034af8ccdd83b9c41af95963cd9da3 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ ├── __1747189594231_1747189594231_1c3e49c103f1e4a2df454754a2e47bd2_22.wrt │ │ │ │ │ └── __1747189594231_1747189594231_510edf5aeb07b1a58e15a4a950fe9c21_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189594231_1747189594231_1c3e49c103f1e4a2df454754a2e47bd2_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189594237_1747189594237_140018d239567acbda13117594d5616b │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1747189594240_1747189594240_0f53b86b4ccbf503887adcd7b2dd7bd9 │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1747189594344_1747189594344_02082b6cfcc965d70b0ac2fa5555d3f4_2 │ │ │ │ └── __1747189594399_1747189594399_4ef11e16b82b1fa60f163fb0eb2ad2ff_2 │ │ │ ├── __meta │ │ │ │ ├── __1747189594326_1747189594326_6c4213ed6b3525ff7982f44613542665 │ │ │ │ ├── __1747189594393_1747189594393_6426d2e7b19992344c1a81e87a0effbf │ │ │ │ └── __1747189594394_1747189594394_091a194452d44c04a9b5540b534d2e85 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1747189594326_1747189594326_15977e5b12bdf8ee878820a7b7306248_22.wrt │ │ │ │ │ └── __1747189594326_1747189594326_3f5b49687347a3c54ab19c2817796828_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189594326_1747189594326_15977e5b12bdf8ee878820a7b7306248_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189594327_1747189594327_5d811ad9ec3bfaa531bbbb6897a4fa46 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ ├── __1747189594326_1747189594326_37b4ccfacb7432a2ff34744ff09f93b1_22.con │ │ │ │ │ └── __1747189594326_1747189594326_72849e5468ec6a2a99ec97ec9ff32f74_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189594326_1747189594326_72849e5468ec6a2a99ec97ec9ff32f74_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189594331_1747189594331_6404bb0b36fb84a7916a9c447de13612 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1747189594333_1747189594333_2b8e87f7189783324124eaf439edb83a │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1747189594460_1747189594460_513c334cf42a7ebc72415896da2ab455_2 │ │ │ │ └── __1747189595634_1747189595634_0cf8349e6ed6b6504f50cc61b030a389_2 │ │ │ ├── __meta │ │ │ │ ├── __1747189594426_1747189594426_5c1596dabf008e0117a95c92c37b57ab │ │ │ │ ├── __1747189595579_1747189595579_28d16100e79ad819bb3c7263c36c09f3 │ │ │ │ └── __1747189595629_1747189595629_78721b1facc0da82bc8c3dd0c515b270 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189594425_1747189594425_5784126062b2322f2d7d0772fc3cbd97_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189594425_1747189594425_5784126062b2322f2d7d0772fc3cbd97_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189594427_1747189594427_57751d50299c5b7854ee60c7e0fec2f5 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189594425_1747189594425_6266595fb39cb6f724b79dbd374116e4_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189594425_1747189594425_6266595fb39cb6f724b79dbd374116e4_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189594430_1747189594430_67d9ea8c73c396d131812da9c94bfc26 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1747189594425_1747189594425_34292b1ea48fb285fff186f1b4ff1767_22.wrt │ │ │ │ │ └── __1747189594425_1747189594425_79f2ae159c85458a23ee69db6a55dd93_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189594425_1747189594425_34292b1ea48fb285fff186f1b4ff1767_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189594432_1747189594432_5960c0d6e26e19280250b7065390ef25 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ ├── __1747189594425_1747189594425_2292e1244baed7a916fed9379f1793a1_22.wrt │ │ │ │ │ └── __1747189594425_1747189594425_74548b69666f137947208848e48f0079_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189594425_1747189594425_2292e1244baed7a916fed9379f1793a1_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189594435_1747189594435_51be0e8004459fb75e4773a4ddc0dce7 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1747189594439_1747189594439_3c56bbff6effde6852cc12cf9c77987d │ │ ├── ivf_flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1747189595697_1747189595697_6de576fe6bcff247b635eacf49f777be_2 │ │ │ │ └── __1747189595829_1747189595829_38f79774e154df7b09a74412f1871e99_2 │ │ │ ├── __meta │ │ │ │ ├── __1747189595664_1747189595664_6b12557552e3f25a3da76d9f2bec9810 │ │ │ │ ├── __1747189595772_1747189595772_0b437e7a09cba9084e03d0a3b665792a │ │ │ │ └── __1747189595824_1747189595824_485ea86975f63acbcbf4ea41dae62b0a │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189595664_1747189595664_1e2755867233c244b9e06ecec019d216_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189595664_1747189595664_1e2755867233c244b9e06ecec019d216_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189595665_1747189595665_6af8d9fa522c381070da833212abe3ed │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189595664_1747189595664_36c8243819f726c17e8ad544af3ecfa3_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189595664_1747189595664_36c8243819f726c17e8ad544af3ecfa3_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189595669_1747189595669_61f3f3b4534755dc19cc3a48b3732be2 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1747189595664_1747189595664_3194dfbf549a176d21dd1c9a3898a766_22.con │ │ │ │ │ └── __1747189595664_1747189595664_75fe70e0e50b4b9eecd4175b38b95ca4_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189595664_1747189595664_75fe70e0e50b4b9eecd4175b38b95ca4_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189595671_1747189595671_787329cfc75cf89457855719703ece09 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ ├── __1747189595664_1747189595664_04da2e7bb26770e5e00154d44cd58c97_22.wrt │ │ │ │ │ └── __1747189595664_1747189595664_52977eef99151a18781ba1df146c3bca_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189595664_1747189595664_04da2e7bb26770e5e00154d44cd58c97_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189595674_1747189595674_2050ae7d81e4de62e83847e07c6ff1ec │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1747189595677_1747189595677_413f1236ab2bca73b690543fa7e4b60f │ │ ├── ivf_pq_float32 │ │ │ ├── __group │ │ │ │ ├── __1747189596187_1747189596187_7cdd033a039755098ba45b3a75ad43eb_2 │ │ │ │ ├── __1747189596204_1747189596204_2b7de4ffa79395f106f8cbcc36055533_2 │ │ │ │ └── __1747189596440_1747189596440_153ea24787b048084027eb249ccedaae_2 │ │ │ ├── __meta │ │ │ │ ├── __1747189596181_1747189596181_69ddc73ce55b11527f6b9974cec7447c │ │ │ │ ├── __1747189596188_1747189596188_7c62f26dd457f71cd65b4fa79a87cb23 │ │ │ │ ├── __1747189596196_1747189596196_3cc33d88c6f36d2f9bc3f2b1fc82c6f9 │ │ │ │ ├── __1747189596275_1747189596275_2a59d658405cbdf91371bdc9bca10c5f │ │ │ │ ├── __1747189596368_1747189596368_755a12ea77bf7a921b49d207e5fad200 │ │ │ │ └── __1747189596436_1747189596436_6f715afcc424acf7d89d52d3016a6633 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189596196_1747189596196_17bffbfab90a4269eeaa0a3ad088f00e_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189596196_1747189596196_17bffbfab90a4269eeaa0a3ad088f00e_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189596186_1747189596186_13fe8ad47c27cdc56d12cec4e2e370d0 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189596196_1747189596196_6b27a65bee445fb38e158f4fbed4e418_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189596196_1747189596196_6b27a65bee445fb38e158f4fbed4e418_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189596183_1747189596183_6636db082233d1e8ed045d192c90a2c7 │ │ │ ├── partitioned_pq_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189596196_1747189596196_4ce2cc40336f4404858009deebcd4512_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189596196_1747189596196_4ce2cc40336f4404858009deebcd4512_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189596184_1747189596184_0194697cff0b51337b634d3785434709 │ │ │ ├── pq_subspace_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189596196_1747189596196_48b5550e91694a7276b1e56d9f1eae73_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189596196_1747189596196_48b5550e91694a7276b1e56d9f1eae73_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189596185_1747189596185_450171e170891fcc9c0c953231cd165c │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1747189596196_1747189596196_68e49194e88321e780022c15fa7749ca_22.wrt │ │ │ │ │ └── __1747189596196_1747189596196_6e991c59ecfe902f02c0b9486588151c_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ ├── __1747189596196_1747189596196_68e49194e88321e780022c15fa7749ca_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ │ └── __1747189596196_1747189596196_6e991c59ecfe902f02c0b9486588151c_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189596182_1747189596182_6636db0624b74aba175cd31ee18b49b9 │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1747189596196_1747189596196_413060d3df73e5b17c2cf85934bca5f1_22.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1747189596196_1747189596196_413060d3df73e5b17c2cf85934bca5f1_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1747189596181_1747189596181_69ddc73e0fb41ed6e73164245201cc0b │ │ ├── ivf_pq_uint8 │ │ │ ├── __group │ │ │ │ ├── __1747189596477_1747189596477_530de54c6bfc83047422573507d711ac_2 │ │ │ │ ├── __1747189596494_1747189596494_0510e038533121de6dec720123849984_2 │ │ │ │ └── __1747189596743_1747189596743_20c9b090f78300fd0a48ee7b0b0c94e9_2 │ │ │ ├── __meta │ │ │ │ ├── __1747189596472_1747189596472_50f03972bf66d85e92222317e98eac56 │ │ │ │ ├── __1747189596478_1747189596478_1c1a76299c16d90fdc274cf0cc226861 │ │ │ │ ├── __1747189596486_1747189596486_545bc672eb665825e3f0c384d0be7cfb │ │ │ │ ├── __1747189596574_1747189596574_38eed0f35bc69be586590ac6c3abd7dc │ │ │ │ ├── __1747189596666_1747189596666_1a27c857dc5f0dfc7b38b76553ac8afa │ │ │ │ └── __1747189596739_1747189596739_137d579fb48b9ce5d36cbec37feb391f │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189596486_1747189596486_3ff8bbeb62520b0e22d3759c75831072_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189596486_1747189596486_3ff8bbeb62520b0e22d3759c75831072_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189596476_1747189596476_39d0e16833eb05fc03c1c753160d3c88 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189596486_1747189596486_377fdc43865fb700bce42d521112d4bb_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189596486_1747189596486_377fdc43865fb700bce42d521112d4bb_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189596474_1747189596474_6bc5196a055e98dcac30538d33478f8c │ │ │ ├── partitioned_pq_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189596486_1747189596486_3ae082c11e947737294868ed2e9d857f_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189596486_1747189596486_3ae082c11e947737294868ed2e9d857f_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189596474_1747189596474_6bc5196c2ee78487fb657da329b9cf3c │ │ │ ├── pq_subspace_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189596486_1747189596486_7149fd06b185755d99b6f668a629a045_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189596486_1747189596486_7149fd06b185755d99b6f668a629a045_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189596475_1747189596475_156f0be427a69417a072a288bf2150de │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1747189596486_1747189596486_5a3edd7877244360b886d37e2b9396dc_22.wrt │ │ │ │ │ └── __1747189596486_1747189596486_5a517a17af6a9206fd89ed8ad335bda4_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ ├── __1747189596486_1747189596486_5a3edd7877244360b886d37e2b9396dc_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ │ └── __1747189596486_1747189596486_5a517a17af6a9206fd89ed8ad335bda4_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189596473_1747189596473_63037a010126542ebd53986c94dfe8a0 │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1747189596486_1747189596486_5fb0a03a5f2bd54c408644107bfaf5b9_22.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1747189596486_1747189596486_5fb0a03a5f2bd54c408644107bfaf5b9_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1747189596472_1747189596472_50f039745e40eb8c6a4bb562bf72d6e9 │ │ ├── vamana_float32 │ │ │ ├── __group │ │ │ │ ├── __1747189595865_1747189595865_256c1a142a5c8196c09876d87b34014f_2 │ │ │ │ ├── __1747189595884_1747189595884_0076c55d1d6303715c43ba714760eeb0_2 │ │ │ │ └── __1747189595993_1747189595993_64ea19dfccfc50b351d1c742ae603bff_2 │ │ │ ├── __meta │ │ │ │ ├── __1747189595860_1747189595860_4aa1af9057d058f4d98631144785e5b2 │ │ │ │ ├── __1747189595866_1747189595866_12bff0998cbcb22adf08646403995136 │ │ │ │ ├── __1747189595873_1747189595873_61f2f2ed34e4940819230f65131b22d6 │ │ │ │ ├── __1747189595928_1747189595928_76d3018946fa8e49ed53af0b9efb1d9f │ │ │ │ └── __1747189595945_1747189595945_2c5df64ac969128404063af5cbfebe5a │ │ │ ├── __tiledb_group.tdb │ │ │ ├── adjacency_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189595873_1747189595873_5d8850fba04b68ab39061e5afdcb461e_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189595873_1747189595873_5d8850fba04b68ab39061e5afdcb461e_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189595863_1747189595863_53e0ec82238491d5e2152db34ea7c518 │ │ │ ├── adjacency_row_index │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189595873_1747189595873_349d508e3307ddeb214a859e2d494d0d_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189595873_1747189595873_349d508e3307ddeb214a859e2d494d0d_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189595864_1747189595864_40cb047380c0456899f9391e118a1e16 │ │ │ ├── adjacency_scores │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189595873_1747189595873_74a60ba54173b22063bb8595a918ea78_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189595873_1747189595873_74a60ba54173b22063bb8595a918ea78_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189595862_1747189595862_6da6b4c69aad68cf0697810b46b33682 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1747189595873_1747189595873_271bda9cd472bd6c4acdb6400f83a0ae_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1747189595873_1747189595873_271bda9cd472bd6c4acdb6400f83a0ae_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1747189595862_1747189595862_6da6b4c464328c4cecd3957e4c471814 │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1747189595873_1747189595873_25a0ceaacc3187812ec973dccce4f1fb_22.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1747189595873_1747189595873_25a0ceaacc3187812ec973dccce4f1fb_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1747189595860_1747189595860_4aa1af92129d041386fde5209ef13677 │ │ └── vamana_uint8 │ │ │ ├── __group │ │ │ ├── __1747189596024_1747189596024_4b53c098f8ad74f52c977bf5c9d7b9f9_2 │ │ │ ├── __1747189596041_1747189596041_2b2e97fc85ea6bc4057fc4df1639110f_2 │ │ │ └── __1747189596154_1747189596154_07c27518604f2f106f8f752fcd9aecda_2 │ │ │ ├── __meta │ │ │ ├── __1747189596019_1747189596019_00d6c3d8476263a72f490e5f4f314aaf │ │ │ ├── __1747189596025_1747189596025_0b64a4e7b8439af0671d961dd1f8ed2c │ │ │ ├── __1747189596033_1747189596033_6dc2af45931f0f4176c3f29b7dc8f816 │ │ │ ├── __1747189596083_1747189596083_605dcfd45de84d4e282fdc2aedb54013 │ │ │ └── __1747189596101_1747189596101_0ba1ae46494f3fff8b90078e1ddb977d │ │ │ ├── __tiledb_group.tdb │ │ │ ├── adjacency_ids │ │ │ ├── __commits │ │ │ │ └── __1747189596032_1747189596032_7dbda68a5ca525ae6a0600a31cf10369_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1747189596032_1747189596032_7dbda68a5ca525ae6a0600a31cf10369_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1747189596022_1747189596022_515864a3b2bad9667c0e5b0d4038bff7 │ │ │ ├── adjacency_row_index │ │ │ ├── __commits │ │ │ │ └── __1747189596032_1747189596032_18df066b07bfc89a4b33a2a86cd7534f_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1747189596032_1747189596032_18df066b07bfc89a4b33a2a86cd7534f_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1747189596023_1747189596023_3693839ce373739002a753a19c66c099 │ │ │ ├── adjacency_scores │ │ │ ├── __commits │ │ │ │ └── __1747189596032_1747189596032_564b24f79b4fadc6d40d7b6a58a4cdce_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1747189596032_1747189596032_564b24f79b4fadc6d40d7b6a58a4cdce_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1747189596021_1747189596021_7f9e84436c586d4fd6119c46db1efb5f │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1747189596032_1747189596032_2e1837b0fb694172dbba0fa168ec58d3_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1747189596032_1747189596032_2e1837b0fb694172dbba0fa168ec58d3_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1747189596020_1747189596020_5be88206bf6ba3bbd022d4896c9680bc │ │ │ └── shuffled_vectors │ │ │ ├── __commits │ │ │ └── __1747189596032_1747189596032_2247c84e2c7a976d97c6cb3619b15a8b_22.wrt │ │ │ ├── __fragments │ │ │ └── __1747189596032_1747189596032_2247c84e2c7a976d97c6cb3619b15a8b_22 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ └── __1747189596019_1747189596019_00d6c3da6744551ecf93d265bccbcffa │ ├── 0.15.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1760962745991_1760962745991_331a38695e18549fd4e00634692c1e4a_2 │ │ │ │ └── __1760962746044_1760962746044_31935c2d3da65425442f0e9e9dc7f186_2 │ │ │ ├── __meta │ │ │ │ ├── __1760962745973_1760962745973_00000003702283def1429283cc422cae │ │ │ │ ├── __1760962746036_1760962746036_2ba8ff52805d8b6e1ee07191484bbc6c │ │ │ │ └── __1760962746037_1760962746037_486d729409d52ea99c0eef8dffbd983a │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1760962745973_1760962745973_5601b6ea01e3f30ae98d9b89b55a5c54_22.con │ │ │ │ │ └── __1760962745973_1760962745973_6622515603f18b8518c582ec3024c5e9_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962745973_1760962745973_6622515603f18b8518c582ec3024c5e9_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962745975_1760962745975_01fec81138bc5814e57b555e20e03dad │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ ├── __1760962745973_1760962745973_1b1c2c97b7734f2c1aeed08d900b1f92_22.con │ │ │ │ │ └── __1760962745973_1760962745973_24f4340b12d09f01372bd2411d189b9a_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962745973_1760962745973_24f4340b12d09f01372bd2411d189b9a_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962745976_1760962745976_63da749b6f8819bae9f248b7b2e9e20c │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1760962745978_1760962745978_6a1b96668d00e4561baa143368dffef8 │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1760962746091_1760962746091_5136ee1ca298169d5e4d67ebc136d674_2 │ │ │ │ └── __1760962746140_1760962746140_04594ba3de37405cb4b497764ea64173_2 │ │ │ ├── __meta │ │ │ │ ├── __1760962746074_1760962746074_2b832c861276a51c0042335cdc4d97cc │ │ │ │ ├── __1760962746132_1760962746132_123f0211192722b28dd127d9fe9ad83f │ │ │ │ └── __1760962746134_1760962746134_59423006dc9f855ac8f857caf7e7391d │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1760962746074_1760962746074_034203dbbabe203d265a9e43388ca774_22.con │ │ │ │ │ └── __1760962746074_1760962746074_3ce2576a6925a2e958f1d6649b3b958c_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962746074_1760962746074_3ce2576a6925a2e958f1d6649b3b958c_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962746075_1760962746075_539bb0c1f3be91d5844e214d03016298 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ ├── __1760962746074_1760962746074_38f2bcac2a9022ea80371a284da21dfe_22.con │ │ │ │ │ └── __1760962746074_1760962746074_3cd33ecdbdc98bc6d01ffeac96a188de_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962746074_1760962746074_3cd33ecdbdc98bc6d01ffeac96a188de_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962746077_1760962746077_6d2eab408c9c6e7206707678d69d9d45 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1760962746079_1760962746079_76e8493012fb12006d7df1e6f3d3d8c1 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1760962746195_1760962746195_2ccdd9b18651d32f41fc6110660e74b6_2 │ │ │ │ └── __1760962747536_1760962747536_1527bc689c48638cd2a717e5d9eb1ab7_2 │ │ │ ├── __meta │ │ │ │ ├── __1760962746164_1760962746164_71baaa4e3d8b0b1431ed93dda36f630d │ │ │ │ ├── __1760962747478_1760962747478_2656247df8f39d6147b6c9eda9ce723e │ │ │ │ └── __1760962747530_1760962747530_6835ebe097a525901ccb5fe6ffdce038 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962746163_1760962746163_5fdda09012f6d86f3f97a905c50c190b_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962746163_1760962746163_5fdda09012f6d86f3f97a905c50c190b_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962746165_1760962746165_47d8c2f04fa410e95b0bb447a9b92a13 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962746163_1760962746163_20fdbf11e3b4b05ff786e530a5cb7334_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962746163_1760962746163_20fdbf11e3b4b05ff786e530a5cb7334_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962746167_1760962746167_66836f57edcf4b77f955c541a0e1c137 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1760962746163_1760962746163_0309f1fc1930f9d591d4dadaae4b235e_22.wrt │ │ │ │ │ └── __1760962746163_1760962746163_541e1c23f580d7ae614d32d2c0f67405_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962746163_1760962746163_0309f1fc1930f9d591d4dadaae4b235e_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962746171_1760962746171_39e3e2bdba88aa60c4dff9c9181fddb6 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ ├── __1760962746163_1760962746163_0648e8b28a576a39131f2ec2541faf5e_22.wrt │ │ │ │ │ └── __1760962746163_1760962746163_569b89fbf22a80e5f0378eebd59b6fb8_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962746163_1760962746163_0648e8b28a576a39131f2ec2541faf5e_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962746173_1760962746173_2997c5b57660e09468f84e1cb1071b2c │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1760962746175_1760962746175_7fdf00ce8b6bb5ba47dc1883f8436cc4 │ │ ├── ivf_flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1760962747594_1760962747594_73b5659f45dd0038ae9a9cb005372384_2 │ │ │ │ └── __1760962747728_1760962747728_1770f0790dbbc6a51f0b93d8c5a2e8cd_2 │ │ │ ├── __meta │ │ │ │ ├── __1760962747564_1760962747564_6a5cef20090e1d613a8b3299494ac874 │ │ │ │ ├── __1760962747669_1760962747669_507ab8bd6f606bb38b91e2159e23a24b │ │ │ │ └── __1760962747722_1760962747722_4c2b3bc314ab478243211002bbb0878b │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962747564_1760962747564_4d77427226fef894991426741822b152_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962747564_1760962747564_4d77427226fef894991426741822b152_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962747566_1760962747566_06ec5e904922c812209107122e1f8e4b │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962747564_1760962747564_69d020836b3a5065cfe9b15fd58494e0_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962747564_1760962747564_69d020836b3a5065cfe9b15fd58494e0_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962747567_1760962747567_03e5569ce25b4d5d8f36e75abc9a88ce │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1760962747564_1760962747564_6be2b8322864351570a0800c1a5608c0_22.con │ │ │ │ │ └── __1760962747564_1760962747564_7b8ca7131c133699a172cd89fc9c79b9_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962747564_1760962747564_7b8ca7131c133699a172cd89fc9c79b9_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962747569_1760962747569_170d884f52d1876d8550dfa86c547663 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ ├── __1760962747564_1760962747564_2f2465addbfb013e452a14d374683668_22.con │ │ │ │ │ └── __1760962747564_1760962747564_4e956e49deb1c5fec179d1837ee79be7_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962747564_1760962747564_4e956e49deb1c5fec179d1837ee79be7_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962747571_1760962747571_003cc79c3739db77f228b04533fc2add │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1760962747574_1760962747574_2484bfc4d282367a2abe48e8ba30f909 │ │ ├── ivf_pq_float32 │ │ │ ├── __group │ │ │ │ ├── __1760962748104_1760962748104_6adae97fbef31517b4313b628a48bf10_2 │ │ │ │ ├── __1760962748126_1760962748126_5bb5c4f81405d48b55f38a1d7cbe919a_2 │ │ │ │ └── __1760962748369_1760962748369_69ec198a88a4cebaabb11037915efa67_2 │ │ │ ├── __meta │ │ │ │ ├── __1760962748096_1760962748096_70a2d6955885327b89fa111eda6ff456 │ │ │ │ ├── __1760962748106_1760962748106_1077eb2b8adbd5a4f8bcfb1163c79092 │ │ │ │ ├── __1760962748115_1760962748115_4d254c0c7ba13e77a1685542a4070edf │ │ │ │ ├── __1760962748201_1760962748201_66a82d280ccb2262c570d27f41a7a40c │ │ │ │ ├── __1760962748297_1760962748297_7f20f53c4e63df4d3c79beb67776fc07 │ │ │ │ └── __1760962748365_1760962748365_7a19aaa2dff80cc7ba58a314a3dfe666 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962748115_1760962748115_0af81fbf1b9e4764c60b248db62dc05f_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962748115_1760962748115_0af81fbf1b9e4764c60b248db62dc05f_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962748103_1760962748103_7d75ea87b1dbd836d6d8abe285c97427 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962748115_1760962748115_692f3a28a20b708b69a0994bfa39889f_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962748115_1760962748115_692f3a28a20b708b69a0994bfa39889f_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962748099_1760962748099_189dc7e932ba4d8a027f9620b32ea600 │ │ │ ├── partitioned_pq_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962748115_1760962748115_481d03e1f335802b4f005d107373ede3_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962748115_1760962748115_481d03e1f335802b4f005d107373ede3_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962748100_1760962748100_45d30bbaf4efe0c1c8d0e0a2de733d9e │ │ │ ├── pq_subspace_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962748115_1760962748115_0867cb02e6877218641a55aceb9a44d8_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962748115_1760962748115_0867cb02e6877218641a55aceb9a44d8_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962748102_1760962748102_25acbb991716637f873340b450a21377 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1760962748115_1760962748115_3039bef1a8f70c7292b17b59e78605a7_22.wrt │ │ │ │ │ └── __1760962748115_1760962748115_70c5be4efd0b9453b26e466bed43d260_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ ├── __1760962748115_1760962748115_3039bef1a8f70c7292b17b59e78605a7_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ │ └── __1760962748115_1760962748115_70c5be4efd0b9453b26e466bed43d260_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962748097_1760962748097_319cd27a8efe172514beac65d8a2ce9e │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1760962748115_1760962748115_1438ea14990a1d6b9bd7f5039c3aa8c2_22.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1760962748115_1760962748115_1438ea14990a1d6b9bd7f5039c3aa8c2_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1760962748096_1760962748096_70a2d697c0b603fb0eeed2b313774bd2 │ │ ├── ivf_pq_uint8 │ │ │ ├── __group │ │ │ │ ├── __1760962748410_1760962748410_170a97b9c641e1ffb7b7d04d0ba93af0_2 │ │ │ │ ├── __1760962748430_1760962748430_38900ebf700adf2dd4a71279ebd9bf6a_2 │ │ │ │ └── __1760962748720_1760962748720_0681abdffc76e4b0e8aa345cb9e363ba_2 │ │ │ ├── __meta │ │ │ │ ├── __1760962748403_1760962748403_31806b31d372eee73fdbed6a30b79061 │ │ │ │ ├── __1760962748411_1760962748411_634f5208e82ea5c6a67426a41a1f276e │ │ │ │ ├── __1760962748420_1760962748420_768abb944a1afba637fac7ac6434b004 │ │ │ │ ├── __1760962748570_1760962748570_3679a2bf62f2ae9a3c458fe305865b24 │ │ │ │ ├── __1760962748655_1760962748655_39fab0568b551dbb307212bcd3d5894c │ │ │ │ └── __1760962748717_1760962748717_5fe5c22bab1dcafa13e2fcd7411867bf │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962748420_1760962748420_575c38b53fc422194ce40a758f0ae8ac_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962748420_1760962748420_575c38b53fc422194ce40a758f0ae8ac_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962748409_1760962748409_4e0df651748c27cfc44a8da39ab7d666 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962748420_1760962748420_20b5752d8ca0160b41692ef519699319_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962748420_1760962748420_20b5752d8ca0160b41692ef519699319_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962748405_1760962748405_0845715c1c4d6fe24332d755991f360b │ │ │ ├── partitioned_pq_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962748420_1760962748420_37f809a14fefb1b4996e2a8e94b523eb_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962748420_1760962748420_37f809a14fefb1b4996e2a8e94b523eb_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962748406_1760962748406_674ce08f616821d5202539ef8de0c9b3 │ │ │ ├── pq_subspace_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962748420_1760962748420_5c2c33002b0aca5d9049685d5139d671_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962748420_1760962748420_5c2c33002b0aca5d9049685d5139d671_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962748407_1760962748407_3d009bea9af0b5906cf425fc149f130b │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1760962748420_1760962748420_479460634f833a96fda5c9b24fd5f1c4_22.wrt │ │ │ │ │ └── __1760962748420_1760962748420_52c9e1ae9666825428cd0031e7998c31_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ ├── __1760962748420_1760962748420_479460634f833a96fda5c9b24fd5f1c4_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ │ └── __1760962748420_1760962748420_52c9e1ae9666825428cd0031e7998c31_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962748404_1760962748404_137a1bebc3f24d933aa1a5dd0b67febc │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1760962748420_1760962748420_30f414b561c2fb684b7baecabc32a07e_22.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1760962748420_1760962748420_30f414b561c2fb684b7baecabc32a07e_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1760962748403_1760962748403_31806b338ffd04fe258ce9391b2f6151 │ │ ├── vamana_float32 │ │ │ ├── __group │ │ │ │ ├── __1760962747770_1760962747770_627e289b15cb64f4deaedb11d0bc35f8_2 │ │ │ │ ├── __1760962747792_1760962747792_742f10b0eef3a3519ef8024edb0dab30_2 │ │ │ │ └── __1760962747911_1760962747911_3c97468d506e0b58e48600934ed06a59_2 │ │ │ ├── __meta │ │ │ │ ├── __1760962747763_1760962747763_245ef8853a6f37c5303866c5697d142a │ │ │ │ ├── __1760962747772_1760962747772_587ad49afd937677b3782b7349f4245b │ │ │ │ ├── __1760962747780_1760962747780_20e4365c07aacfa92bc1425641519edb │ │ │ │ ├── __1760962747838_1760962747838_09658fa0785c538c8a6580c2211a27c3 │ │ │ │ └── __1760962747855_1760962747855_1f813fa6c1726c1d8719435b77e84ad4 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── adjacency_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962747779_1760962747779_0387bb54cff27e54da30e420b8001361_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962747779_1760962747779_0387bb54cff27e54da30e420b8001361_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962747767_1760962747767_507f9617c0755d7711dc1b7a79aa6a08 │ │ │ ├── adjacency_row_index │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962747779_1760962747779_6f809fbd1da59f24f48159fe981ffd0e_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962747779_1760962747779_6f809fbd1da59f24f48159fe981ffd0e_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962747768_1760962747768_407fd93acb9563475fda2ffd1c1b847f │ │ │ ├── adjacency_scores │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962747779_1760962747779_0bc2842f925f56800035a71a54052831_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962747779_1760962747779_0bc2842f925f56800035a71a54052831_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962747766_1760962747766_6174eeb55b7b3beaeeadb1cbef0deb93 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1760962747779_1760962747779_213abb2ea5210c02c6bb25590e33e4cb_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1760962747779_1760962747779_213abb2ea5210c02c6bb25590e33e4cb_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1760962747764_1760962747764_5d61908f83898841b5fa231d7a2494c7 │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1760962747779_1760962747779_2f342ed6d3567f8550ffd40d4383a486_22.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1760962747779_1760962747779_2f342ed6d3567f8550ffd40d4383a486_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1760962747763_1760962747763_245ef88700b6c6371215d845c3eba5d9 │ │ └── vamana_uint8 │ │ │ ├── __group │ │ │ ├── __1760962747942_1760962747942_586be403bbecd2a1ff31d94893608afe_2 │ │ │ ├── __1760962747961_1760962747961_476229af59460d98e8848885d3b71eeb_2 │ │ │ └── __1760962748070_1760962748070_2c55db089ac85d36f4b18e7191779af7_2 │ │ │ ├── __meta │ │ │ ├── __1760962747936_1760962747936_41549d8656d001206e1daf1de1f29a6d │ │ │ ├── __1760962747943_1760962747943_72d1d21520fdd1199d881cfd6fb27d51 │ │ │ ├── __1760962747951_1760962747951_226c8e555e8b297b86eb163465c90566 │ │ │ ├── __1760962748002_1760962748002_5c0df85f40a0e529f7dce94268da2176 │ │ │ └── __1760962748018_1760962748018_22720319f7ca51573d8c9f025fb79b5f │ │ │ ├── __tiledb_group.tdb │ │ │ ├── adjacency_ids │ │ │ ├── __commits │ │ │ │ └── __1760962747951_1760962747951_4ff44059e47f9e2a71b193386915e846_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1760962747951_1760962747951_4ff44059e47f9e2a71b193386915e846_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1760962747939_1760962747939_08e5ee35b2bcf72ca4d6c149adc9c9f6 │ │ │ ├── adjacency_row_index │ │ │ ├── __commits │ │ │ │ └── __1760962747951_1760962747951_5a3d553584536a5a91968214f06818b6_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1760962747951_1760962747951_5a3d553584536a5a91968214f06818b6_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1760962747940_1760962747940_210fca0eabb49c0a3214f765a1644cb2 │ │ │ ├── adjacency_scores │ │ │ ├── __commits │ │ │ │ └── __1760962747951_1760962747951_06385f66ff3a20b113d23f239ceafb1f_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1760962747951_1760962747951_06385f66ff3a20b113d23f239ceafb1f_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1760962747938_1760962747938_38e935475d6344c0cee57e6dac5bc523 │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1760962747951_1760962747951_0aab1975dd39bace468fb76cb386085c_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1760962747951_1760962747951_0aab1975dd39bace468fb76cb386085c_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1760962747937_1760962747937_2653ebb7f54d5ee3eaad237b019f169e │ │ │ └── shuffled_vectors │ │ │ ├── __commits │ │ │ └── __1760962747951_1760962747951_5ee8ac6be35485f85704084e6da06fc0_22.wrt │ │ │ ├── __fragments │ │ │ └── __1760962747951_1760962747951_5ee8ac6be35485f85704084e6da06fc0_22 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ └── __1760962747936_1760962747936_41549d88f34e4bd7045254251f26a1cf │ ├── 0.16.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1765403507020_1765403507020_42aa10484c50ac8e11d70fc5b0b1e9e5_2 │ │ │ │ └── __1765403507096_1765403507096_24b8a5aa8aa182328aef31e7506337a8_2 │ │ │ ├── __meta │ │ │ │ ├── __1765403507010_1765403507010_170285459864d01f51bcd384fed5fd4b │ │ │ │ ├── __1765403507092_1765403507092_1047a0a14749d122031992c0d328a052 │ │ │ │ └── __1765403507093_1765403507093_75c9e8dd0ef9050a0e7546e3f376764c │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1765403507009_1765403507009_1f6b8e9be7cb70f89e3dcd88d234365c_22.wrt │ │ │ │ │ └── __1765403507009_1765403507009_209bc1e8010f804cad9e3645ca7eea0c_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403507009_1765403507009_1f6b8e9be7cb70f89e3dcd88d234365c_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403507010_1765403507010_74632d1597059fbc88a7c1d12c97e516 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ ├── __1765403507009_1765403507009_209bc1e516cf793f62961f8c11630cb2_22.con │ │ │ │ │ └── __1765403507009_1765403507009_52d982c25003650bb76a21d84afbe866_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403507009_1765403507009_52d982c25003650bb76a21d84afbe866_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403507011_1765403507011_666fecb8baaab0a45a02d822206760d9 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1765403507012_1765403507012_5a6c27d47059f607712c970de254c956 │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1765403507123_1765403507123_0a0073c725b268759992813a18eaac44_2 │ │ │ │ └── __1765403507157_1765403507157_4976a614a094de6e3fd090a8afa9255b_2 │ │ │ ├── __meta │ │ │ │ ├── __1765403507112_1765403507112_03658904a412ecaed743710282ea23bc │ │ │ │ ├── __1765403507153_1765403507153_37e99f9a172369bb2fa5af23f5d6810a │ │ │ │ └── __1765403507154_1765403507154_4422cc06a73470eebe5bc34fa238ca6c │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1765403507112_1765403507112_26517ff1f58502d796509e6289045c1d_22.wrt │ │ │ │ │ └── __1765403507112_1765403507112_306ee5cddd4d03263cb8254fabc14f00_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403507112_1765403507112_26517ff1f58502d796509e6289045c1d_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403507113_1765403507113_014e25733c60fc272ec41ff41a9549ed │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ ├── __1765403507112_1765403507112_306ee5cae2e65f397b20ed28c3775302_22.con │ │ │ │ │ └── __1765403507112_1765403507112_51ad0a7bedda71bafa189b239a4c6207_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403507112_1765403507112_51ad0a7bedda71bafa189b239a4c6207_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403507114_1765403507114_48a40f3b1ee5f163a07cf413484e6c6b │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1765403507114_1765403507114_7cc7431218fba5a1a1641b2861217d1a │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1765403507196_1765403507196_0fe96aa8e25da9fb0ba955b1829016f2_2 │ │ │ │ └── __1765403508355_1765403508355_5d51296d81b2af3429dff52de2103ac1_2 │ │ │ ├── __meta │ │ │ │ ├── __1765403507177_1765403507177_1aaa5d4019164863c2c37492eedf10a2 │ │ │ │ ├── __1765403508316_1765403508316_77b02e888fa18cf2a4d707bc6f61dc97 │ │ │ │ └── __1765403508351_1765403508351_4c184360fe145b8062a68fbb2ac8e9b2 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403507177_1765403507177_172e30e87a8c05dfb08f0d6c6d67ce8d_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403507177_1765403507177_172e30e87a8c05dfb08f0d6c6d67ce8d_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403507178_1765403507178_77f39b98e5e4852573b6d8909c7ef39e │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403507177_1765403507177_188ec07af54c9c6717e18204d5423345_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403507177_1765403507177_188ec07af54c9c6717e18204d5423345_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403507179_1765403507179_051991d82ede65870dcd23fcc8e3aa86 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1765403507177_1765403507177_51e131fa6ea915dc797dbc7cb9e0a2bf_22.con │ │ │ │ │ └── __1765403507177_1765403507177_7c2b7992939dba22243baed785926f41_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403507177_1765403507177_7c2b7992939dba22243baed785926f41_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403507180_1765403507180_3a3317425108544bd7843248953b0851 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ ├── __1765403507177_1765403507177_46ddc810a2d346f67557cd8a2922b5e6_22.con │ │ │ │ │ └── __1765403507177_1765403507177_7e5686c44c7684808e6bfa43030c1d61_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403507177_1765403507177_7e5686c44c7684808e6bfa43030c1d61_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403507181_1765403507181_4cf66b6e8f90817b7df4241a1e0baaf2 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1765403507183_1765403507183_19742f5369afdd55c66fa63bfd331753 │ │ ├── ivf_flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1765403508396_1765403508396_38dfd9bc0e707e200327ce834989d144_2 │ │ │ │ └── __1765403508505_1765403508505_7c317f14e7dbe662119bab2924b730d4_2 │ │ │ ├── __meta │ │ │ │ ├── __1765403508379_1765403508379_40801fbf011abd967b20df8d6927ce1a │ │ │ │ ├── __1765403508464_1765403508464_099e5775b6b1ab3293828cf226ed82f1 │ │ │ │ └── __1765403508502_1765403508502_3a3cfdb8b0a00b60f42fc46928a004c5 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403508379_1765403508379_34a48660c3f772166eac0cf96cbda6d8_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403508379_1765403508379_34a48660c3f772166eac0cf96cbda6d8_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508380_1765403508380_2b048d40ce6f9e4103cc98364000168d │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403508379_1765403508379_099e5778bbe5a46327e9bae581690e50_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403508379_1765403508379_099e5778bbe5a46327e9bae581690e50_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508381_1765403508381_196790224575209526e910a182c80c0c │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1765403508379_1765403508379_0b19be07fb9e197a425b23faabf7d88a_22.con │ │ │ │ │ └── __1765403508379_1765403508379_142415cc71416f765a2b9995ea40347c_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403508379_1765403508379_142415cc71416f765a2b9995ea40347c_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508382_1765403508382_0ce91098e7218de9584ef2c756ed7597 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ ├── __1765403508379_1765403508379_349a3269da5a51d06ebbd82e5c58b0e4_22.wrt │ │ │ │ │ └── __1765403508379_1765403508379_368223ba20257aef7bc92f5fe0b54bbe_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403508379_1765403508379_349a3269da5a51d06ebbd82e5c58b0e4_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508383_1765403508383_76cacf6ae928313fee04c1c934610d5f │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1765403508385_1765403508385_76cacf6cb2d4322a513b077b2d559343 │ │ ├── ivf_pq_float32 │ │ │ ├── __group │ │ │ │ ├── __1765403508777_1765403508777_12bbb62fc3c59fc38334e6e5e3de7328_2 │ │ │ │ ├── __1765403508786_1765403508786_665ca76b5dfa1d5596836ef558d1ea03_2 │ │ │ │ └── __1765403508985_1765403508985_6262904f16b3aba3d559e5a554af1ee9_2 │ │ │ ├── __meta │ │ │ │ ├── __1765403508774_1765403508774_6786449be60d34c85f95f7ce7ec55883 │ │ │ │ ├── __1765403508777_1765403508777_12bbb631d846b7724ad6b56df39a2284 │ │ │ │ ├── __1765403508782_1765403508782_5993567f1f3f3022cdcff50f8d0af501 │ │ │ │ ├── __1765403508849_1765403508849_02f3774b6243b0f8f23ea270dee1e45c │ │ │ │ ├── __1765403508932_1765403508932_65d7ad79c8cda6ea527f8d4f68e84e03 │ │ │ │ └── __1765403508982_1765403508982_3faca5fc79dee2c20aabca0830d3783e │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403508782_1765403508782_2c784953c5c9ac0d54bd275a9d7028c9_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403508782_1765403508782_2c784953c5c9ac0d54bd275a9d7028c9_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508776_1765403508776_72fae5cdf11127eecdd253d3d7b7e152 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403508782_1765403508782_569b43d034e0316c3e592c7baf7ca304_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403508782_1765403508782_569b43d034e0316c3e592c7baf7ca304_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508775_1765403508775_4f8ea7c256989ea1ada04f713964924f │ │ │ ├── partitioned_pq_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403508782_1765403508782_55a8d92ae075808472d071aebfbca6d0_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403508782_1765403508782_55a8d92ae075808472d071aebfbca6d0_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508775_1765403508775_4f8ea7c4258aad2d1346192e2fa4d4a8 │ │ │ ├── pq_subspace_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403508782_1765403508782_345c744d172707ebcdcb2a57e069f05c_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403508782_1765403508782_345c744d172707ebcdcb2a57e069f05c_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508776_1765403508776_72fae5cb7d1a3d22c331825a0e4aaa38 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1765403508782_1765403508782_25b1793b032ad51eff59f8f3ee1c899f_22.wrt │ │ │ │ │ └── __1765403508782_1765403508782_721daf95b28e8c7c058cb54bf7dc4cf0_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ ├── __1765403508782_1765403508782_25b1793b032ad51eff59f8f3ee1c899f_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ │ └── __1765403508782_1765403508782_721daf95b28e8c7c058cb54bf7dc4cf0_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508774_1765403508774_6786449f29b58709335a24defe557328 │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1765403508782_1765403508782_46eacacff51007729f442cfda435989c_22.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1765403508782_1765403508782_46eacacff51007729f442cfda435989c_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1765403508774_1765403508774_6786449d99f8da82d126c9b6b414c772 │ │ ├── ivf_pq_uint8 │ │ │ ├── __group │ │ │ │ ├── __1765403509009_1765403509009_716d843fcf777a051426f0ed9673b21b_2 │ │ │ │ ├── __1765403509023_1765403509023_1915b17cad57dfa79faa420270e8fbdb_2 │ │ │ │ └── __1765403509236_1765403509236_0a34b502ce9f1894b2adf25a64740588_2 │ │ │ ├── __meta │ │ │ │ ├── __1765403509006_1765403509006_0cded2d37f1368c59700df57568416df │ │ │ │ ├── __1765403509010_1765403509010_49383648dbd48a05037d7293b66972c7 │ │ │ │ ├── __1765403509018_1765403509018_1fb36b7e0fdec28b5a7e4de38be40ab9 │ │ │ │ ├── __1765403509102_1765403509102_1c55c4ef76e7b2ee05851e88cd4330b4 │ │ │ │ ├── __1765403509179_1765403509179_43ca27576c165d157c5916ba24c4ed5c │ │ │ │ └── __1765403509233_1765403509233_595eabf216c9b88c026a5dcbaa42a3b8 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403509018_1765403509018_70114681cbf754d39f5147c6329fcf46_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403509018_1765403509018_70114681cbf754d39f5147c6329fcf46_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403509008_1765403509008_466350789449565771a03af8bf3df607 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403509018_1765403509018_04ba47b2f172aefeb9b749df16370f96_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403509018_1765403509018_04ba47b2f172aefeb9b749df16370f96_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403509007_1765403509007_31018b8e8021040837a443eb44cb9459 │ │ │ ├── partitioned_pq_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403509018_1765403509018_0a44dfd77b6be89d3f2219f42eb2144f_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403509018_1765403509018_0a44dfd77b6be89d3f2219f42eb2144f_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403509007_1765403509007_31018b90c60cc75753197195d970b94e │ │ │ ├── pq_subspace_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403509018_1765403509018_1c55c4f27df52e5429fe2513e100dc91_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403509018_1765403509018_1c55c4f27df52e5429fe2513e100dc91_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403509008_1765403509008_46635076f290718ac4f9b6205ccb9152 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ ├── __1765403509018_1765403509018_4e8aba859aa240b07eb90acb2775a54d_22.wrt │ │ │ │ │ └── __1765403509018_1765403509018_5b7b6170978e18795c333403f4928549_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ ├── __1765403509018_1765403509018_4e8aba859aa240b07eb90acb2775a54d_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ │ └── __1765403509018_1765403509018_5b7b6170978e18795c333403f4928549_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403509007_1765403509007_31018b8cf89a1c19a70160a43d92c1c3 │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1765403509018_1765403509018_46cc9c30a27a6b99c6e9d3b8f4fe352e_22.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1765403509018_1765403509018_46cc9c30a27a6b99c6e9d3b8f4fe352e_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1765403509006_1765403509006_0cded2d5e162c17c16263293cc822bbc │ │ ├── vamana_float32 │ │ │ ├── __group │ │ │ │ ├── __1765403508533_1765403508533_584b1073a8406ac0de4a2467bf77fae0_2 │ │ │ │ ├── __1765403508549_1765403508549_3299a29996180cd03ecc0ca6154db875_2 │ │ │ │ └── __1765403508641_1765403508641_60465dee2fc19820ca545d1aada0703a_2 │ │ │ ├── __meta │ │ │ │ ├── __1765403508530_1765403508530_14b9c3acbf2865ed77c032146b60be06 │ │ │ │ ├── __1765403508534_1765403508534_581627a2210dfe40ee6a2a5e7a8957bc │ │ │ │ ├── __1765403508540_1765403508540_167c31588c7cdb6e8309b898d09a9d7e │ │ │ │ ├── __1765403508581_1765403508581_662a2f8e52345d278453b31228011fec │ │ │ │ └── __1765403508596_1765403508596_0756b107f42427c976dfe08b68061487 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── adjacency_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403508540_1765403508540_7bb69ba7ed611d6e3943e0b857e773f1_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403508540_1765403508540_7bb69ba7ed611d6e3943e0b857e773f1_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508532_1765403508532_48bb907f7fc8d6c4e4b6f156be85ff8d │ │ │ ├── adjacency_row_index │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403508540_1765403508540_6cc7c7072330b5ba1e309cc3188ec3e5_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403508540_1765403508540_6cc7c7072330b5ba1e309cc3188ec3e5_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508532_1765403508532_48bb9081596b719b578c42ec723d87a2 │ │ │ ├── adjacency_scores │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403508540_1765403508540_124207fa45f0133fbb5e714cfff0ddc8_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403508540_1765403508540_124207fa45f0133fbb5e714cfff0ddc8_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508531_1765403508531_71967a447b7a8dd7ff85e1869cabea10 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1765403508540_1765403508540_46194ef72d68c6434806d656c911fbb9_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1765403508540_1765403508540_46194ef72d68c6434806d656c911fbb9_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1765403508531_1765403508531_71967a42a497b0e8ef040bc194472f91 │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1765403508540_1765403508540_0756b10a4009beb87fd3b50f92933bbd_22.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1765403508540_1765403508540_0756b10a4009beb87fd3b50f92933bbd_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1765403508530_1765403508530_14b9c3ae64e7278cf186546ae4b83a9d │ │ └── vamana_uint8 │ │ │ ├── __group │ │ │ ├── __1765403508661_1765403508661_35b50eb2964918abbf495adc25fff604_2 │ │ │ ├── __1765403508673_1765403508673_3ff1dff376e1dec2b4f6a3beffb79441_2 │ │ │ └── __1765403508759_1765403508759_76d827e4a7aa99a79d0bbcfcad7f98d6_2 │ │ │ ├── __meta │ │ │ ├── __1765403508659_1765403508659_215284b6417250186bbc72dca02c0748 │ │ │ ├── __1765403508662_1765403508662_7d6b55bd4b0d1d3b6334a9f9425c2b81 │ │ │ ├── __1765403508666_1765403508666_375d5451a27cf0fbea6fdd01a4261f2a │ │ │ ├── __1765403508698_1765403508698_3c145ba75bf812d6864a0d6fb65d857b │ │ │ └── __1765403508710_1765403508710_17f1ba0d790136f87270e3cd7122974f │ │ │ ├── __tiledb_group.tdb │ │ │ ├── adjacency_ids │ │ │ ├── __commits │ │ │ │ └── __1765403508666_1765403508666_6d87086c81da4f8cbc9d28b917be8157_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1765403508666_1765403508666_6d87086c81da4f8cbc9d28b917be8157_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1765403508660_1765403508660_70033baef02c864b6742f3a127119458 │ │ │ ├── adjacency_row_index │ │ │ ├── __commits │ │ │ │ └── __1765403508666_1765403508666_0e4ef93200be34efce6b47f9d5f3b634_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1765403508666_1765403508666_0e4ef93200be34efce6b47f9d5f3b634_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1765403508661_1765403508661_35b50eb1b743cba2ec9c8ea5c310973f │ │ │ ├── adjacency_scores │ │ │ ├── __commits │ │ │ │ └── __1765403508666_1765403508666_2bd1d2ba09ecbd49758db852fe526d9e_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1765403508666_1765403508666_2bd1d2ba09ecbd49758db852fe526d9e_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1765403508660_1765403508660_70033bacd450e40f7f57d75a9a1dd9aa │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1765403508666_1765403508666_6cf150a324db7191394f52b1297dc451_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1765403508666_1765403508666_6cf150a324db7191394f52b1297dc451_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1765403508659_1765403508659_215284bada7ff485dca53a4653169ad0 │ │ │ └── shuffled_vectors │ │ │ ├── __commits │ │ │ └── __1765403508666_1765403508666_17f1ba10857668df56eb50885b127a48_22.wrt │ │ │ ├── __fragments │ │ │ └── __1765403508666_1765403508666_17f1ba10857668df56eb50885b127a48_22 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ └── __1765403508659_1765403508659_215284b82f9c20d968fd9f41fe861a85 │ ├── 0.2.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1711644947507_1711644947507_970fff1e6e07461780b281277e260a4d_2 │ │ │ │ └── __1711644947521_1711644947521_bb30cdd3fd684f188f2f5bb102157387_2 │ │ │ ├── __meta │ │ │ │ ├── __1711644947489_1711644947489_a446cb609f454d65bbbf534f1a471009 │ │ │ │ ├── __1711644947501_1711644947501_8f05fe5ae6214416bba2c92864aaedb8 │ │ │ │ ├── __1711644947572_1711644947572_db2f9a7c0222409399b079f7d2d5d999 │ │ │ │ └── __1711644947574_1711644947574_df2db6f456ee44cab0b27f920576acc6 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1711644947566_1711644947566_da1e6e6d01b947e2935baa0005dff2bb_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711644947566_1711644947566_f8b96353e2044dd2a0f511b2bfbb011a_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711644947504_1711644947504_a6cd66a93bb841418ac82373d2454f67 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1711644947528_1711644947528_c4c3419101024ced817be32cd531c61b_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711644947528_1711644947528_206cf8d304d04df2bce18a82296ed7d8_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711644947505_1711644947505_94130980a4f448969e7b091a63f42937 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1711644947506_1711644947506_b807fef7ca104443b8357c7d27a46121 │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1711644947620_1711644947620_f57cacc6829f40ccbb6048cdfa6bbd63_2 │ │ │ │ └── __1711644947625_1711644947625_4513a7e84fab43218621351f61d37735_2 │ │ │ ├── __meta │ │ │ │ ├── __1711644947608_1711644947608_be861f2bc85848a38f6150d93e237678 │ │ │ │ ├── __1711644947615_1711644947615_01833da97d714591b667dcf8764d00da │ │ │ │ ├── __1711644947677_1711644947677_577387cf33cf48819d19e2c8ab39db01 │ │ │ │ └── __1711644947679_1711644947679_14fdb354f994433c9a4ba4b9d9186b1d │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1711644947668_1711644947668_c0c19ddea6774be284d47aa82774fbfc_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711644947668_1711644947668_527fc5c492824c4eaa655fd031f862e7_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711644947616_1711644947616_521d76c46c854422a55d04fb510c54c2 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1711644947630_1711644947630_38cb8a5af889467f9d2aa06ffe514497_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711644947630_1711644947630_bd4f55abe9014a31bdf60987e8ebca0c_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711644947617_1711644947617_f69bf7912deb4c1f8afb98b96775cd86 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1711644947618_1711644947618_8c244e2415084984aaaede573481a11a │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1711644947735_1711644947735_904a9898b47244e18f58dd919bea9e37_2 │ │ │ │ ├── __1711644947749_1711644947749_170df7850dac479eaa52c2b230c01141_2 │ │ │ │ └── __1711644948702_1711644948702_ac8fdf48091541bfa06e0a1a70f5bfcb_2 │ │ │ ├── __meta │ │ │ │ ├── __1711644947719_1711644947719_11c00585f25544798c603787358c5547 │ │ │ │ ├── __1711644947727_1711644947727_09ef07cd6c5e4f7cb1bd591f2840860b │ │ │ │ ├── __1711644947729_1711644947729_87fefcc960074e539c6e06efd3b99b8f │ │ │ │ ├── __1711644948638_1711644948638_2551434b3fbe404ea0b6bfc238b6e080 │ │ │ │ └── __1711644948691_1711644948691_ca7c0f9b126e4bea839a7c9b63ebfea8 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1711644948509_1711644948509_4676a9b098e24512a485c8d7f9b8ad07_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711644948509_1711644948509_4676a9b098e24512a485c8d7f9b8ad07_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711644947729_1711644947729_bfb855561ebe4a0eb16498fee02722ae │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1711644948640_1711644948640_1c3ccf95d8e3405091d3ca06bb830d51_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711644948640_1711644948640_1c3ccf95d8e3405091d3ca06bb830d51_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711644947730_1711644947730_a34abd0cee954714b7fef8120e349b11 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1711644948684_1711644948684_0ebdf70b44c7467c80db188bd9a1d358_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711644948684_1711644948684_99e4d454e9af4a98a8963a0307ae0c1f_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711644947731_1711644947731_102ca79ff71e4d03b8eb7ef3ccd8498b │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1711644948663_1711644948663_df4c1c5c13d1411b8789288bf684c7bf_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1711644948663_1711644948663_2d010b3b66fd41b3b610e1e16d77ad4a_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1711644947732_1711644947732_d98e1cc4179b49dc9774bc85648c7167 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1711644947734_1711644947734_aa286f8572e3430982789782536411a6 │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1711644948746_1711644948746_a9c3c28e408242aca71bab313d71b0c6_2 │ │ │ ├── __1711644948760_1711644948760_0f2260ad4cab46bd870a98cfc853fd84_2 │ │ │ └── __1711644948900_1711644948900_70fb6f9a3c47484bbf9ce8e7e67330e2_2 │ │ │ ├── __meta │ │ │ ├── __1711644948731_1711644948731_953cd21b1f0549b8ac3142f091a8f361 │ │ │ ├── __1711644948738_1711644948738_e4a2663168194118b0095d2ca822f4f4 │ │ │ ├── __1711644948740_1711644948740_a0034ad1bfd849ee8731a0f41b733a70 │ │ │ ├── __1711644948836_1711644948836_1f408214a6e448fc8752914546c6dc37 │ │ │ └── __1711644948889_1711644948889_80c80120512249f391eb74002ae5939d │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1711644948766_1711644948766_cc548066127544bcad22cf23f6c28b19_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1711644948766_1711644948766_cc548066127544bcad22cf23f6c28b19_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1711644948740_1711644948740_ab90aa5827fb4fd99899cee641876a58 │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1711644948837_1711644948837_256f669b53f4476780a62db5b00b9f44_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1711644948837_1711644948837_256f669b53f4476780a62db5b00b9f44_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1711644948741_1711644948741_ca14635056a84d428f5921bbbb050d4a │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1711644948881_1711644948881_bea64947d7e9406aa16681c7a916365d_21.con │ │ │ ├── __fragments │ │ │ │ └── __1711644948881_1711644948881_8d8966d2587041578a2c0c89730872d0_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1711644948742_1711644948742_6101a12e74f846aca98ac2dcf477f99a │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1711644948859_1711644948859_618934b1fb5d4d8e9a87fa622a3c42f5_21.con │ │ │ ├── __fragments │ │ │ │ └── __1711644948859_1711644948859_5d6b301a88b84bb1b5dc9174b6dccdb4_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1711644948743_1711644948743_e98a4c70e4d2406fa22f044b82cab512 │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1711644948744_1711644948744_9b8540adb54a4be6bc62e776a702eb33 │ ├── 0.2.2 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1712648467137_1712648467137_fc60897e24354561a7b315e8c6d6e921_2 │ │ │ │ └── __1712648467150_1712648467150_54464ff0846c4b2ea02c27da8f9f737a_2 │ │ │ ├── __meta │ │ │ │ ├── __1712648467118_1712648467118_5692a144dad04d99976bf18a31f6084c │ │ │ │ ├── __1712648467131_1712648467131_eafc90a312164abd86e4eaea2bb305f5 │ │ │ │ ├── __1712648467201_1712648467201_771aac798093425b96922b26132ed91f │ │ │ │ └── __1712648467203_1712648467203_e8d5c170061c41bbb318f854706b5fc0 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1712648467196_1712648467196_6371a253f1334c6f8a5f049352c3409f_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1712648467196_1712648467196_df438d8c0ce94e8eaa92054b6af55ab7_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1712648467133_1712648467133_9413251aa6bd4b998836d3ee15e46eab │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1712648467157_1712648467157_e6df1b5311c542a6be99ee19487149bd_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1712648467157_1712648467157_ac2781bf47504cdfa3634e11121ae224_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1712648467135_1712648467135_f0b15321b8454421a05f4a5c7e19eb8f │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1712648467136_1712648467136_b7b5c8d4730a44f596bbd245cf52f293 │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1712648467252_1712648467252_2488c747fb8f4ecbb9b42eced2d5a978_2 │ │ │ │ └── __1712648467257_1712648467257_fd64f0a653044c98b96ec304a2092b02_2 │ │ │ ├── __meta │ │ │ │ ├── __1712648467237_1712648467237_0e6043ea1c874ba28c7608d27ca7921d │ │ │ │ ├── __1712648467247_1712648467247_1cf253ed644c4b2d94c7a799df72401b │ │ │ │ ├── __1712648467313_1712648467313_87ac92350c784173940d9b808ae70587 │ │ │ │ └── __1712648467315_1712648467315_f4a68d411ed44545a61286edd4b6907d │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1712648467303_1712648467303_edb18eb72a2940018d9c69d937bbfd6a_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1712648467303_1712648467303_e4f206924ad043ff9952a1f597dd4b5b_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1712648467248_1712648467248_ffdbeb31e0a247e1ba5d1c44f9033a13 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1712648467267_1712648467267_6ac0673d9a9740859a42417e976fa792_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1712648467267_1712648467267_0e353ed2197f45ac880ffcda55f1d6c9_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1712648467250_1712648467250_97bf035b4945448584d8ed89654d0cf8 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1712648467251_1712648467251_b64a82b4558f4f359dd0f87db2ac2b97 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1712648467372_1712648467372_e8d6e4bb7abe423e965c9bb43ff51263_2 │ │ │ │ ├── __1712648467381_1712648467381_ca305be20b414b66b99140b282b233c5_2 │ │ │ │ ├── __1712648467386_1712648467386_f281cdba89954406a8925bdb4cc73434_2 │ │ │ │ └── __1712648468120_1712648468120_d4eb24087b534507a0025dd349f66bd9_2 │ │ │ ├── __meta │ │ │ │ ├── __1712648467351_1712648467351_faf014089f694d1780b25a6a2961d38a │ │ │ │ ├── __1712648467362_1712648467362_51eb7cccdc684f6481c901eccf5b7fff │ │ │ │ ├── __1712648467364_1712648467364_4e65784f9fba4e50bcacc597a8b96ff5 │ │ │ │ ├── __1712648468054_1712648468054_a4879307618c47059441152fb6b747d7 │ │ │ │ └── __1712648468107_1712648468107_b12bd85825b246e09256363ef976b880 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1712648467907_1712648467907_a8bd18c0b0734a8188b83da3af221599_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1712648467907_1712648467907_a8bd18c0b0734a8188b83da3af221599_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1712648467364_1712648467364_4a3df914a4c44580bf031f0b93a736a5 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1712648468055_1712648468055_788d29e2c21a4aa7b09e677fce46b303_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1712648468055_1712648468055_788d29e2c21a4aa7b09e677fce46b303_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1712648467366_1712648467366_b5109c533d034a6fa5a07c5322e0245b │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1712648468100_1712648468100_b44e17543d7643beb8d522c0a118919a_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1712648468100_1712648468100_544256b6ee8b4b0dbd9745b55085d62a_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1712648467367_1712648467367_69fa1b238abc401abd1660c68d37c779 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1712648468078_1712648468078_cb065239eaf3418faaef46d1327ad8e5_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1712648468078_1712648468078_b27da5d3abb142cab11cc46272049d79_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1712648467369_1712648467369_67e0d94281314090be4013307197772d │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1712648467370_1712648467370_495a87afe1aa43748887a3b9f6c452a1 │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1712648468173_1712648468173_51659d73633149079f3fbd96c4df316d_2 │ │ │ ├── __1712648468184_1712648468184_5d4adfa646a94ff28cfadc333d450f28_2 │ │ │ ├── __1712648468189_1712648468189_4ff642014003480898d660ffc0efce6f_2 │ │ │ └── __1712648468344_1712648468344_2822a6e58cdf48a787990aedac8fff4a_2 │ │ │ ├── __meta │ │ │ ├── __1712648468152_1712648468152_1fe6e47d08e740958450df4450bdb1e3 │ │ │ ├── __1712648468160_1712648468160_a77f3b61995e4b7db676bb7ca45d450f │ │ │ ├── __1712648468162_1712648468162_f09646c853b142348a212bfd0af9492b │ │ │ ├── __1712648468275_1712648468275_bf126b55d409401dad5ed3ebda3f8d3d │ │ │ └── __1712648468331_1712648468331_d83aaef71c8843e3893ac2f6cdc104b6 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1712648468197_1712648468197_551178a5422f4759ac04f20b68517188_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1712648468197_1712648468197_551178a5422f4759ac04f20b68517188_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1712648468162_1712648468162_bdcc30aef67d471cacd2334760917483 │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1712648468277_1712648468277_ce2e3793c64a405588fad4a04994e811_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1712648468277_1712648468277_ce2e3793c64a405588fad4a04994e811_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1712648468167_1712648468167_770c4421456e47059ba0b28d45c1cdf3 │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1712648468322_1712648468322_3c6da37beb92429eb4cdae73a708a36b_21.con │ │ │ ├── __fragments │ │ │ │ └── __1712648468322_1712648468322_9ac23958e24349bc9d4aa353f4ae7b96_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1712648468168_1712648468168_0d495f2286f34de99fb9b241915483df │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1712648468300_1712648468300_40b50ea9fdc44ea7abf5e6beb30ab74f_21.con │ │ │ ├── __fragments │ │ │ │ └── __1712648468300_1712648468300_3c677cb60b0a439d9f5ea85186e362f6_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1712648468170_1712648468170_3a9ca4347ac040fb95428558f0409548 │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1712648468171_1712648468171_4221248f971d41bd80f5ab43744d4deb │ ├── 0.3.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1713378258025_1713378258025_06b4c76e241803594e4f64db5840eb1e_2 │ │ │ │ └── __1713378258036_1713378258036_6504f1cd364971771a449dedd576e946_2 │ │ │ ├── __meta │ │ │ │ ├── __1713378258008_1713378258008_00000003b5b13ea975356f093b5fb13a │ │ │ │ ├── __1713378258020_1713378258020_1d13f94b7837de3f0cd3626b75fb0f30 │ │ │ │ ├── __1713378258083_1713378258083_01e3872b193a5ce960af9771df1e68a1 │ │ │ │ └── __1713378258085_1713378258085_2adfc1aee8211a820c9239a21f207820 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1713378258077_1713378258077_63b0437a542c2eba038caa6b5f93c7b5_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1713378258077_1713378258077_2becf8dff9197f46bbef627d6294acee_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1713378258022_1713378258022_6ff68774c97e299e2cd9326d1e4836b5 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1713378258042_1713378258042_7039641daf8f0ce328848c5493f1a01e_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1713378258042_1713378258042_53ef450d417aa54243e7639f4487155d_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1713378258023_1713378258023_46105171883413f0f67edc53c30f355f │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1713378258024_1713378258024_1dec42d7f8f0441fe3cf726fe4aa46ac │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1713378258129_1713378258129_3c7bc175c1b0b15b87d5b5f0a2217bb2_2 │ │ │ │ └── __1713378258134_1713378258134_2ae7b58df8d8fd50e83537fff7ab5066_2 │ │ │ ├── __meta │ │ │ │ ├── __1713378258117_1713378258117_0ef3a5c1005d6d29517c44e49d65237e │ │ │ │ ├── __1713378258124_1713378258124_0d3a08dfd6757be5f54462827a9c39df │ │ │ │ ├── __1713378258185_1713378258185_507a3cc8e36274c57dc14f90998abbe2 │ │ │ │ └── __1713378258186_1713378258186_39775f0ce3b43237e9db0ecf58a43003 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1713378258176_1713378258176_2bfd5b996d355189afc6e5d34c3289a3_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1713378258176_1713378258176_593a86746911f72e1249133dee3f6d5c_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1713378258126_1713378258126_7e80c0b039712d9c08ae985c9e8cec6b │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1713378258143_1713378258143_4a25faa8873d403cbcf805d1bbc47c9f_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1713378258143_1713378258143_598508bb0aca1b108fb5dbb4aad1c0e3_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1713378258127_1713378258127_204b96f5841d1a0a08c7fd1bfb24ceef │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1713378258128_1713378258128_4176c58a46f025247390c926a3bff6e8 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1713378258235_1713378258235_28b4bb980afcd3639c53e997aa1fd52f_2 │ │ │ │ ├── __1713378258243_1713378258243_28f8676aafd7561e81e682162fbda142_2 │ │ │ │ ├── __1713378258247_1713378258247_6623000237a16d146626ae88bb2ba934_2 │ │ │ │ └── __1713378258982_1713378258982_32c6b5646006180fd650256e00ed4b07_2 │ │ │ ├── __meta │ │ │ │ ├── __1713378258219_1713378258219_1ee32b81ebe283ebdbec6d3b9f388320 │ │ │ │ ├── __1713378258228_1713378258228_10237353ad4aae8bcee067f7a6734450 │ │ │ │ ├── __1713378258229_1713378258229_19fd327f5220092384773a1c05b9a708 │ │ │ │ ├── __1713378258923_1713378258923_3f0145b1f8cd87cc7ea164e79994db8f │ │ │ │ └── __1713378258973_1713378258973_16a9d6ad4effd6401e4d96c53f228db9 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1713378258785_1713378258785_02d1cbe6dd982a0ee7370b19c8e089b9_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1713378258785_1713378258785_02d1cbe6dd982a0ee7370b19c8e089b9_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1713378258230_1713378258230_16454db1d6129bb7950f44d5dae016cc │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1713378258925_1713378258925_1056139d1d0c0f96baa4c286e177ebfd_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1713378258925_1713378258925_1056139d1d0c0f96baa4c286e177ebfd_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1713378258231_1713378258231_0ac065b5b7717b269dec0d6c0357f1d5 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1713378258967_1713378258967_3f6d049c169b6da42ec41b3d6ad405e7_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1713378258967_1713378258967_1bcd9ac8d1368bfcc6bf052b708e4063_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1713378258232_1713378258232_2eeb1ce73776a9772d2914ee83e5578b │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1713378258947_1713378258947_35d3b240b3bd81ee094eb78613b2ad9c_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1713378258947_1713378258947_34fd5fc870f6f5401fed7a4f439d912d_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1713378258233_1713378258233_6e95f7adf09977854e4eb521059aec2b │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1713378258234_1713378258234_0416a72504044731b31af0905e760ea0 │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1713378259032_1713378259032_0bb54dc9b1f0eeab72abbf687f094ea2_2 │ │ │ ├── __1713378259040_1713378259040_462aa406d4b2435f40de10a402b90653_2 │ │ │ ├── __1713378259043_1713378259043_0e1571d7bf265c0d56e1f3a75113c33f_2 │ │ │ └── __1713378259179_1713378259179_06ea08995729e84f3201773bec391be0_2 │ │ │ ├── __meta │ │ │ ├── __1713378259013_1713378259013_3aeed8e05dc73a9f47ac62c242e5cb95 │ │ │ ├── __1713378259021_1713378259021_10b226c0b9dbb969707375291b83975f │ │ │ ├── __1713378259023_1713378259023_2c66c10261c3461558ac2c7ad4ede304 │ │ │ ├── __1713378259121_1713378259121_26dc261491646004742debc17c183694 │ │ │ └── __1713378259170_1713378259170_4afd9a4fef8d33134292672a7f65e901 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1713378259050_1713378259050_32254c15a89d62071e6493cbfcbce23e_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1713378259050_1713378259050_32254c15a89d62071e6493cbfcbce23e_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1713378259023_1713378259023_2c66c104748aa96b81da5870fa343a1a │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1713378259122_1713378259122_1ff7e69c25c477cc15ff1b0548ef21b7_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1713378259122_1713378259122_1ff7e69c25c477cc15ff1b0548ef21b7_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1713378259024_1713378259024_2afc55a55bc3890ae9ae7dc657883a53 │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1713378259163_1713378259163_5211aead7a973502e6a17a4c67fa4251_21.con │ │ │ ├── __fragments │ │ │ │ └── __1713378259163_1713378259163_7afaf0f687e8e60bb681aeeb923a2b8e_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1713378259028_1713378259028_4eabc43c2385dffc6dd84e28d046c16f │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1713378259145_1713378259145_1e3c08fcc79540294cd76e7a8df704cf_21.con │ │ │ ├── __fragments │ │ │ │ └── __1713378259145_1713378259145_189710bae77c7fe3190314ef768c117c_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1713378259029_1713378259029_54822a92e6aaf110f7bbdd31c5a2de94 │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1713378259030_1713378259030_05ef4de5508ed54ec8dfae9071b6d33e │ ├── 0.4.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1715605751076_1715605751076_3b4d6dc385997791e99cdf904229ba47_2 │ │ │ │ ├── __1715605751095_1715605751095_15568d618cb28fe89e6ef1faae3b543d_2 │ │ │ │ └── __1715605751151_1715605751151_0401bf2edb7f0281e3dfa1c91e7fb90f_2 │ │ │ ├── __meta │ │ │ │ ├── __1715605751065_1715605751065_00000003a442a2343f87db7e2d7bbff4 │ │ │ │ ├── __1715605751067_1715605751067_08393a946067b80099eeae00d239c476 │ │ │ │ ├── __1715605751142_1715605751142_502cb90730e8bd5bc7933ae51f6abbeb │ │ │ │ └── __1715605751144_1715605751144_758302e21127c4a2ed1e97f2b97bb2ff │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1715605751065_1715605751065_5fbc68c7165d616d64afe955ac5c29a6_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1715605751065_1715605751065_06d27d572293928ca35034fda5db46c1_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1715605751072_1715605751072_4029cb7e50528fcd8a20c03b50f56d8c │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1715605751065_1715605751065_4f4e316a29a979a79f56f0b2b2450b17_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1715605751065_1715605751065_32a0868624c23e1cdfadafc3e81993b6_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1715605751073_1715605751073_6cb732a83bc1c88bab4f69b57d9799cf │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1715605751075_1715605751075_0c50652c375b1ac1dfffefa3a0c8ee7e │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1715605751184_1715605751184_71d1e201dfc1bd90f8117aff1b50324c_2 │ │ │ │ ├── __1715605751196_1715605751196_39fd9e70b9057419fb9d50422e543659_2 │ │ │ │ └── __1715605751253_1715605751253_531356f91448e99a2c785f2110cf0f0b_2 │ │ │ ├── __meta │ │ │ │ ├── __1715605751178_1715605751178_5c2ea1f148a3eb7bc34520580fd6cf9e │ │ │ │ ├── __1715605751179_1715605751179_7a1eb9dbf3148531ac5a585992c2399a │ │ │ │ ├── __1715605751243_1715605751243_7ba9c4ce5e136c77e825b2210668e89d │ │ │ │ └── __1715605751245_1715605751245_25d4597ea7f9af96cc3d7e01d666bf1e │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1715605751178_1715605751178_6cd80cd3f5a979493ade3abe00c4365f_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1715605751178_1715605751178_1e32c6e84535c69e888e7c07f96f78d3_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1715605751181_1715605751181_0b9fb0eec79c227700cc3360baf4b1ba │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1715605751178_1715605751178_0262ef03f9e06244dbd8853e40fc1b5b_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1715605751178_1715605751178_18bf9c3e00455ae8040418f33a8516b3_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1715605751182_1715605751182_34a9d07a6d890b9d74d0a2bc52c74bf1 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1715605751183_1715605751183_65b13404ace90d0988e7f2e8f3cd9da3 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1715605751288_1715605751288_39f08662ad427fa84cb7e586dd3f2316_2 │ │ │ │ ├── __1715605751304_1715605751304_13bf53e5beee4ad5d8e40792b0b50e1a_2 │ │ │ │ └── __1715605752032_1715605752032_4c62f9bbb57d5722cccc96f2722bd55f_2 │ │ │ ├── __meta │ │ │ │ ├── __1715605751280_1715605751280_7eb8b29979177bbddb1d7279ff27c6a6 │ │ │ │ ├── __1715605751281_1715605751281_68a2748eb8b8e526db0b3d289e1e7002 │ │ │ │ ├── __1715605751282_1715605751282_1dedfa1d8ec475bc904dbc8871a87707 │ │ │ │ ├── __1715605751975_1715605751975_7c830c0700d00e5a9e69ff61a35a4f83 │ │ │ │ └── __1715605752023_1715605752023_08e007a6fcd3e0fffd0b0162ee072f8f │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1715605751280_1715605751280_074a8372a4e53e6bb8daf8cc6edecbca_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1715605751280_1715605751280_074a8372a4e53e6bb8daf8cc6edecbca_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1715605751283_1715605751283_11c3e20a5add82382d6022bd8da095da │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1715605751280_1715605751280_7e2c01f15071420cdc1dd6dd2f11f420_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1715605751280_1715605751280_7e2c01f15071420cdc1dd6dd2f11f420_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1715605751284_1715605751284_3b05d4a8750882d8880c35e076f449c8 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1715605751280_1715605751280_6bcefa85537a60f92f4c282adfe11c76_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1715605751280_1715605751280_5a3a3401b6a517f711c09b3669da8956_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1715605751285_1715605751285_21e1d137e1e970fb8639ed4c8759bf34 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1715605751280_1715605751280_6bcefa82c94e2c0da457f25554e85b3a_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1715605751280_1715605751280_159cc4fe073be8d9f1516ddefeb11d29_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1715605751286_1715605751286_070fe54e7523e380c11a0a1fd325e26c │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1715605751286_1715605751286_070fe5503f1b90de1cdd883ac4c64d9b │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1715605752076_1715605752076_666ee14b37d77dbc196ebf3c38cbfe2b_2 │ │ │ ├── __1715605752094_1715605752094_58d66156b7c8d6d8799e33acf040bd42_2 │ │ │ └── __1715605752230_1715605752230_697b055f51eb7b7a499734638a32c8e1_2 │ │ │ ├── __meta │ │ │ ├── __1715605752064_1715605752064_370d59db409ff01b920d6b3d8be60827 │ │ │ ├── __1715605752065_1715605752065_5f2c5542c5e0e5f20dbe4058d660ad2f │ │ │ ├── __1715605752067_1715605752067_19488af4e6d63cb92f66377b526d7396 │ │ │ ├── __1715605752172_1715605752172_10394f7174cbadd6e370fe2513fd2d51 │ │ │ └── __1715605752223_1715605752223_3c264d0d4298eeb64b4f9c1107706694 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1715605752064_1715605752064_5de539a735896cc5a1c8be6e7eeed4a5_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1715605752064_1715605752064_5de539a735896cc5a1c8be6e7eeed4a5_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1715605752070_1715605752070_71c42a168d61647b679e4b26157cbdba │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1715605752064_1715605752064_76452afe6c19b3ff874c8c5210fcb1b8_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1715605752064_1715605752064_76452afe6c19b3ff874c8c5210fcb1b8_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1715605752071_1715605752071_69f1db82cd7c0e5edd8f9437a3f10b96 │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1715605752064_1715605752064_531f71a409764c633609a205209b599b_21.con │ │ │ ├── __fragments │ │ │ │ └── __1715605752064_1715605752064_7a2f2d01cabd14d1edd517302ee2df60_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1715605752072_1715605752072_2ae4b346c5154cc0b93c431ffc4a971a │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1715605752064_1715605752064_276735fde384853e05f043033bfc7f09_21.con │ │ │ ├── __fragments │ │ │ │ └── __1715605752064_1715605752064_0fd493b7e89eb8aeb2d26278637546e3_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1715605752073_1715605752073_6ca97f89f5fb8b581f18089c9424ba44 │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1715605752074_1715605752074_7632f9f56de71f526c984eae285c951d │ ├── 0.5.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1718192514268_1718192514268_2e8d49accf10e36683e9c973c69cb4f8_2 │ │ │ │ ├── __1718192514297_1718192514297_6e2f4d5747a848ba9581edbf675285f3_2 │ │ │ │ └── __1718192514362_1718192514362_3343676b176301c959ecdcb2277f9f5a_2 │ │ │ ├── __meta │ │ │ │ ├── __1718192514257_1718192514257_33cc11081dc1a49f0225d3ea13bd82a6 │ │ │ │ ├── __1718192514258_1718192514258_21ff08dcbed686a02cc689fc29b0a000 │ │ │ │ ├── __1718192514349_1718192514349_7290a90d5a5ea52b649e8187c4d3905d │ │ │ │ └── __1718192514352_1718192514352_14fec1fe0202cd214993b8c8da4975c5 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1718192514256_1718192514256_164d7cc0184e4fc743b8bf0b4e5ee1ab_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1718192514256_1718192514256_58cc81e5ce98c3f63046a05f36186699_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1718192514263_1718192514263_68b6b278909a12de765bb73a21c06860 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1718192514256_1718192514256_568c876343901e353bc310a5d5ad84e7_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1718192514256_1718192514256_451678f67b3992b0ec09403b0cdc0793_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1718192514265_1718192514265_0fb5c2c3c5d6dd55d53f217e61f19ead │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1718192514267_1718192514267_0dc51a1515549c4a08ae5ada6f1c3a75 │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1718192514401_1718192514401_5dcfea8c58bb41abd191eff653140f92_2 │ │ │ │ ├── __1718192514417_1718192514417_54f766f044b16ae13a6711439f7fca0c_2 │ │ │ │ └── __1718192514490_1718192514490_3ecb2e4649ab539b444f8e0b9dea4726_2 │ │ │ ├── __meta │ │ │ │ ├── __1718192514391_1718192514391_7968bb12bd05c45f60a1a53178fd11ca │ │ │ │ ├── __1718192514395_1718192514395_35b16f92ef8aeb3a3a45b445f991ad2e │ │ │ │ ├── __1718192514476_1718192514476_7068b63e1aceae404a1a48351a3fd7e3 │ │ │ │ └── __1718192514479_1718192514479_0783a575370ff8b6d524609894e9d20f │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1718192514390_1718192514390_03084cb11994318cd4a92325c0fe1fbc_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1718192514390_1718192514390_63dccdae6bca30ea1c9ba34c1d860b7d_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1718192514398_1718192514398_4a467652f28e1f275b1ad4f78757a096 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1718192514390_1718192514390_7736d257fe04de9ed0a5fab065d1edd7_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1718192514390_1718192514390_7e12141dc1de24ca547376169bf2cd19_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1718192514399_1718192514399_2f3827c6029bd5bfd51f18632aa09e29 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1718192514400_1718192514400_42e1a0d218f5a89d5264ce2f1167fdb5 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1718192514530_1718192514530_643abe88fb217fd5407c13fdaed55e98_2 │ │ │ │ ├── __1718192514549_1718192514549_2630da0cfda80f295f8672ba6f558a74_2 │ │ │ │ └── __1718192515310_1718192515310_2a3a71e71c4feac2841ba42b41162a2d_2 │ │ │ ├── __meta │ │ │ │ ├── __1718192514519_1718192514519_43c5f4fcacc93f9f8c809a51de50d5cd │ │ │ │ ├── __1718192514520_1718192514520_2abedd9e4d799a30eebc32bfe608dcc0 │ │ │ │ ├── __1718192514523_1718192514523_2515db2ca94e760a44ee5d1883b4191c │ │ │ │ ├── __1718192515247_1718192515247_31393a229afc4d087ba8402740d918f6 │ │ │ │ └── __1718192515301_1718192515301_53e4525707b4474e2e54c55c2af46eca │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1718192514519_1718192514519_2e4e7857c4dd9811724c6325a52ba873_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1718192514519_1718192514519_2e4e7857c4dd9811724c6325a52ba873_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1718192514523_1718192514523_2515db2e9d279c785e757f5a053a9427 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1718192514519_1718192514519_213abf60f5d9618e45488b839ca4ff02_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1718192514519_1718192514519_213abf60f5d9618e45488b839ca4ff02_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1718192514524_1718192514524_072dac33862e1e2bccdb9bd0cb8a7b4f │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1718192514519_1718192514519_7f88d2b28923a733db361cd08018b42b_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1718192514519_1718192514519_5b19d406df0b8fe3a7d14f9f91a6d0f0_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1718192514526_1718192514526_055a4b25ef0f6af7e9cfc42641341b08 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1718192514519_1718192514519_59ba85cd9f4cb25bc43d08befc0df777_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1718192514519_1718192514519_28e68a654e76484e79dce6163f89ddaa_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1718192514527_1718192514527_0e8fe335768a6027baa3ef56188931bf │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1718192514529_1718192514529_136a2f08dda7ad6d3a704fa507073994 │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1718192515355_1718192515355_06547eab242b003da424fa550535f93b_2 │ │ │ ├── __1718192515373_1718192515373_2fecb34ce56800417f7b7370ebc01111_2 │ │ │ └── __1718192515518_1718192515518_793a602fad771ae98bf35cc339a1be9e_2 │ │ │ ├── __meta │ │ │ ├── __1718192515345_1718192515345_108866098588e9e0082535dffe241794 │ │ │ ├── __1718192515347_1718192515347_19014689373e37c21325631fce2c86e3 │ │ │ ├── __1718192515349_1718192515349_1103bb09142572c9ef89af8a5f3741c3 │ │ │ ├── __1718192515456_1718192515456_149c3f5609c9caac33049802a5fedcc1 │ │ │ └── __1718192515510_1718192515510_2f7803a480bb69084690123e00b9b7b1 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1718192515345_1718192515345_3eeca0b1c329a1edaff0d62f7a9bc939_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1718192515345_1718192515345_3eeca0b1c329a1edaff0d62f7a9bc939_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1718192515349_1718192515349_1103bb0b045e1f0513edd4fd53451f74 │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1718192515345_1718192515345_3090b5975840c00681e460c8dc95d5c7_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1718192515345_1718192515345_3090b5975840c00681e460c8dc95d5c7_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1718192515351_1718192515351_5e20a01378a2fa1d6bad257767f6d135 │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1718192515345_1718192515345_72d531704c001932db7bf21f8ec8be6b_21.con │ │ │ ├── __fragments │ │ │ │ └── __1718192515345_1718192515345_5da7b50a17cbf2f7ffbd7697ff974831_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1718192515352_1718192515352_5002add261804425235c69d9fec1fa73 │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1718192515345_1718192515345_1bf1ad0c28c30ecb6ecc6c624b341ff4_21.con │ │ │ ├── __fragments │ │ │ │ └── __1718192515345_1718192515345_1f94b69164c461b14ec93662dc5b55df_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1718192515353_1718192515353_34da9513fdcb348b757c486bbf03e286 │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1718192515354_1718192515354_0315f1e93857618f62f2f949b0082054 │ ├── 0.6.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1719920014853_1719920014853_01d6be6e09e29712ea700f96c55e03bf_2 │ │ │ │ ├── __1719920014874_1719920014874_5ebb057f63f763f85a15cfece8d037c2_2 │ │ │ │ └── __1719920014933_1719920014933_1346973c69bcb65ee3737ce01b484018_2 │ │ │ ├── __meta │ │ │ │ ├── __1719920014843_1719920014843_00000003fe290a4aa162debdd1f49e51 │ │ │ │ ├── __1719920014845_1719920014845_49b7ed8d10de7f6386be6b47b64f1646 │ │ │ │ ├── __1719920014922_1719920014922_1942afc9a5f4b9459849fae35cfb764f │ │ │ │ └── __1719920014924_1719920014924_0b6f5b53f660683dc4bedab7b13b3da5 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1719920014843_1719920014843_0df527b90c50030defe7e2561b2ea80f_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1719920014843_1719920014843_114431a8776ef2b0d05bffdb49a78cce_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1719920014850_1719920014850_1460be027de58e7ab13e0307dbb5185f │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1719920014843_1719920014843_5fbf6becbe256d7b784c852245bf3f2e_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1719920014843_1719920014843_7fe512d259a6740db3337921bfb8da47_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1719920014851_1719920014851_236a6f9349f3918540254bffae5ad813 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1719920014852_1719920014852_7f9159cc61b95ca49041926a5a878c5c │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1719920014975_1719920014975_0743193d7cf88bd8e347cd590dc108cc_2 │ │ │ │ ├── __1719920014990_1719920014990_13d53149f842001bd6b0dbe56f37624e_2 │ │ │ │ └── __1719920015053_1719920015053_5ead4302b0732283f43783cb71cbfd1f_2 │ │ │ ├── __meta │ │ │ │ ├── __1719920014968_1719920014968_4ee000b901314ba3e9b302c585741375 │ │ │ │ ├── __1719920014970_1719920014970_1d216814f87601f97dba573875402a73 │ │ │ │ ├── __1719920015042_1719920015042_15bfb793e8010e86ec0702c6e2a3167a │ │ │ │ └── __1719920015044_1719920015044_77fd2e7d9dc005c04e1f00c846029198 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1719920014967_1719920014967_113e9cbae8e7b0885bb79a132af6dd89_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1719920014967_1719920014967_7cecc2c56fa66b41510877775f32bfa3_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1719920014972_1719920014972_3cd6c29bcee6dfd7f282d307a781872e │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1719920014967_1719920014967_38cbfc491474b952aa2676078a2a70cc_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1719920014967_1719920014967_50d447169fb20a91f9b0d18a959ef33b_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1719920014973_1719920014973_56677a853694e84361a2ad79d0a3ee6a │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1719920014974_1719920014974_5fb4ecd37f8b8ca89624006fbfd60a01 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1719920015094_1719920015094_5cba9c5219351bd157b682820e60b0ed_2 │ │ │ │ ├── __1719920015112_1719920015112_5ef9851d9976b63e4c132007b99c1320_2 │ │ │ │ └── __1719920015892_1719920015892_788fcb9165590c366687cb83c69f1f1f_2 │ │ │ ├── __meta │ │ │ │ ├── __1719920015084_1719920015084_27aeb39f987cdd6018b9c14ee1e0de61 │ │ │ │ ├── __1719920015085_1719920015085_1aac9c60e46af4ba7b5a8a5c8685c62a │ │ │ │ ├── __1719920015087_1719920015087_3db05499c066a90888702abbc11e823b │ │ │ │ ├── __1719920015826_1719920015826_601df873ecb5e22ab142263f8cc057f2 │ │ │ │ └── __1719920015882_1719920015882_70bfdb65c6fac11a13b201c725f73579 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1719920015084_1719920015084_732dea43983c12d592b29a0ee97335e8_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1719920015084_1719920015084_732dea43983c12d592b29a0ee97335e8_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1719920015087_1719920015087_3db0549b3da73d7dc02b4faaadeddaae │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1719920015084_1719920015084_66452276e3b100c00c288d8a8da9bd4a_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1719920015084_1719920015084_66452276e3b100c00c288d8a8da9bd4a_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1719920015088_1719920015088_1013e8b830c157f1cf10f8f213a76928 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1719920015084_1719920015084_526169ea10027a63a878cb2fd7007c83_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1719920015084_1719920015084_691e4d15ae70e064365b1687654e0ab1_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1719920015090_1719920015090_065e7cae337e615faca8882b93bf7c68 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1719920015084_1719920015084_38e3957576a8bdd2d0410a845f07ab03_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1719920015084_1719920015084_1b2319681605f71d5d6d286d6e799890_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1719920015091_1719920015091_503609cb5d2369d383c0edc89ba3d0d6 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1719920015092_1719920015092_2edaa6f307992891a14ea48f38379129 │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1719920015936_1719920015936_050966a38cab0c7118779a15dc3ba35a_2 │ │ │ ├── __1719920015954_1719920015954_11d1bce901638f5801e6187df1b162b2_2 │ │ │ └── __1719920016108_1719920016108_6b9159e013729d006212508825f9c8ce_2 │ │ │ ├── __meta │ │ │ ├── __1719920015926_1719920015926_6c3d52e999c7dae3b2ffe76a954d75c4 │ │ │ ├── __1719920015927_1719920015927_04dffa8c9dc09154979affc68e24e59f │ │ │ ├── __1719920015930_1719920015930_0989788ca3563ea0a07de2c3571fc049 │ │ │ ├── __1719920016035_1719920016035_54593332b4dc3fb087c7b7256ee59457 │ │ │ └── __1719920016100_1719920016100_54a24d7ece1f1edfb7747a09e90bfe20 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1719920015926_1719920015926_5f3b14e47f1d38558374e774e209e7d6_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1719920015926_1719920015926_5f3b14e47f1d38558374e774e209e7d6_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1719920015930_1719920015930_0989788e36abc0063d58a18079d1c397 │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1719920015926_1719920015926_7a1b8f8e4e66c631895e4c1e7a5e3cac_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1719920015926_1719920015926_7a1b8f8e4e66c631895e4c1e7a5e3cac_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1719920015931_1719920015931_5a3f3f765a1227fd49e8dbd07b46866c │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1719920015926_1719920015926_0d2e3f44c941084a232e6ef901bd805f_21.con │ │ │ ├── __fragments │ │ │ │ └── __1719920015926_1719920015926_3341e8627dcc6d1271f01e7b99c0723b_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1719920015932_1719920015932_0537dacb3d07f30cd009e4a6fba35609 │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1719920015926_1719920015926_4b04eaeed718889f3908c2afef978fb4_21.con │ │ │ ├── __fragments │ │ │ │ └── __1719920015926_1719920015926_1fabbb5deefc75b665c4aa17610b18dc_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1719920015934_1719920015934_11145853561c72fb070aa2df411bcbae │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1719920015935_1719920015935_71baedde0aa7ecf2fbd645652b0fdfc7 │ ├── 0.7.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1720432685407_1720432685407_6b81b703aecd4e6d1a4d7d79f8b4bcd7_2 │ │ │ │ ├── __1720432685429_1720432685429_1ceafbe20d7f22e26996dca2fa7627b6_2 │ │ │ │ └── __1720432685488_1720432685488_341274dab21fa4692c8c152019958f59_2 │ │ │ ├── __meta │ │ │ │ ├── __1720432685395_1720432685395_00000003bc190aa0fd8bc8ce3b9ad9cd │ │ │ │ ├── __1720432685397_1720432685397_6bf96eee783f08511596622faf6a5d65 │ │ │ │ ├── __1720432685477_1720432685477_015ceb3aa99c0461f6428f5286ece87a │ │ │ │ └── __1720432685479_1720432685479_7049cd625f6e0230c5cfada09bcf2f09 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1720432685395_1720432685395_1b9ed3ce70c162f705b0efe2304b8778_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1720432685395_1720432685395_3949c972f10249f3d74736e1aaa47ee0_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1720432685402_1720432685402_67e5c01f29fecf8e6a8a6f33df9fdb47 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1720432685395_1720432685395_625645bd1c63f79962d61845de50bcb0_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1720432685395_1720432685395_39e778536d483c290f98cb049c088255_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1720432685403_1720432685403_2309c3ff12f53023592aa36c46b8dc7b │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1720432685405_1720432685405_1590250c1d725965056fecc5eb37dfcb │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1720432685529_1720432685529_6cc8be96dde0e29a3c24130504e81e46_2 │ │ │ │ ├── __1720432685544_1720432685544_1c7754ecae440c6acb7cdc22a5235c0c_2 │ │ │ │ └── __1720432685603_1720432685603_3b043fea24afabb60de2ab31d3a21d9f_2 │ │ │ ├── __meta │ │ │ │ ├── __1720432685519_1720432685519_0ef1443d3d2868c4c4f818e3536c38cf │ │ │ │ ├── __1720432685521_1720432685521_3381afa4c585833df2d1e217957c9f76 │ │ │ │ ├── __1720432685592_1720432685592_5a9cc10d4557a661f67ab9e0ae0f6edc │ │ │ │ └── __1720432685594_1720432685594_6b459ebb594535a3cc58a729d5fcc543 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1720432685519_1720432685519_3d9ab1b4c6c44fc96a4da983b8daa6e0_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1720432685519_1720432685519_564b17e01e166a16acc91fbf09596672_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1720432685524_1720432685524_5043f9c1c27e5e13363bddb987e1531b │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1720432685519_1720432685519_28efdca4788d0759a323eecbc70cdd47_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1720432685519_1720432685519_5c8e2d283129a0685247964c6ca8038e_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1720432685526_1720432685526_63b43cb33f44c533f37d8edf18c0d738 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1720432685527_1720432685527_5555f2e97af255e5d2ce6f32d047996b │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1720432685640_1720432685640_1584243e153e675047faaa685541a8ea_2 │ │ │ │ ├── __1720432685659_1720432685659_03c708a33ee34c305cb67d073184d6ba_2 │ │ │ │ └── __1720432686366_1720432686366_0c325299cff7997ce5b96979fab8b98f_2 │ │ │ ├── __meta │ │ │ │ ├── __1720432685630_1720432685630_5b8b32135248bc8917539fca5d491a72 │ │ │ │ ├── __1720432685631_1720432685631_6c860fdfe6fc1aa10deb07d548c9eadc │ │ │ │ ├── __1720432685633_1720432685633_3a6941cdc43034f3211737c5742cb8ca │ │ │ │ ├── __1720432686306_1720432686306_38f83c0b25684b45262491ea74de52bd │ │ │ │ └── __1720432686357_1720432686357_4b1dfbcc4a3f8f000e2a89f312ae54fe │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1720432685630_1720432685630_607babc908c2d72e47631d631aa46524_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1720432685630_1720432685630_607babc908c2d72e47631d631aa46524_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1720432685633_1720432685633_3a6941cf3dd0a285927f2cceee3f5321 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1720432685630_1720432685630_3d0ef3182d0b0c0b11bf21ffb2ffe4cc_21.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1720432685630_1720432685630_3d0ef3182d0b0c0b11bf21ffb2ffe4cc_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1720432685634_1720432685634_2573026c15e7043be94473875cdf121f │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1720432685630_1720432685630_656190f381ebde583198ad0976626c64_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1720432685630_1720432685630_618094c4d41e84878eede52cbb924f83_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1720432685635_1720432685635_6056f2a1a7ab5b97b6482c7968a3a171 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1720432685630_1720432685630_47ec7fb0b27b46e6b0aff74887e554c4_21.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1720432685630_1720432685630_35fd59d5d4ae38fb80cfa8c969b835d2_21 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1720432685637_1720432685637_21157553d6831ee9855782c6272ba48c │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1720432685638_1720432685638_18eb5218d1ba13782b8a1f14be2ad007 │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1720432686409_1720432686409_5303d26615ed6ff76432ed0e9350c708_2 │ │ │ ├── __1720432686428_1720432686428_5be782628cd45845ff86afa24e761785_2 │ │ │ └── __1720432686575_1720432686575_07048604a427072dbd9ea2443b24428b_2 │ │ │ ├── __meta │ │ │ ├── __1720432686399_1720432686399_02da5f8566bb1dda632cbced221dae6f │ │ │ ├── __1720432686400_1720432686400_5bf3254d11f252477a06a9698d4f5826 │ │ │ ├── __1720432686402_1720432686402_19ac4314d4c012a4ced4cac7a104d624 │ │ │ ├── __1720432686512_1720432686512_2ab3846eada75733527a1a09c747dc9c │ │ │ └── __1720432686567_1720432686567_1e0356c551233e0d55be119407c34910 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1720432686399_1720432686399_36dafc646c6a29ec2689769f4f484c2d_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1720432686399_1720432686399_36dafc646c6a29ec2689769f4f484c2d_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1720432686402_1720432686402_19ac4316a26f608181dd1c8e8e823d3f │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1720432686399_1720432686399_03d1f6cad150a4f637a9a52c8eef15ed_21.wrt │ │ │ ├── __fragments │ │ │ │ └── __1720432686399_1720432686399_03d1f6cad150a4f637a9a52c8eef15ed_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1720432686403_1720432686403_53f3b98dde059122b8c056cbc5d4980d │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1720432686399_1720432686399_732fe1d5877295b36a591e9447329e4b_21.con │ │ │ ├── __fragments │ │ │ │ └── __1720432686399_1720432686399_7f6eeeb28971efd9a7755f69ad178355_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1720432686404_1720432686404_4fda5b3c1f18ee39fb9856e585b406a4 │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1720432686399_1720432686399_4e433149776a15edca2c44e730f1edeb_21.con │ │ │ ├── __fragments │ │ │ │ └── __1720432686399_1720432686399_5a26beca412653b25ad58843f30599ef_21 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1720432686406_1720432686406_2d12ec7ad4020feab04c589e375f7a3e │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1720432686407_1720432686407_3be452cfd6cb76cca8bbb14c3893f308 │ ├── 0.8.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1722003092443_1722003092443_5723bf1eeb0509a1e5e0a618860b7552_2 │ │ │ │ ├── __1722003092458_1722003092458_1c3ac16b3f10570d7224d8722e3b02b3_2 │ │ │ │ └── __1722003092517_1722003092517_3db843893e966ca671e63b7bc9ff0630_2 │ │ │ ├── __meta │ │ │ │ ├── __1722003092433_1722003092433_0000000398b87a69dc691bb1d897c9b5 │ │ │ │ ├── __1722003092435_1722003092435_1f7c321c2c7c99e9a21476398c4856f3 │ │ │ │ ├── __1722003092506_1722003092506_42200d6f8a8137ced4293f312f9af9ef │ │ │ │ └── __1722003092508_1722003092508_7907e946d2c51f5ab14a69e978ac548f │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1722003092433_1722003092433_349a5d7abb9c2016903146b01c564970_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1722003092433_1722003092433_02b6d69493027a52b1cc919db21d9117_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1722003092440_1722003092440_62c1ad3fd9cf377cc5e19f986b46c263 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1722003092433_1722003092433_2cdf2bc2de312bc3e193ab8fbb5e97db_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1722003092433_1722003092433_455a90e78b62645990862228f5656360_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1722003092441_1722003092441_1bcdd3406ed82a1ce55db4bbb8ba13ee │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1722003092442_1722003092442_26651172a012c560416e7141c6fd9bd6 │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1722003092551_1722003092551_602dcbcc04b939c8d0a1d621711a736d_2 │ │ │ │ ├── __1722003092564_1722003092564_6f49bc24db81c3c2a7dc642d11a9e177_2 │ │ │ │ └── __1722003092623_1722003092623_70f6075e8b251d5f41999268059fba41_2 │ │ │ ├── __meta │ │ │ │ ├── __1722003092545_1722003092545_0636b572849dad818d6669d1bdc378f1 │ │ │ │ ├── __1722003092546_1722003092546_2d0f87f6c49e9cabaa3ef99d0b6ca50b │ │ │ │ ├── __1722003092613_1722003092613_6cb4aa55341d54307fc3137a8d6602da │ │ │ │ └── __1722003092614_1722003092614_023c5b87c6721ceb40425b34d494efe5 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1722003092545_1722003092545_13f8a708cfd7318d3fd5b55f50a5d34c_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1722003092545_1722003092545_69c1b707a57f1fd8843c6d946f838beb_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1722003092548_1722003092548_29cc43d744c9862edbb4dffa4e887967 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1722003092545_1722003092545_2062fde4864531e82bcfda0cfdc1a0ea_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1722003092545_1722003092545_5b10faa1c79755ec277808d1562fc425_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1722003092549_1722003092549_4641204a837c31c82479ed4c4d3e3a3b │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1722003092550_1722003092550_05c142177c30f0f14d0fb48add25a754 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1722003092658_1722003092658_7b41da2055355693b8606fa445e29db4_2 │ │ │ │ ├── __1722003092674_1722003092674_5205095bc61fea925d7cc1f30cb53199_2 │ │ │ │ └── __1722003093489_1722003093489_62d105f9fe849f528cae42785f936555_2 │ │ │ ├── __meta │ │ │ │ ├── __1722003092649_1722003092649_43b61f5119152d267b6b2a53412f78bb │ │ │ │ ├── __1722003092650_1722003092650_130d12344c81cba2d41aaac9138faf51 │ │ │ │ ├── __1722003092652_1722003092652_52b05df5c342a90bf0da90d8725bdfa6 │ │ │ │ ├── __1722003093428_1722003093428_29c16c23f4b1b9a2e21202688717c00e │ │ │ │ └── __1722003093477_1722003093477_033cb8172c85cfb053515e56002c44cb │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1722003092649_1722003092649_36067a380c623d2c64678bff8d244dde_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1722003092649_1722003092649_36067a380c623d2c64678bff8d244dde_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1722003092652_1722003092652_52b05df777d68847903e3fd83b13f8e7 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1722003092649_1722003092649_12aaf4e5a76a89295d121797f699c82d_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1722003092649_1722003092649_12aaf4e5a76a89295d121797f699c82d_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1722003092653_1722003092653_4b35e5edb66bde25b8e41c376b4a673e │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1722003092649_1722003092649_252fb7a4cfe6675b2c02b295072426e5_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1722003092649_1722003092649_084428100ae7a6d08bc4198394abf7b6_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1722003092654_1722003092654_58287ff28fd5474e94558c302509d596 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1722003092649_1722003092649_1120f0d89a843b5ea1199eaf9f42ae03_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1722003092649_1722003092649_410245920471cf6570808ac6b3c28037_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1722003092656_1722003092656_660786239d02a2172f183a2c5ec62167 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1722003092657_1722003092657_3167ad8ac975120f4dcc46ec04fb4d8f │ │ └── ivf_flat_uint8 │ │ │ ├── __group │ │ │ ├── __1722003093530_1722003093530_1a9043e5cb9ce1a74a51f26dca851ff6_2 │ │ │ ├── __1722003093548_1722003093548_30dfba1e07d8e537ef941c4c11311b55_2 │ │ │ └── __1722003093714_1722003093714_26748b184c880b522aaba486a923cc14_2 │ │ │ ├── __meta │ │ │ ├── __1722003093521_1722003093521_3e322471c20f6d93c12140983ec329db │ │ │ ├── __1722003093522_1722003093522_31d1a02b453dc947d396fa0c74b3ee68 │ │ │ ├── __1722003093524_1722003093524_19d7c1ba3496cca8ee7384c0f0dc6ed5 │ │ │ ├── __1722003093649_1722003093649_037afec7b194111fea0075bf39346f91 │ │ │ └── __1722003093704_1722003093704_6b6467a4f1d27ac4f7ead31c7b3fe750 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1722003093521_1722003093521_178f7374c4f2983ddd18df2c6315ac18_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1722003093521_1722003093521_178f7374c4f2983ddd18df2c6315ac18_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1722003093524_1722003093524_19d7c1bc228abbfc6caad16b84f57d3c │ │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1722003093521_1722003093521_5f0677b97cc0d1790a51c01229db0607_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1722003093521_1722003093521_5f0677b97cc0d1790a51c01229db0607_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1722003093525_1722003093525_53cb1265c58de3edffb7310dbd84d66e │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1722003093521_1722003093521_16f8eeeb9125016d7e2de2ac39251768_22.con │ │ │ ├── __fragments │ │ │ │ └── __1722003093521_1722003093521_0c3a7a38e5c60a999be966eb0765023b_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1722003093527_1722003093527_2e7bb0ed64594d3c2c154553a7e8a6f3 │ │ │ ├── shuffled_vectors │ │ │ ├── __commits │ │ │ │ └── __1722003093521_1722003093521_607d00457c055467d05f155a0aa18efd_22.con │ │ │ ├── __fragments │ │ │ │ └── __1722003093521_1722003093521_455279bc602d4c5a43d6cb248e74110c_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1722003093528_1722003093528_51a08d63970021f3bc1690e6d0680382 │ │ │ └── updates │ │ │ └── __schema │ │ │ └── __1722003093529_1722003093529_7627fbe723a574f83f7f03830ebd30a1 │ ├── 0.9.0 │ │ ├── flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1726505217433_1726505217433_7d51a5188ce27028403a53b50de3e2a7_2 │ │ │ │ ├── __1726505217448_1726505217448_0a71d43135bb4eb5e97ae2243731d2b9_2 │ │ │ │ └── __1726505217505_1726505217505_09d2f8e3da4e5bad5ff4d0610da7b009_2 │ │ │ ├── __meta │ │ │ │ ├── __1726505217423_1726505217423_3d22827e247e6d28e07d1752a366fba6 │ │ │ │ ├── __1726505217424_1726505217424_027299a4ea58d7f49ee335262b72370b │ │ │ │ ├── __1726505217494_1726505217494_2e08ee5e9c8c0858e440d312c1f52476 │ │ │ │ └── __1726505217496_1726505217496_744a9589f94b8a4fec3f9cba9318ac6a │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505217423_1726505217423_48205eabe5b9e4d2dc4c0623995fe37c_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505217423_1726505217423_682b83cdb5b9962d0cf6af419216ccfa_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505217429_1726505217429_0700a58661fec803fbe85354e80ba477 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505217423_1726505217423_2cb97f1f7bc8bd1ccb61ceaf6586abdc_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505217423_1726505217423_19b2e914bb566a9879749e4ce1b83f82_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505217431_1726505217431_333f151407f0732b376c03405a55993d │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1726505217432_1726505217432_3159ff69119387cc4de11affae232061 │ │ ├── flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1726505217539_1726505217539_00de8ee5d11ff0cd5df83d73caae5b3c_2 │ │ │ │ ├── __1726505217553_1726505217553_291d235efc802ac729ad74465302b6a1_2 │ │ │ │ └── __1726505217611_1726505217611_090f741104f7768c4d92ff6b23c75dce_2 │ │ │ ├── __meta │ │ │ │ ├── __1726505217532_1726505217532_15b271f4bf4487b10b2216b591c21fc4 │ │ │ │ ├── __1726505217533_1726505217533_61a9a92639028e27f51ab876e56037c7 │ │ │ │ ├── __1726505217599_1726505217599_362f683bf3265416e8f1302737950030 │ │ │ │ └── __1726505217601_1726505217601_26862544ea58173fa1cdc810627f03b7 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505217532_1726505217532_116525da926e5aa4cb810a6ff927d362_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505217532_1726505217532_012639f512bca83bc1696ffd6542903f_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505217536_1726505217536_495e786e49dcaaa20513e3ffe13d7338 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505217532_1726505217532_438f20c0cafdd208cdd4b549b4ffd498_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505217532_1726505217532_6cad07a63d98046549bdfb5be9de96bb_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505217537_1726505217537_74f3c01875a7a2021b5cc33b4910ab82 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1726505217538_1726505217538_7d7d20383639a41293e03724e2a413e5 │ │ ├── ivf_flat_float32 │ │ │ ├── __group │ │ │ │ ├── __1726505217646_1726505217646_7b1afa30f8ceb31273783494d8e425c7_2 │ │ │ │ ├── __1726505217663_1726505217663_2874820abb8621e45a1c746ab4d0ef59_2 │ │ │ │ └── __1726505218549_1726505218549_7661c50905f587e3ee9294d5735ae4a6_2 │ │ │ ├── __meta │ │ │ │ ├── __1726505217637_1726505217637_5e0477cea25c6595e0df1cbd12caf8f1 │ │ │ │ ├── __1726505217638_1726505217638_6a582667416a44099bd116547008d6d3 │ │ │ │ ├── __1726505217640_1726505217640_50efac123f75a488f6d7796f1f0294df │ │ │ │ ├── __1726505218488_1726505218488_4d563908c92dbd6b2f2e621728a85b2d │ │ │ │ └── __1726505218539_1726505218539_506392de7a4377594b98cb25d003657d │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505217637_1726505217637_23b9db8b35a78f1797fe3a3cf5ac9bec_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505217637_1726505217637_23b9db8b35a78f1797fe3a3cf5ac9bec_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505217640_1726505217640_50efac14cba448796921342ec35da5de │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505217637_1726505217637_2e994b56ae982b92c46536302cfee02e_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505217637_1726505217637_2e994b56ae982b92c46536302cfee02e_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505217641_1726505217641_2e7824f9a9f67a8a0da1a1ec9ba2c4b1 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505217637_1726505217637_5737728736976f1a0c8a599c46cb7708_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505217637_1726505217637_59fd08ed9797e4316348c7bdd180c28f_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505217642_1726505217642_7fada64a1b93aaa474744a611868f916 │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505217637_1726505217637_3c59ab57111b2a384d38b69840a563da_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505217637_1726505217637_6e9c3712cdaeb1ed6a3da581d1934595_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505217644_1726505217644_04c7201efdf6d7007c29ef8b66ac9a06 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1726505217645_1726505217645_22a6cb78cd5e1467f69d792d0562afa9 │ │ ├── ivf_flat_uint8 │ │ │ ├── __group │ │ │ │ ├── __1726505218589_1726505218589_382069c7e85ab195dbf375697a300148_2 │ │ │ │ ├── __1726505218605_1726505218605_0a88883519308b73d3cf1bb33073c40f_2 │ │ │ │ └── __1726505218739_1726505218739_028bc11599751aed73105de6666ae7df_2 │ │ │ ├── __meta │ │ │ │ ├── __1726505218579_1726505218579_45e33c48c7b1e6422436e08bfb06b197 │ │ │ │ ├── __1726505218580_1726505218580_1546e7fdb221d8b4f69af89b5346692e │ │ │ │ ├── __1726505218582_1726505218582_1f5be73d49d7a21d1252e9169bd13b98 │ │ │ │ ├── __1726505218680_1726505218680_14b676dd0ea6c25d77799997522476f7 │ │ │ │ └── __1726505218729_1726505218729_43d598eff6c214fb6df1734f3c318e5f │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505218579_1726505218579_762cd5ab2adeb37210b3162f1cf84414_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505218579_1726505218579_762cd5ab2adeb37210b3162f1cf84414_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505218582_1726505218582_1f5be73f3d0cbbd87a4f6c23bb8c0b58 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505218579_1726505218579_027c550a759427f90b74891be04e8f11_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505218579_1726505218579_027c550a759427f90b74891be04e8f11_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505218583_1726505218583_7ce1fec1677625eab699fe894892b6ad │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505218579_1726505218579_109e4241d935c2e9ab75047b29c74ac9_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505218579_1726505218579_735629c3daddbdb6f4248f715c626df3_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505218585_1726505218585_0d925f1b2e4c6baef3e4dee6a6d55b8c │ │ │ ├── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505218579_1726505218579_082b14e015bfa7cd62a3e281b392e143_22.con │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505218579_1726505218579_76665bfbb05eebeabe2ef1d7a2038ad3_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505218586_1726505218586_6da3b62cfaf80f8eeb802f38e5a85dd7 │ │ │ └── updates │ │ │ │ └── __schema │ │ │ │ └── __1726505218587_1726505218587_276241f83285a2706e47f88d3a0b8b29 │ │ ├── vamana_float32 │ │ │ ├── __group │ │ │ │ ├── __1726505218777_1726505218777_71490dd2ccb1f78f36cfb385b630b594_2 │ │ │ │ ├── __1726505218794_1726505218794_6507a17b96f121060fd66ebebca78637_2 │ │ │ │ └── __1726505218908_1726505218908_72884d9cbee1496e40e09ab22446cee5_2 │ │ │ ├── __meta │ │ │ │ ├── __1726505218771_1726505218771_0e69be5cce3f6bb2f783e5f2fe07deeb │ │ │ │ ├── __1726505218778_1726505218778_637a7e3bbde88999d6fcc37c278dace7 │ │ │ │ ├── __1726505218786_1726505218786_0ebef43d21b7afa0b3c51da680ee0afe │ │ │ │ ├── __1726505218835_1726505218835_6b84a04676ed6884604ee1dc786d892f │ │ │ │ └── __1726505218856_1726505218856_1bb7537462d68fa6ab69b11aadbf6cab │ │ │ ├── __tiledb_group.tdb │ │ │ ├── adjacency_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505218785_1726505218785_5e3aeb188b69f7bb5d84078d159b8ca8_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505218785_1726505218785_5e3aeb188b69f7bb5d84078d159b8ca8_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505218774_1726505218774_5e479307ca2808562c7b433dd310570e │ │ │ ├── adjacency_row_index │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505218785_1726505218785_116d8bf13a39d08b8fc5f6a49410c6d6_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505218785_1726505218785_116d8bf13a39d08b8fc5f6a49410c6d6_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505218775_1726505218775_13984c57a5e9b0ded2bdf0cdfb32e4e9 │ │ │ ├── adjacency_scores │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505218785_1726505218785_0600ecb6bb3e05c1bc488239559a17fc_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505218785_1726505218785_0600ecb6bb3e05c1bc488239559a17fc_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505218773_1726505218773_3df999a7051e188c039b5b11096a05fc │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1726505218785_1726505218785_143a57d5540cb091c6aaabd3e56103ec_22.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1726505218785_1726505218785_143a57d5540cb091c6aaabd3e56103ec_22 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1726505218772_1726505218772_2725a3d2af64105d2a4cc812c790ecd5 │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1726505218785_1726505218785_02c69f568ee7c7f5d2fadeee4aab570c_22.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1726505218785_1726505218785_02c69f568ee7c7f5d2fadeee4aab570c_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1726505218771_1726505218771_0e69be5e529824b54bf72194c1b2926b │ │ └── vamana_uint8 │ │ │ ├── __group │ │ │ ├── __1726505218941_1726505218941_06234e148f72e5eb9045ccc4a982a957_2 │ │ │ ├── __1726505218959_1726505218959_3e8cc3ef9cd3858ddf20b8e3bbe77050_2 │ │ │ └── __1726505219076_1726505219076_5ec87ee55f90cb16387e066217596259_2 │ │ │ ├── __meta │ │ │ ├── __1726505218936_1726505218936_254904e8313b8d8ed0d479b58738096f │ │ │ ├── __1726505218942_1726505218942_1ecff5c4025adf443f6853ea04e73295 │ │ │ ├── __1726505218951_1726505218951_1c0b30dde5c7af53074bc8e8df75f8f3 │ │ │ ├── __1726505218997_1726505218997_3059fc1a2e270b9d782580965e0748c7 │ │ │ └── __1726505219020_1726505219020_2582b56be3741c97bb3fc28ff170332b │ │ │ ├── __tiledb_group.tdb │ │ │ ├── adjacency_ids │ │ │ ├── __commits │ │ │ │ └── __1726505218950_1726505218950_2ddd0678c9d027258c48581a578a3b07_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1726505218950_1726505218950_2ddd0678c9d027258c48581a578a3b07_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1726505218939_1726505218939_19f075e3bc5e3d7cb21c66c2011f61c1 │ │ │ ├── adjacency_row_index │ │ │ ├── __commits │ │ │ │ └── __1726505218950_1726505218950_394e4ccf448a766483eec1ddbf65611d_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1726505218950_1726505218950_394e4ccf448a766483eec1ddbf65611d_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1726505218940_1726505218940_75a75f34d458d9ef330733086dc2f633 │ │ │ ├── adjacency_scores │ │ │ ├── __commits │ │ │ │ └── __1726505218950_1726505218950_3d44f53e98c7dc5da096cdf727c96976_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1726505218950_1726505218950_3d44f53e98c7dc5da096cdf727c96976_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1726505218938_1726505218938_4d62e5ec9c849e3941adb8c0b9067444 │ │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1726505218950_1726505218950_6b9778b981f53f13213beba4aea65ea6_22.wrt │ │ │ ├── __fragments │ │ │ │ └── __1726505218950_1726505218950_6b9778b981f53f13213beba4aea65ea6_22 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1726505218937_1726505218937_09723c58a73dde005852903337aeab8f │ │ │ └── shuffled_vectors │ │ │ ├── __commits │ │ │ └── __1726505218950_1726505218950_5fe13d31d4e7bb041b3f38f342940b00_22.wrt │ │ │ ├── __fragments │ │ │ └── __1726505218950_1726505218950_5fe13d31d4e7bb041b3f38f342940b00_22 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ └── __1726505218936_1726505218936_254904ead2f0268b828e1afcfc10809a │ └── README.md ├── generate_data.py └── siftmicro_base.fvecs ├── demos └── flat_index.ipynb ├── documentation ├── Benchmarks.md ├── Building.md ├── index.md └── storage-format-spec.md ├── environment.yml ├── external └── test_data │ ├── arrays │ ├── bigann10k │ │ ├── groundtruth │ │ │ ├── __commits │ │ │ │ └── __1704498102134_1704498102134_f3c858b8ad594d1db556b80444a384ea_20.wrt │ │ │ ├── __fragments │ │ │ │ └── __1704498102134_1704498102134_f3c858b8ad594d1db556b80444a384ea_20 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1704498102133_1704498102133_3c6101b651cc4b7c9d0c68953b747302 │ │ ├── group │ │ │ ├── __group │ │ │ │ └── __1704946762590_1704946762590_de07ff8c2ea247b784917b8857bb01d8_2 │ │ │ ├── __meta │ │ │ │ ├── __1704946762587_1704946762587_cc87b18ee1d84363b4624c35c3b7302b │ │ │ │ └── __1704946762699_1704946762699_4301234cd5d64d1cb4e78dcdd17299f0 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1704946759192_1704946759192_f0dea1c0c4c4410ea9a7ef8597aedebe_20.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1704946759192_1704946759192_f0dea1c0c4c4410ea9a7ef8597aedebe_20 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1704946762587_1704946762587_44fd358e5577437c9610bd2ecf115661 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1704946759192_1704946759192_dd35366385234e8486b02427a3f13612_20.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1704946759192_1704946759192_dd35366385234e8486b02427a3f13612_20 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1704946762589_1704946762589_1739b4aa27b24560bc2fc0f2ad8cd972 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1704946759192_1704946759192_bcdc9ced6a0743a78d86d5fe6d0bf4ec_20.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1704946759192_1704946759192_bcdc9ced6a0743a78d86d5fe6d0bf4ec_20 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1704946762588_1704946762588_21dc14c448c249ff802733af27bedde8 │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1704946759192_1704946759192_2144132973ce4e3ca0894dbee3a95cd6_20.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1704946759192_1704946759192_2144132973ce4e3ca0894dbee3a95cd6_20 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1704946762588_1704946762588_359d54aaecf943d4918d52d64389a50b │ │ ├── input_vectors │ │ │ ├── __commits │ │ │ │ └── __1704411278156_1704411278156_036d80a0f4884fabb3c9cbe6de41cb7a_18.wrt │ │ │ ├── __fragments │ │ │ │ └── __1704411278156_1704411278156_036d80a0f4884fabb3c9cbe6de41cb7a_18 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1704411274788_1704411274788_1b0010d80b8b4b949ce5bc313c9bf44f │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1704511160190_1704511160190_9d73633669204bc28f22a648b617dd0d_20.wrt │ │ │ ├── __fragments │ │ │ │ └── __1704511160190_1704511160190_9d73633669204bc28f22a648b617dd0d_20 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1704511160188_1704511160188_0a55558e5c964a1c801bfe8faeae965d │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1704511160226_1704511160226_40585e731121493da31056b196a91c58_20.wrt │ │ │ ├── __fragments │ │ │ │ └── __1704511160226_1704511160226_40585e731121493da31056b196a91c58_20 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1704511160225_1704511160225_486f0fa21e0d4046ba88a21ca1f27226 │ │ ├── queries │ │ │ ├── __commits │ │ │ │ └── __1704412110777_1704412110777_f2d86853620647688b88f664e01653db_18.wrt │ │ │ ├── __fragments │ │ │ │ └── __1704412110777_1704412110777_f2d86853620647688b88f664e01653db_18 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1704412091919_1704412091919_3608d3c94d8843069ae041e2737589b4 │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1704511160218_1704511160218_4159affa7cdc400cbdfb598d0cd6f8cf_20.wrt │ │ │ ├── __fragments │ │ │ │ └── __1704511160218_1704511160218_4159affa7cdc400cbdfb598d0cd6f8cf_20 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1704511160217_1704511160217_4202199903414ca6a28de66abcfb7256 │ │ └── shuffled_vectors │ │ │ ├── __commits │ │ │ └── __1704511160202_1704511160202_f18718653ee247a0b2e6282fdd14da70_20.wrt │ │ │ ├── __fragments │ │ │ └── __1704511160202_1704511160202_f18718653ee247a0b2e6282fdd14da70_20 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ └── __1704511160201_1704511160201_1d84cf1df9024083a050c2e759887536 │ ├── fmnistsmall │ │ ├── groundtruth │ │ │ ├── __commits │ │ │ │ └── __1704941147868_1704941147868_394f47d4766845b38b46b5e5d1055b9a_20.wrt │ │ │ ├── __fragments │ │ │ │ └── __1704941147868_1704941147868_394f47d4766845b38b46b5e5d1055b9a_20 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1704941147864_1704941147864_e0efde5ff45c49968020716d8e622486 │ │ ├── group │ │ │ ├── __group │ │ │ │ └── __1704946743861_1704946743861_80014acd316140869752f892c0b05178_2 │ │ │ ├── __meta │ │ │ │ ├── __1704946743838_1704946743838_cdb72e4323c246e9b6f12e64e87f66a5 │ │ │ │ └── __1704946748905_1704946748905_9abea5aa4cec48f2a82eb0d88e7c5f27 │ │ │ ├── __tiledb_group.tdb │ │ │ ├── partition_centroids │ │ │ │ ├── __commits │ │ │ │ │ └── __1704946743476_1704946743476_33b20ec736394429929bdf64152045e9_20.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1704946743476_1704946743476_33b20ec736394429929bdf64152045e9_20 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1704946743844_1704946743844_3d62e41920d24691984a09c36f68aa98 │ │ │ ├── partition_indexes │ │ │ │ ├── __commits │ │ │ │ │ └── __1704946743476_1704946743476_5302a535c87241ed9fd4551ce7ea20a8_20.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1704946743476_1704946743476_5302a535c87241ed9fd4551ce7ea20a8_20 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1704946743851_1704946743851_181b91f643c54a1bafd20b1567e56ff8 │ │ │ ├── shuffled_vector_ids │ │ │ │ ├── __commits │ │ │ │ │ └── __1704946743476_1704946743476_9d74eee69e0b46f286c2235dd73bbe66_20.wrt │ │ │ │ ├── __fragments │ │ │ │ │ └── __1704946743476_1704946743476_9d74eee69e0b46f286c2235dd73bbe66_20 │ │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ │ └── __1704946743850_1704946743850_289161c26e7a4060938549c96473bda8 │ │ │ └── shuffled_vectors │ │ │ │ ├── __commits │ │ │ │ └── __1704946743476_1704946743476_d93201dc689046448ce9bc31c645de9e_20.wrt │ │ │ │ ├── __fragments │ │ │ │ └── __1704946743476_1704946743476_d93201dc689046448ce9bc31c645de9e_20 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ │ └── __schema │ │ │ │ └── __1704946743849_1704946743849_205c52ce7e534892b63d752bbba4c336 │ │ ├── input_vectors │ │ │ ├── __commits │ │ │ │ └── __1704941147187_1704941147187_8912b4fd99354956acb58444cc5684c9_20.wrt │ │ │ ├── __fragments │ │ │ │ └── __1704941147187_1704941147187_8912b4fd99354956acb58444cc5684c9_20 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1704941147185_1704941147185_f1f11b95086740fe942e074aa3146a0e │ │ └── queries │ │ │ ├── __commits │ │ │ └── __1704941147233_1704941147233_524477fe2df6481ca53be691346989db_20.wrt │ │ │ ├── __fragments │ │ │ └── __1704941147233_1704941147233_524477fe2df6481ca53be691346989db_20 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ └── __1704941147232_1704941147232_dddf2554b4294369b6f297d736cb7b8d │ └── siftsmall │ │ ├── groundtruth │ │ ├── __commits │ │ │ └── __1704498102062_1704498102062_98d37156c3a74737a9ef6aaca80af758_20.wrt │ │ ├── __fragments │ │ │ └── __1704498102062_1704498102062_98d37156c3a74737a9ef6aaca80af758_20 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ └── __schema │ │ │ └── __1704498102061_1704498102061_9ad752f4262246359dc7e881e7ef8bb7 │ │ ├── group │ │ ├── __group │ │ │ └── __1704946751099_1704946751099_ed603a10356245ec9b5ca65c57efe380_2 │ │ ├── __meta │ │ │ ├── __1704946751095_1704946751095_4194545b99e4453cb543f1fdff7ffbc5 │ │ │ └── __1704946756443_1704946756443_af00db841a8b4f729b10ad44e22535d0 │ │ ├── __tiledb_group.tdb │ │ ├── partition_centroids │ │ │ ├── __commits │ │ │ │ └── __1704946748930_1704946748930_6897b9b245a24acc9408a93b6042c17a_20.wrt │ │ │ ├── __fragments │ │ │ │ └── __1704946748930_1704946748930_6897b9b245a24acc9408a93b6042c17a_20 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1704946751096_1704946751096_129c34ca3c094bf99f6278a9eac05f5e │ │ ├── partition_indexes │ │ │ ├── __commits │ │ │ │ └── __1704946748930_1704946748930_d54957d89fd545bcab1b2496dd32b1bb_20.wrt │ │ │ ├── __fragments │ │ │ │ └── __1704946748930_1704946748930_d54957d89fd545bcab1b2496dd32b1bb_20 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1704946751098_1704946751098_864fcb2180534242a99df4f007c06678 │ │ ├── shuffled_vector_ids │ │ │ ├── __commits │ │ │ │ └── __1704946748930_1704946748930_6bbd94bef35c4f0db92e40b5b603a7e2_20.wrt │ │ │ ├── __fragments │ │ │ │ └── __1704946748930_1704946748930_6bbd94bef35c4f0db92e40b5b603a7e2_20 │ │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ │ └── __1704946751098_1704946751098_9204f17f988344f78c78da5d669e5e8a │ │ └── shuffled_vectors │ │ │ ├── __commits │ │ │ └── __1704946748930_1704946748930_ca0137fa2cd04ffd8678957213bff2c7_20.wrt │ │ │ ├── __fragments │ │ │ └── __1704946748930_1704946748930_ca0137fa2cd04ffd8678957213bff2c7_20 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ │ └── __schema │ │ │ └── __1704946751097_1704946751097_52ce0a2289584c149436e7246e4ca0a3 │ │ ├── input_vectors │ │ ├── __commits │ │ │ └── __1706917570007_1706917570007_09907d8e1b464c2584557fec9582b902_21.wrt │ │ ├── __fragments │ │ │ └── __1706917570007_1706917570007_09907d8e1b464c2584557fec9582b902_21 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ └── __schema │ │ │ └── __1706917570006_1706917570006_4ae666b2df0a47ed9ddf753441f226fb │ │ ├── partition_centroids │ │ ├── __commits │ │ │ └── __1704511154071_1704511154071_daa6c8b0991c437aacd4c3376e9ab933_20.wrt │ │ ├── __fragments │ │ │ └── __1704511154071_1704511154071_daa6c8b0991c437aacd4c3376e9ab933_20 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ └── __schema │ │ │ └── __1704511154070_1704511154070_0b3eafc3914a4b5db58d6feb13690008 │ │ ├── partition_indexes │ │ ├── __commits │ │ │ └── __1704511154196_1704511154196_8ce5015bedb141feaa3aadd74f025232_20.wrt │ │ ├── __fragments │ │ │ └── __1704511154196_1704511154196_8ce5015bedb141feaa3aadd74f025232_20 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ └── __schema │ │ │ └── __1704511154195_1704511154195_651fa309438d40d1bf1d8fb2a3e0182f │ │ ├── queries │ │ ├── __commits │ │ │ └── __1706917570043_1706917570043_1e7ec57e02b94f62ac6bff267eba0c74_21.wrt │ │ ├── __fragments │ │ │ └── __1706917570043_1706917570043_1e7ec57e02b94f62ac6bff267eba0c74_21 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ └── __schema │ │ │ └── __1706917570042_1706917570042_7f38eb0d59ec49228f0dc1ba3a4bc6ec │ │ ├── shuffled_vector_ids │ │ ├── __commits │ │ │ └── __1704511154174_1704511154174_08d289b401f04499a2d298e8e9741d5c_20.wrt │ │ ├── __fragments │ │ │ └── __1704511154174_1704511154174_08d289b401f04499a2d298e8e9741d5c_20 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ └── __schema │ │ │ └── __1704511154172_1704511154172_4d9f0d9e898546fab3cd466957ea6346 │ │ └── shuffled_vectors │ │ ├── __commits │ │ └── __1704511154090_1704511154090_c878d5a906374a5ab2c6fcd404379e5a_20.wrt │ │ ├── __fragments │ │ └── __1704511154090_1704511154090_c878d5a906374a5ab2c6fcd404379e5a_20 │ │ │ ├── __fragment_metadata.tdb │ │ │ └── a0.tdb │ │ └── __schema │ │ └── __1704511154090_1704511154090_94125d2f3ff241fda4b3cc3e24c98611 │ ├── files │ ├── diskann │ │ ├── delete_set_50pts.bin │ │ ├── disk_index_node_data_aligned_reader_truth.bin │ │ ├── disk_index_siftsmall_learn_256pts_R4_L50_A1.2_alligned_reader_test.index │ │ ├── disk_index_siftsmall_learn_256pts_R4_L50_A1.2_disk.index │ │ ├── disk_index_siftsmall_learn_256pts_R4_L50_A1.2_mem.index │ │ ├── siftsmall_learn.bin_pq_compressed.bin │ │ ├── siftsmall_learn.bin_pq_pivots.bin │ │ ├── siftsmall_learn_256pts.fbin │ │ ├── siftsmall_learn_256pts_2.fbin │ │ ├── truth_disk_index_siftsmall_learn_256pts_R4_L50_A1.2_disk.index │ │ ├── truth_index_siftsmall_learn_256pts_1+2_R4_L50_A1.2 │ │ ├── truth_index_siftsmall_learn_256pts_1+2_saturated_R4_L50_A1.2 │ │ ├── truth_index_siftsmall_learn_256pts_R4_L50_A1.2 │ │ └── truth_index_siftsmall_learn_256pts_R4_L50_A1.2.data │ └── siftsmall │ │ ├── groundtruth.ivecs │ │ ├── input_vectors.fvecs │ │ ├── queries.fvecs │ │ └── siftsmall_learn.fvecs │ └── nano │ └── vamana │ ├── vamana_test_index │ ├── __group │ │ └── __1707331479460_1707331479460_48964b13ac6e4ff8bcc2a136f04cf958_2 │ ├── __meta │ │ └── __1707331479420_1707331479420_3d8cd475578649bf85f9a404007234df │ ├── __tiledb_group.tdb │ ├── adjacency_ids │ │ ├── __commits │ │ │ └── __1707331479446_1707331479446_8198337176f048a2a119aeac020ed575_21.wrt │ │ ├── __fragments │ │ │ └── __1707331479446_1707331479446_8198337176f048a2a119aeac020ed575_21 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ └── __schema │ │ │ └── __1707331479446_1707331479446_fa2470a093f244efba784b11af0888e8 │ ├── adjacency_row_index │ │ ├── __commits │ │ │ └── __1707331479451_1707331479451_894dde1fc485427d933fe8dd24b067be_21.wrt │ │ ├── __fragments │ │ │ └── __1707331479451_1707331479451_894dde1fc485427d933fe8dd24b067be_21 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ └── __schema │ │ │ └── __1707331479450_1707331479450_d1619416c44245fd9c6fd471a494f441 │ ├── adjacency_scores │ │ ├── __commits │ │ │ └── __1707331479443_1707331479443_cd803ec13e7b4e458368fe3c84e3b2c8_21.wrt │ │ ├── __fragments │ │ │ └── __1707331479443_1707331479443_cd803ec13e7b4e458368fe3c84e3b2c8_21 │ │ │ │ ├── __fragment_metadata.tdb │ │ │ │ └── a0.tdb │ │ └── __schema │ │ │ └── __1707331479442_1707331479442_33539ea6bb3849a19ded3569de6c68e7 │ └── feature_vectors │ │ ├── __commits │ │ └── __1707331479432_1707331479432_09b160b6e3374b5f86d776769eeb0d12_21.wrt │ │ ├── __fragments │ │ └── __1707331479432_1707331479432_09b160b6e3374b5f86d776769eeb0d12_21 │ │ │ ├── __fragment_metadata.tdb │ │ │ └── a0.tdb │ │ └── __schema │ │ └── __1707331479427_1707331479427_4f0e9b1372d44309b98554ecaeeea46b │ └── vamana_test_index_metadata │ ├── __meta │ └── __1707331479383_1707331479383_bd84cabca43a489a9440cb515fef8d7b │ └── __tiledb_group.tdb ├── pyproject.toml ├── quarto-materials ├── Background-tdb-header.jpg ├── tiledb-logo.png ├── tiledb-logo.svg ├── tiledb.css └── tiledb.scss ├── scripts ├── ci │ └── check_clang_format.sh ├── install_clang_format.sh └── run_clang_format.sh └── src ├── CMakeLists.txt ├── README.md ├── benchmarks ├── .gitignore ├── ann-benchmarks.py ├── awsrc.bash ├── instance_runner.bash ├── ivf_flat_full.bash ├── log_postprocessing.py ├── setup.bash └── vamana │ ├── diskann.bash │ └── vamana.bash ├── cmake ├── .Superbuild.cmake.swo ├── BLAS.cmake ├── Catch2.cmake ├── CompilerFlags.cmake ├── Docopt.cmake ├── Modules │ ├── CheckAVX2Support.cmake │ ├── DownloadPrebuiltTileDB.cmake │ ├── FindClangTools.cmake │ ├── FindTileDB_EP.cmake │ ├── Sanitizer.cmake │ └── TileDBCommon.cmake ├── MultiThreading.cmake ├── Superbuild.cmake ├── logging.cmake ├── mdspan.cmake └── nlohmann_json.cmake ├── include ├── algorithm.h ├── api │ ├── README.md │ ├── api_defs.h │ ├── feature_vector.h │ ├── feature_vector_array.h │ ├── flat_l2_index.h │ ├── ivf_flat_index.h │ ├── ivf_pq_index.h │ └── vamana_index.h ├── concepts.h ├── config.h.in ├── cpos.h ├── detail │ ├── flat │ │ ├── gemm.h │ │ ├── qv.h │ │ └── vq.h │ ├── graph │ │ ├── adj_list.h │ │ ├── best_first.h │ │ ├── bfs.h │ │ ├── diskann.h │ │ ├── graph_utils.h │ │ ├── greedy_search.h │ │ ├── nn-descent.h │ │ └── nn-graph.h │ ├── ivf │ │ ├── dist_qv.h │ │ ├── gemm.h │ │ ├── index.h │ │ ├── partition.h │ │ ├── qv.h │ │ └── vq.h │ ├── linalg │ │ ├── choose_blas.h │ │ ├── compat.h │ │ ├── linalg_defs.h │ │ ├── matrix.h │ │ ├── matrix_with_ids.h │ │ ├── partitioned_matrix.h │ │ ├── set.h │ │ ├── tdb_helpers.h │ │ ├── tdb_io.h │ │ ├── tdb_matrix.h │ │ ├── tdb_matrix_multi_range.h │ │ ├── tdb_matrix_with_ids.h │ │ ├── tdb_partitioned_matrix.h │ │ ├── tdb_vector.h │ │ └── vector.h │ ├── scoring │ │ ├── README.md │ │ ├── cosine.h │ │ ├── cosine_avx.h │ │ ├── cosine_blas.h │ │ ├── inner_product.h │ │ ├── inner_product_avx.h │ │ ├── inner_product_blas.h │ │ ├── l2_distance.h │ │ ├── l2_distance_avx.h │ │ └── l2_distance_blas.h │ └── time │ │ └── temporal_policy.h ├── execution_policy.h ├── functional.h ├── index │ ├── README │ │ ├── IVF.md │ │ ├── PQ.md │ │ └── VAMANA.md │ ├── flat_l2_index.h │ ├── flat_pq_index.h │ ├── index_defs.h │ ├── index_group.h │ ├── index_metadata.h │ ├── ivf_flat_group.h │ ├── ivf_flat_index.h │ ├── ivf_flat_metadata.h │ ├── ivf_pq_group.h │ ├── ivf_pq_index.h │ ├── ivf_pq_metadata.h │ ├── kmeans.h │ ├── vamana_group.h │ ├── vamana_index.h │ └── vamana_metadata.h ├── linalg.h ├── scoring.h ├── stats.h ├── tdb_defs.h ├── test │ ├── CMakeLists.txt │ ├── notebooks │ │ ├── README.md │ │ └── gen_vamana_metadata.ipynb │ ├── time_l2.cc │ ├── time_scoring.cc │ ├── unit_adj_list.cc │ ├── unit_algorithm.cc │ ├── unit_api_feature_vector.cc │ ├── unit_api_feature_vector_array.cc │ ├── unit_api_flat_l2_index.cc │ ├── unit_api_ivf_flat_index.cc │ ├── unit_api_ivf_pq_index.cc │ ├── unit_api_vamana_index.cc │ ├── unit_array_defs.cc │ ├── unit_backwards_compatibility.cc │ ├── unit_best_first.cc │ ├── unit_concepts.cc │ ├── unit_concepts_vs.cc │ ├── unit_cpos.cc │ ├── unit_execution_policy.cc │ ├── unit_fixed_min_heap.cc │ ├── unit_flat_l2_index.cc │ ├── unit_flat_pq_index.cc │ ├── unit_flat_qv.cc │ ├── unit_flat_vq.cc │ ├── unit_gemm.cc │ ├── unit_gen_graphs.cc │ ├── unit_index_defs.cc │ ├── unit_inner_product_distance.cc │ ├── unit_ivf_flat_group.cc │ ├── unit_ivf_flat_index.cc │ ├── unit_ivf_flat_metadata.cc │ ├── unit_ivf_pq_group.cc │ ├── unit_ivf_pq_index.cc │ ├── unit_ivf_pq_metadata.cc │ ├── unit_ivf_qv.cc │ ├── unit_ivf_vq.cc │ ├── unit_kmeans.cc │ ├── unit_l2_distance.cc │ ├── unit_linalg.cc │ ├── unit_logging_count.cc │ ├── unit_logging_memory.cc │ ├── unit_logging_scoped_time.cc │ ├── unit_logging_time.cc │ ├── unit_matrix.cc │ ├── unit_matrix_with_ids.cc │ ├── unit_mdspan.cc │ ├── unit_memory.cc │ ├── unit_nn-descent.cc │ ├── unit_nn-graph.cc │ ├── unit_partition.cc │ ├── unit_partitioned_matrix.cc │ ├── unit_prng.cc │ ├── unit_queries.cc │ ├── unit_scoring.cc │ ├── unit_seeder.cc │ ├── unit_slicing.cc │ ├── unit_stats.cc │ ├── unit_stl.cc │ ├── unit_tdb_io.cc │ ├── unit_tdb_matrix.cc │ ├── unit_tdb_matrix_multi_range.cc │ ├── unit_tdb_matrix_with_ids.cc │ ├── unit_tdb_partitioned_matrix.cc │ ├── unit_utils.cc │ ├── unit_vamana_group.cc │ ├── unit_vamana_index.cc │ ├── unit_vamana_metadata.cc │ ├── unit_vector.cc │ └── utils │ │ ├── array_defs.h │ │ ├── gen_graphs.h │ │ ├── query_common.h │ │ ├── randomize.h │ │ ├── set_seed_from_catch.h │ │ ├── test_utils.h │ │ └── tiny_graphs.h └── utils │ ├── fixed_min_heap.h │ ├── logging_count.h │ ├── logging_memory.h │ ├── logging_scoped_time.h │ ├── logging_time.h │ ├── print_types.h │ ├── prng.h │ ├── seeder.h │ ├── timer.h │ └── utils.h └── src ├── CMakeLists.txt ├── README.md ├── flat ├── CMakeLists.txt ├── flat_l2.cc └── ivf_flat.cc ├── ivf ├── CMakeLists.txt ├── README.md ├── ivf_index.cc └── ivf_query.cc └── vamana ├── CMakeLists.txt ├── vamana_index.cc └── vamana_query.cc /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/.clang-format -------------------------------------------------------------------------------- /.git_archival.txt: -------------------------------------------------------------------------------- 1 | ref-names: HEAD -> main, tag: 0.16.0 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .git_archival.txt export-subst 2 | *.qmd linguist-language=RMarkdown 3 | -------------------------------------------------------------------------------- /.github/workflows/build-wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/.github/workflows/build-wheels.yml -------------------------------------------------------------------------------- /.github/workflows/check-formatting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/.github/workflows/check-formatting.yml -------------------------------------------------------------------------------- /.github/workflows/ci-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/.github/workflows/ci-python.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/quarto-render.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/.github/workflows/quarto-render.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/README.md -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/_quarto.yml -------------------------------------------------------------------------------- /apis/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/CMakeLists.txt -------------------------------------------------------------------------------- /apis/python/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/MANIFEST.in -------------------------------------------------------------------------------- /apis/python/README.md: -------------------------------------------------------------------------------- 1 | ../../README.md -------------------------------------------------------------------------------- /apis/python/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/environment.yml -------------------------------------------------------------------------------- /apis/python/examples/object_api/bioimg_similarity_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/examples/object_api/bioimg_similarity_search.ipynb -------------------------------------------------------------------------------- /apis/python/examples/object_api/image_search_from_directory.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/examples/object_api/image_search_from_directory.ipynb -------------------------------------------------------------------------------- /apis/python/examples/object_api/image_search_from_tiledb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/examples/object_api/image_search_from_tiledb.ipynb -------------------------------------------------------------------------------- /apis/python/examples/object_api/multi_modal_pdf_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/examples/object_api/multi_modal_pdf_search.ipynb -------------------------------------------------------------------------------- /apis/python/examples/object_api/soma_cell_similarity_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/examples/object_api/soma_cell_similarity_search.ipynb -------------------------------------------------------------------------------- /apis/python/examples/object_api/text_search_documents.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/examples/object_api/text_search_documents.ipynb -------------------------------------------------------------------------------- /apis/python/examples/object_api/text_search_wikipedia.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/examples/object_api/text_search_wikipedia.ipynb -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/__init__.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/embeddings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/embeddings/__init__.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/embeddings/colpali_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/embeddings/colpali_embedding.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/embeddings/huggingface_auto_image_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/embeddings/huggingface_auto_image_embedding.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/embeddings/image_resnetv2_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/embeddings/image_resnetv2_embedding.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/embeddings/langchain_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/embeddings/langchain_embedding.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/embeddings/object_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/embeddings/object_embedding.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/embeddings/random_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/embeddings/random_embedding.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/embeddings/sentence_transformers_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/embeddings/sentence_transformers_embedding.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/embeddings/soma_geneptw_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/embeddings/soma_geneptw_embedding.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/embeddings/soma_scgpt_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/embeddings/soma_scgpt_embedding.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/embeddings/soma_scvi_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/embeddings/soma_scvi_embedding.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/flat_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/flat_index.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/index.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/ingestion.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/ivf_flat_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/ivf_flat_index.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/ivf_pq_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/ivf_pq_index.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/kmeans.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/kmeans.cc -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/module.cc -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/module.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/object_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/object_api/__init__.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/object_api/embeddings_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/object_api/embeddings_ingestion.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/object_api/object_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/object_api/object_index.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/object_readers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/object_readers/__init__.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/object_readers/bioimage_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/object_readers/bioimage_reader.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/object_readers/directory_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/object_readers/directory_reader.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/object_readers/object_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/object_readers/object_reader.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/object_readers/soma_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/object_readers/soma_reader.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/object_readers/tiledb_1d_array_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/object_readers/tiledb_1d_array_reader.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/storage_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/storage_formats.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/type_erased_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/type_erased_module.cc -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/utils.py -------------------------------------------------------------------------------- /apis/python/src/tiledb/vector_search/vamana_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/src/tiledb/vector_search/vamana_index.py -------------------------------------------------------------------------------- /apis/python/test/array_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/array_paths.py -------------------------------------------------------------------------------- /apis/python/test/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/common.py -------------------------------------------------------------------------------- /apis/python/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/conftest.py -------------------------------------------------------------------------------- /apis/python/test/ipynb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/ipynb/README.md -------------------------------------------------------------------------------- /apis/python/test/ipynb/image-search-dashboard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/ipynb/image-search-dashboard.ipynb -------------------------------------------------------------------------------- /apis/python/test/ipynb/requirements.txt: -------------------------------------------------------------------------------- 1 | efficientnet 2 | ipywidgets 3 | panel 4 | tensorflow 5 | -------------------------------------------------------------------------------- /apis/python/test/ipynb/staging-vector-search-checks-py.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/ipynb/staging-vector-search-checks-py.ipynb -------------------------------------------------------------------------------- /apis/python/test/ipynb/tiledb_101_vector_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/ipynb/tiledb_101_vector_search.ipynb -------------------------------------------------------------------------------- /apis/python/test/local-benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/local-benchmarks.py -------------------------------------------------------------------------------- /apis/python/test/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/test_api.py -------------------------------------------------------------------------------- /apis/python/test/test_backwards_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/test_backwards_compatibility.py -------------------------------------------------------------------------------- /apis/python/test/test_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/test_cloud.py -------------------------------------------------------------------------------- /apis/python/test/test_directory_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/test_directory_reader.py -------------------------------------------------------------------------------- /apis/python/test/test_distance_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/test_distance_metrics.py -------------------------------------------------------------------------------- /apis/python/test/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/test_index.py -------------------------------------------------------------------------------- /apis/python/test/test_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/test_ingestion.py -------------------------------------------------------------------------------- /apis/python/test/test_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/test_module.py -------------------------------------------------------------------------------- /apis/python/test/test_object_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/test_object_index.py -------------------------------------------------------------------------------- /apis/python/test/test_type_erased_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/test_type_erased_module.py -------------------------------------------------------------------------------- /apis/python/test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/apis/python/test/test_utils.py -------------------------------------------------------------------------------- /backwards-compatibility-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/README.md -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.10/flat_float32/__meta/__1707752073618_1707752073618_89e72e1f1f454bfb9dbfeec7f80be57c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.10/flat_float32/__meta/__1707752073618_1707752073618_89e72e1f1f454bfb9dbfeec7f80be57c -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.10/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.10/flat_uint8/__meta/__1707752073648_1707752073648_8a467c33edc8449390e6a5e760eda84a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.10/flat_uint8/__meta/__1707752073648_1707752073648_8a467c33edc8449390e6a5e760eda84a -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.10/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.10/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.10/ivf_flat_float32/centroids.tdb/__commits/__1707752074278_1707752074278_fc85ee3258754b1c832cf377905982dc_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.10/ivf_flat_float32/index.tdb/__commits/__1707752074501_1707752074501_7163a46737754586aecaa432433cba3d_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.10/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.10/ivf_flat_uint8/centroids.tdb/__commits/__1707752074550_1707752074550_b5c6a112d8324187a1eede3acfb841a1_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.10/ivf_flat_uint8/index.tdb/__commits/__1707752074579_1707752074579_699ea5a1d24d4c5f83b1a4d2a55bdf90_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.17/flat_float32/__meta/__1707750629881_1707750629881_da62baf6acb945d3bafdc51876cd758f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.17/flat_float32/__meta/__1707750629881_1707750629881_da62baf6acb945d3bafdc51876cd758f -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.17/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.17/flat_float32/shuffled_vector_ids_02_12_2024_16_10_29/__commits/__1707750629906_1707750629906_91a0ffea737c496daee855e9fe8af736_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.17/flat_uint8/__meta/__1707750629925_1707750629925_82cbefe1f55348b490400fe3a38d726d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.17/flat_uint8/__meta/__1707750629925_1707750629925_82cbefe1f55348b490400fe3a38d726d -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.17/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.17/flat_uint8/shuffled_vector_ids_02_12_2024_16_10_29/__commits/__1707750629939_1707750629939_04355f4446dc41e19daad291b8afbdbd_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.17/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.17/ivf_flat_float32/partition_centroids_02_12_2024_16_10_29/__commits/__1707750630608_1707750630608_bf853bd2c0014c108bff5faf07b68191_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.17/ivf_flat_float32/partition_indexes_02_12_2024_16_10_29/__commits/__1707750630790_1707750630790_886d38a0ae7543ba91299cae7825b055_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.17/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.17/ivf_flat_uint8/partition_centroids_02_12_2024_16_10_30/__commits/__1707750630867_1707750630867_ee4a9a8825994dbbbbaf53d27d2eaad2_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.17/ivf_flat_uint8/partition_indexes_02_12_2024_16_10_30/__commits/__1707750630899_1707750630899_782dac7705a44071bea4ed033b622019_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/flat_float32/__meta/__1707751776282_1707751776282_d8f82393dd974ecc99a2b4b46b5f6bc4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.21/flat_float32/__meta/__1707751776282_1707751776282_d8f82393dd974ecc99a2b4b46b5f6bc4 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/flat_float32/__meta/__1707751776298_1707751776298_c1f351554dc64da693d8a29daae72410: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.21/flat_float32/__meta/__1707751776298_1707751776298_c1f351554dc64da693d8a29daae72410 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/flat_float32/__meta/__1707751776337_1707751776337_2186013aa07740078730e3abc6812739: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.21/flat_float32/__meta/__1707751776337_1707751776337_2186013aa07740078730e3abc6812739 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/flat_float32/__meta/__1707751776338_1707751776338_97d3edf62f1d49e288e3ded9b0d27170: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.21/flat_float32/__meta/__1707751776338_1707751776338_97d3edf62f1d49e288e3ded9b0d27170 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/flat_uint8/__meta/__1707751776363_1707751776363_336dac60aa894acd803d886cdf1c1f85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.21/flat_uint8/__meta/__1707751776363_1707751776363_336dac60aa894acd803d886cdf1c1f85 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/flat_uint8/__meta/__1707751776368_1707751776368_9f178649a6ba4fbfb1b0f971fc910a6a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.21/flat_uint8/__meta/__1707751776368_1707751776368_9f178649a6ba4fbfb1b0f971fc910a6a -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/flat_uint8/__meta/__1707751776402_1707751776402_84b93822933c4daaa90814f9e628e8f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.21/flat_uint8/__meta/__1707751776402_1707751776402_84b93822933c4daaa90814f9e628e8f1 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/flat_uint8/__meta/__1707751776403_1707751776403_c9c46a600d4d4c3297962b09dabca927: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.21/flat_uint8/__meta/__1707751776403_1707751776403_c9c46a600d4d4c3297962b09dabca927 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/ivf_flat_float32/partition_centroids/__commits/__1707751777074_1707751777074_10761ec3337a4c3aa8af73b2635d6b19_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/ivf_flat_float32/partition_indexes/__commits/__1707751777306_1707751777306_0196e677b4c94d6cb749cbe149de7c6c_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/ivf_flat_uint8/partition_centroids/__commits/__1707751777403_1707751777403_aa0383445d6e489f90e5bf4626ac7f6f_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.21/ivf_flat_uint8/partition_indexes/__commits/__1707751777465_1707751777465_eb7523e4760248c2aee05b37522e4a91_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/flat_float32/__meta/__1709222107569_1709222107569_d49e9e2eea5d4212bd44df32f4097860: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.22/flat_float32/__meta/__1709222107569_1709222107569_d49e9e2eea5d4212bd44df32f4097860 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/flat_float32/__meta/__1709222107581_1709222107581_223551694e134f1a8b58a8559333e487: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.22/flat_float32/__meta/__1709222107581_1709222107581_223551694e134f1a8b58a8559333e487 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/flat_float32/__meta/__1709222107645_1709222107645_0c4f1743c1a84ac19d71b2e137471093: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.22/flat_float32/__meta/__1709222107645_1709222107645_0c4f1743c1a84ac19d71b2e137471093 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/flat_float32/__meta/__1709222107647_1709222107647_01021d1ab7ca464f92f45063f7d55a65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.22/flat_float32/__meta/__1709222107647_1709222107647_01021d1ab7ca464f92f45063f7d55a65 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/flat_uint8/__meta/__1709222107683_1709222107683_35c75b3553a4438385f3942af9a52634: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.22/flat_uint8/__meta/__1709222107683_1709222107683_35c75b3553a4438385f3942af9a52634 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/flat_uint8/__meta/__1709222107690_1709222107690_0fc25d8b973244d4aa4c240cf47c3f8e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.22/flat_uint8/__meta/__1709222107690_1709222107690_0fc25d8b973244d4aa4c240cf47c3f8e -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/flat_uint8/__meta/__1709222107753_1709222107753_b09cfe4fccf34855a966b99ad9be2f00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.22/flat_uint8/__meta/__1709222107753_1709222107753_b09cfe4fccf34855a966b99ad9be2f00 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/flat_uint8/__meta/__1709222107754_1709222107754_81512222bfee49cb89b0a6aec0c78e3a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.22/flat_uint8/__meta/__1709222107754_1709222107754_81512222bfee49cb89b0a6aec0c78e3a -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/ivf_flat_float32/partition_centroids/__commits/__1709222108738_1709222108738_8505735551de4702928353c1934672e4_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/ivf_flat_float32/partition_indexes/__commits/__1709222108865_1709222108865_dacbdbdc3b8b450f9bc2b8ef4d6e9da8_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/ivf_flat_uint8/partition_centroids/__commits/__1709222108989_1709222108989_fa821bd5fb264b8c80f405f4212c7f73_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.22/ivf_flat_uint8/partition_indexes/__commits/__1709222109060_1709222109060_d9f4e6dc36e04a5690fa5a811f1352a5_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/flat_float32/__meta/__1709639933068_1709639933068_a485b2ee0be745bcbff3efba49872a5d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.23/flat_float32/__meta/__1709639933068_1709639933068_a485b2ee0be745bcbff3efba49872a5d -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/flat_float32/__meta/__1709639933080_1709639933080_05e8ae499f4742168c957d75006b591f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.23/flat_float32/__meta/__1709639933080_1709639933080_05e8ae499f4742168c957d75006b591f -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/flat_float32/__meta/__1709639933138_1709639933138_efe0b3321ee14a318a15623b476a5214: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.23/flat_float32/__meta/__1709639933138_1709639933138_efe0b3321ee14a318a15623b476a5214 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/flat_float32/__meta/__1709639933140_1709639933140_27276a66c1c84461b7499ae83d3cff09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.23/flat_float32/__meta/__1709639933140_1709639933140_27276a66c1c84461b7499ae83d3cff09 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/flat_uint8/__meta/__1709639933172_1709639933172_0163572869734d42b6873a83224954a8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.23/flat_uint8/__meta/__1709639933172_1709639933172_0163572869734d42b6873a83224954a8 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/flat_uint8/__meta/__1709639933179_1709639933179_2040cd27f0c241eebaf06d10fd80ceb7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.23/flat_uint8/__meta/__1709639933179_1709639933179_2040cd27f0c241eebaf06d10fd80ceb7 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/flat_uint8/__meta/__1709639933241_1709639933241_d4e2cb0a53464be3a3fefb887f857ee0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.23/flat_uint8/__meta/__1709639933241_1709639933241_d4e2cb0a53464be3a3fefb887f857ee0 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/flat_uint8/__meta/__1709639933243_1709639933243_a04287d4d3cc43479068c23d690eaa4c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.0.23/flat_uint8/__meta/__1709639933243_1709639933243_a04287d4d3cc43479068c23d690eaa4c -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/ivf_flat_float32/partition_centroids/__commits/__1709639933900_1709639933900_6ee8c71ec7344554b3ca051a2d08550d_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/ivf_flat_float32/partition_indexes/__commits/__1709639934032_1709639934032_c9987c83572342888b46bc4ffae7d905_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/ivf_flat_uint8/partition_centroids/__commits/__1709639934157_1709639934157_0f4a697b44b24649909c0e3c392d622f_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.0.23/ivf_flat_uint8/partition_indexes/__commits/__1709639934232_1709639934232_123d7582b4d54d59a1444f6e367fed01_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/flat_float32/__meta/__1708115904922_1708115904922_adac57ea17104e1c9a8e2aab872b6899: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.0/flat_float32/__meta/__1708115904922_1708115904922_adac57ea17104e1c9a8e2aab872b6899 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/flat_float32/__meta/__1708115904934_1708115904934_12e14643efef4a9681b4787d415aa8d5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.0/flat_float32/__meta/__1708115904934_1708115904934_12e14643efef4a9681b4787d415aa8d5 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/flat_float32/__meta/__1708115905009_1708115905009_2f62fa8961be4a2aa79fa08877cb8a96: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.0/flat_float32/__meta/__1708115905009_1708115905009_2f62fa8961be4a2aa79fa08877cb8a96 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/flat_float32/__meta/__1708115905011_1708115905011_f9e318f483344d39867efb8ad6d4cf8a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.0/flat_float32/__meta/__1708115905011_1708115905011_f9e318f483344d39867efb8ad6d4cf8a -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/flat_uint8/__group/__1708115905062_1708115905062_8175c224fe0548268996e7eb7eb61a40_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.0/flat_uint8/__group/__1708115905062_1708115905062_8175c224fe0548268996e7eb7eb61a40_2 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/flat_uint8/__group/__1708115905067_1708115905067_d1d3da1a9a094a3794e5cc96b1acb8da_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.0/flat_uint8/__group/__1708115905067_1708115905067_d1d3da1a9a094a3794e5cc96b1acb8da_2 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/flat_uint8/__meta/__1708115905047_1708115905047_44b525af3db84c41a6cc23ad49b64f3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.0/flat_uint8/__meta/__1708115905047_1708115905047_44b525af3db84c41a6cc23ad49b64f3d -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/flat_uint8/__meta/__1708115905055_1708115905055_d260a10f915c4048b757c21160601d2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.0/flat_uint8/__meta/__1708115905055_1708115905055_d260a10f915c4048b757c21160601d2c -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/flat_uint8/__meta/__1708115905123_1708115905123_6db6f4a9536a4a7d90f4c486ad235851: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.0/flat_uint8/__meta/__1708115905123_1708115905123_6db6f4a9536a4a7d90f4c486ad235851 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/flat_uint8/__meta/__1708115905126_1708115905126_b0bd3bc51b53446facf2a208b6f5f36a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.0/flat_uint8/__meta/__1708115905126_1708115905126_b0bd3bc51b53446facf2a208b6f5f36a -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/ivf_flat_float32/partition_centroids/__commits/__1708115905745_1708115905745_db421bd366d2445a8422d9cb595584d6_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/ivf_flat_float32/partition_indexes/__commits/__1708115905876_1708115905876_f4eecd0594d3410aa6fa3211559d2d85_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/ivf_flat_uint8/partition_centroids/__commits/__1708115906006_1708115906006_c82fa505823d447586aa3e18275ad5ac_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.0/ivf_flat_uint8/partition_indexes/__commits/__1708115906092_1708115906092_4ce44abe232d4671b1e6ac2e0a80fa2d_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/flat_float32/__meta/__1711629398699_1711629398699_1d0682b3bf1c49a3807c4efe4b4c2bd8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.3/flat_float32/__meta/__1711629398699_1711629398699_1d0682b3bf1c49a3807c4efe4b4c2bd8 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/flat_float32/__meta/__1711629398711_1711629398711_9aa9fa6c8d654b038f69448ea22ddc79: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.3/flat_float32/__meta/__1711629398711_1711629398711_9aa9fa6c8d654b038f69448ea22ddc79 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/flat_float32/__meta/__1711629398777_1711629398777_f3f2afda90ec434fb46e53bf062c20c2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.3/flat_float32/__meta/__1711629398777_1711629398777_f3f2afda90ec434fb46e53bf062c20c2 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/flat_float32/__meta/__1711629398779_1711629398779_7337d1319c824e419edad02f5194517a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.3/flat_float32/__meta/__1711629398779_1711629398779_7337d1319c824e419edad02f5194517a -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/flat_uint8/__group/__1711629398825_1711629398825_eb06bbcec6fa4357b27117cc86aa9119_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.3/flat_uint8/__group/__1711629398825_1711629398825_eb06bbcec6fa4357b27117cc86aa9119_2 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/flat_uint8/__group/__1711629398831_1711629398831_50d1a315fede4b6c8293a989dc7f144d_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.3/flat_uint8/__group/__1711629398831_1711629398831_50d1a315fede4b6c8293a989dc7f144d_2 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/flat_uint8/__meta/__1711629398812_1711629398812_447090e34391484babce4081159d2931: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.3/flat_uint8/__meta/__1711629398812_1711629398812_447090e34391484babce4081159d2931 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/flat_uint8/__meta/__1711629398820_1711629398820_03025b1cbdad4f948b244ffa27658614: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.3/flat_uint8/__meta/__1711629398820_1711629398820_03025b1cbdad4f948b244ffa27658614 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/flat_uint8/__meta/__1711629398881_1711629398881_77a74157e5b2461bbd34a6223b1b5743: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.3/flat_uint8/__meta/__1711629398881_1711629398881_77a74157e5b2461bbd34a6223b1b5743 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/flat_uint8/__meta/__1711629398883_1711629398883_e2798ba8543742a7b6105c65aa2dbb5d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.1.3/flat_uint8/__meta/__1711629398883_1711629398883_e2798ba8543742a7b6105c65aa2dbb5d -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/ivf_flat_float32/partition_centroids/__commits/__1711629399649_1711629399649_967cb51e19f741ecb71ead443b834cce_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/ivf_flat_float32/partition_indexes/__commits/__1711629399779_1711629399779_d3b59fa4319f40c1b6ee8d7228799dc6_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/ivf_flat_uint8/partition_centroids/__commits/__1711629399907_1711629399907_daadfc03677a458985e5c1eca989f6b8_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.1.3/ivf_flat_uint8/partition_indexes/__commits/__1711629399980_1711629399980_e5e8918dc02a496992714f484e21f51e_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/flat_float32/__meta/__1727090162496_1727090162496_0000000344424a97b25be31ad61d32aa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.10.0/flat_float32/__meta/__1727090162496_1727090162496_0000000344424a97b25be31ad61d32aa -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/ivf_flat_float32/partition_centroids/__commits/__1727090162699_1727090162699_039d56b137f92b838f0bfef5d39e7981_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/ivf_flat_float32/partition_indexes/__commits/__1727090162699_1727090162699_67a162dcb85c735c655b8ec7c8c27d6e_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/ivf_flat_uint8/partition_centroids/__commits/__1727090163656_1727090163656_6ed4cbea328afc6938f704e7de669375_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/ivf_flat_uint8/partition_indexes/__commits/__1727090163656_1727090163656_4887f14122cf64522433433dfb679624_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/vamana_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/vamana_float32/adjacency_ids/__commits/__1727090163861_1727090163861_22e67c30690b0a0bdd4aa4f554ddfa8d_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/vamana_float32/adjacency_row_index/__commits/__1727090163861_1727090163861_4f32597813af2300b67d337dbaa12aa1_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/vamana_float32/adjacency_scores/__commits/__1727090163861_1727090163861_712e1d3945f1f9199a8f89c3b7d8ddc3_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/vamana_float32/shuffled_vector_ids/__commits/__1727090163861_1727090163861_11bcd9d7e0f1584c23dd2afeec1b6462_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/vamana_float32/shuffled_vectors/__commits/__1727090163861_1727090163861_0c4773023f87439c96a7f79d17b1697a_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/vamana_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/vamana_uint8/adjacency_ids/__commits/__1727090164023_1727090164023_6eff7a21126448378c00d65f4ff4ffa8_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/vamana_uint8/adjacency_row_index/__commits/__1727090164023_1727090164023_63aaf150525f81f49e3467ee62e23ef1_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/vamana_uint8/adjacency_scores/__commits/__1727090164023_1727090164023_74884760a1028685f1b9943fdb655fdd_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/vamana_uint8/shuffled_vector_ids/__commits/__1727090164023_1727090164023_7ac1f540e95ea6fe123a503e2c07637d_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.10.0/vamana_uint8/shuffled_vectors/__commits/__1727090164023_1727090164023_1f8cbda9912582c09ca19d5abf047c87_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/flat_float32/shuffled_vector_ids/__commits/__1747189594231_1747189594231_0de18c4a2d0aea99cf1d0acaa09f7ddb_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/flat_float32/shuffled_vectors/__commits/__1747189594231_1747189594231_1c3e49c103f1e4a2df454754a2e47bd2_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/flat_uint8/shuffled_vector_ids/__commits/__1747189594326_1747189594326_15977e5b12bdf8ee878820a7b7306248_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/flat_uint8/shuffled_vectors/__commits/__1747189594326_1747189594326_72849e5468ec6a2a99ec97ec9ff32f74_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_flat_float32/partition_centroids/__commits/__1747189594425_1747189594425_5784126062b2322f2d7d0772fc3cbd97_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_flat_float32/partition_indexes/__commits/__1747189594425_1747189594425_6266595fb39cb6f724b79dbd374116e4_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_flat_float32/shuffled_vector_ids/__commits/__1747189594425_1747189594425_34292b1ea48fb285fff186f1b4ff1767_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_flat_float32/shuffled_vectors/__commits/__1747189594425_1747189594425_2292e1244baed7a916fed9379f1793a1_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_flat_uint8/partition_centroids/__commits/__1747189595664_1747189595664_1e2755867233c244b9e06ecec019d216_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_flat_uint8/partition_indexes/__commits/__1747189595664_1747189595664_36c8243819f726c17e8ad544af3ecfa3_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_flat_uint8/shuffled_vector_ids/__commits/__1747189595664_1747189595664_75fe70e0e50b4b9eecd4175b38b95ca4_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_flat_uint8/shuffled_vectors/__commits/__1747189595664_1747189595664_04da2e7bb26770e5e00154d44cd58c97_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_float32/partition_centroids/__commits/__1747189596196_1747189596196_17bffbfab90a4269eeaa0a3ad088f00e_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_float32/partition_indexes/__commits/__1747189596196_1747189596196_6b27a65bee445fb38e158f4fbed4e418_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_float32/partitioned_pq_vectors/__commits/__1747189596196_1747189596196_4ce2cc40336f4404858009deebcd4512_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_float32/pq_subspace_centroids/__commits/__1747189596196_1747189596196_48b5550e91694a7276b1e56d9f1eae73_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_float32/shuffled_vector_ids/__commits/__1747189596196_1747189596196_68e49194e88321e780022c15fa7749ca_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_float32/shuffled_vector_ids/__commits/__1747189596196_1747189596196_6e991c59ecfe902f02c0b9486588151c_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_float32/shuffled_vectors/__commits/__1747189596196_1747189596196_413060d3df73e5b17c2cf85934bca5f1_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_uint8/partition_centroids/__commits/__1747189596486_1747189596486_3ff8bbeb62520b0e22d3759c75831072_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_uint8/partition_indexes/__commits/__1747189596486_1747189596486_377fdc43865fb700bce42d521112d4bb_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_uint8/partitioned_pq_vectors/__commits/__1747189596486_1747189596486_3ae082c11e947737294868ed2e9d857f_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_uint8/pq_subspace_centroids/__commits/__1747189596486_1747189596486_7149fd06b185755d99b6f668a629a045_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_uint8/shuffled_vector_ids/__commits/__1747189596486_1747189596486_5a3edd7877244360b886d37e2b9396dc_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_uint8/shuffled_vector_ids/__commits/__1747189596486_1747189596486_5a517a17af6a9206fd89ed8ad335bda4_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/ivf_pq_uint8/shuffled_vectors/__commits/__1747189596486_1747189596486_5fb0a03a5f2bd54c408644107bfaf5b9_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/vamana_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/vamana_float32/adjacency_ids/__commits/__1747189595873_1747189595873_5d8850fba04b68ab39061e5afdcb461e_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/vamana_float32/adjacency_row_index/__commits/__1747189595873_1747189595873_349d508e3307ddeb214a859e2d494d0d_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/vamana_float32/adjacency_scores/__commits/__1747189595873_1747189595873_74a60ba54173b22063bb8595a918ea78_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/vamana_float32/shuffled_vector_ids/__commits/__1747189595873_1747189595873_271bda9cd472bd6c4acdb6400f83a0ae_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/vamana_float32/shuffled_vectors/__commits/__1747189595873_1747189595873_25a0ceaacc3187812ec973dccce4f1fb_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/vamana_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/vamana_uint8/adjacency_ids/__commits/__1747189596032_1747189596032_7dbda68a5ca525ae6a0600a31cf10369_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/vamana_uint8/adjacency_row_index/__commits/__1747189596032_1747189596032_18df066b07bfc89a4b33a2a86cd7534f_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/vamana_uint8/adjacency_scores/__commits/__1747189596032_1747189596032_564b24f79b4fadc6d40d7b6a58a4cdce_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/vamana_uint8/shuffled_vector_ids/__commits/__1747189596032_1747189596032_2e1837b0fb694172dbba0fa168ec58d3_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.13.0/vamana_uint8/shuffled_vectors/__commits/__1747189596032_1747189596032_2247c84e2c7a976d97c6cb3619b15a8b_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/flat_float32/shuffled_vector_ids/__commits/__1760962745973_1760962745973_6622515603f18b8518c582ec3024c5e9_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/flat_float32/shuffled_vectors/__commits/__1760962745973_1760962745973_24f4340b12d09f01372bd2411d189b9a_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/flat_uint8/shuffled_vector_ids/__commits/__1760962746074_1760962746074_3ce2576a6925a2e958f1d6649b3b958c_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/flat_uint8/shuffled_vectors/__commits/__1760962746074_1760962746074_3cd33ecdbdc98bc6d01ffeac96a188de_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_flat_float32/partition_centroids/__commits/__1760962746163_1760962746163_5fdda09012f6d86f3f97a905c50c190b_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_flat_float32/partition_indexes/__commits/__1760962746163_1760962746163_20fdbf11e3b4b05ff786e530a5cb7334_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_flat_float32/shuffled_vector_ids/__commits/__1760962746163_1760962746163_0309f1fc1930f9d591d4dadaae4b235e_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_flat_float32/shuffled_vectors/__commits/__1760962746163_1760962746163_0648e8b28a576a39131f2ec2541faf5e_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_flat_uint8/partition_centroids/__commits/__1760962747564_1760962747564_4d77427226fef894991426741822b152_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_flat_uint8/partition_indexes/__commits/__1760962747564_1760962747564_69d020836b3a5065cfe9b15fd58494e0_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_flat_uint8/shuffled_vector_ids/__commits/__1760962747564_1760962747564_7b8ca7131c133699a172cd89fc9c79b9_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_flat_uint8/shuffled_vectors/__commits/__1760962747564_1760962747564_4e956e49deb1c5fec179d1837ee79be7_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_float32/partition_centroids/__commits/__1760962748115_1760962748115_0af81fbf1b9e4764c60b248db62dc05f_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_float32/partition_indexes/__commits/__1760962748115_1760962748115_692f3a28a20b708b69a0994bfa39889f_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_float32/partitioned_pq_vectors/__commits/__1760962748115_1760962748115_481d03e1f335802b4f005d107373ede3_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_float32/pq_subspace_centroids/__commits/__1760962748115_1760962748115_0867cb02e6877218641a55aceb9a44d8_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_float32/shuffled_vector_ids/__commits/__1760962748115_1760962748115_3039bef1a8f70c7292b17b59e78605a7_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_float32/shuffled_vector_ids/__commits/__1760962748115_1760962748115_70c5be4efd0b9453b26e466bed43d260_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_float32/shuffled_vectors/__commits/__1760962748115_1760962748115_1438ea14990a1d6b9bd7f5039c3aa8c2_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_uint8/partition_centroids/__commits/__1760962748420_1760962748420_575c38b53fc422194ce40a758f0ae8ac_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_uint8/partition_indexes/__commits/__1760962748420_1760962748420_20b5752d8ca0160b41692ef519699319_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_uint8/partitioned_pq_vectors/__commits/__1760962748420_1760962748420_37f809a14fefb1b4996e2a8e94b523eb_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_uint8/pq_subspace_centroids/__commits/__1760962748420_1760962748420_5c2c33002b0aca5d9049685d5139d671_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_uint8/shuffled_vector_ids/__commits/__1760962748420_1760962748420_479460634f833a96fda5c9b24fd5f1c4_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_uint8/shuffled_vector_ids/__commits/__1760962748420_1760962748420_52c9e1ae9666825428cd0031e7998c31_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/ivf_pq_uint8/shuffled_vectors/__commits/__1760962748420_1760962748420_30f414b561c2fb684b7baecabc32a07e_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/vamana_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/vamana_float32/adjacency_ids/__commits/__1760962747779_1760962747779_0387bb54cff27e54da30e420b8001361_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/vamana_float32/adjacency_row_index/__commits/__1760962747779_1760962747779_6f809fbd1da59f24f48159fe981ffd0e_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/vamana_float32/adjacency_scores/__commits/__1760962747779_1760962747779_0bc2842f925f56800035a71a54052831_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/vamana_float32/shuffled_vector_ids/__commits/__1760962747779_1760962747779_213abb2ea5210c02c6bb25590e33e4cb_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/vamana_float32/shuffled_vectors/__commits/__1760962747779_1760962747779_2f342ed6d3567f8550ffd40d4383a486_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/vamana_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/vamana_uint8/adjacency_ids/__commits/__1760962747951_1760962747951_4ff44059e47f9e2a71b193386915e846_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/vamana_uint8/adjacency_row_index/__commits/__1760962747951_1760962747951_5a3d553584536a5a91968214f06818b6_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/vamana_uint8/adjacency_scores/__commits/__1760962747951_1760962747951_06385f66ff3a20b113d23f239ceafb1f_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/vamana_uint8/shuffled_vector_ids/__commits/__1760962747951_1760962747951_0aab1975dd39bace468fb76cb386085c_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.15.0/vamana_uint8/shuffled_vectors/__commits/__1760962747951_1760962747951_5ee8ac6be35485f85704084e6da06fc0_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/flat_float32/shuffled_vector_ids/__commits/__1765403507009_1765403507009_1f6b8e9be7cb70f89e3dcd88d234365c_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/flat_float32/shuffled_vectors/__commits/__1765403507009_1765403507009_52d982c25003650bb76a21d84afbe866_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/flat_uint8/shuffled_vector_ids/__commits/__1765403507112_1765403507112_26517ff1f58502d796509e6289045c1d_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/flat_uint8/shuffled_vectors/__commits/__1765403507112_1765403507112_51ad0a7bedda71bafa189b239a4c6207_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_flat_float32/partition_centroids/__commits/__1765403507177_1765403507177_172e30e87a8c05dfb08f0d6c6d67ce8d_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_flat_float32/partition_indexes/__commits/__1765403507177_1765403507177_188ec07af54c9c6717e18204d5423345_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_flat_float32/shuffled_vector_ids/__commits/__1765403507177_1765403507177_7c2b7992939dba22243baed785926f41_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_flat_float32/shuffled_vectors/__commits/__1765403507177_1765403507177_7e5686c44c7684808e6bfa43030c1d61_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_flat_uint8/partition_centroids/__commits/__1765403508379_1765403508379_34a48660c3f772166eac0cf96cbda6d8_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_flat_uint8/partition_indexes/__commits/__1765403508379_1765403508379_099e5778bbe5a46327e9bae581690e50_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_flat_uint8/shuffled_vector_ids/__commits/__1765403508379_1765403508379_142415cc71416f765a2b9995ea40347c_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_flat_uint8/shuffled_vectors/__commits/__1765403508379_1765403508379_349a3269da5a51d06ebbd82e5c58b0e4_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_float32/partition_centroids/__commits/__1765403508782_1765403508782_2c784953c5c9ac0d54bd275a9d7028c9_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_float32/partition_indexes/__commits/__1765403508782_1765403508782_569b43d034e0316c3e592c7baf7ca304_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_float32/partitioned_pq_vectors/__commits/__1765403508782_1765403508782_55a8d92ae075808472d071aebfbca6d0_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_float32/pq_subspace_centroids/__commits/__1765403508782_1765403508782_345c744d172707ebcdcb2a57e069f05c_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_float32/shuffled_vector_ids/__commits/__1765403508782_1765403508782_25b1793b032ad51eff59f8f3ee1c899f_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_float32/shuffled_vector_ids/__commits/__1765403508782_1765403508782_721daf95b28e8c7c058cb54bf7dc4cf0_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_float32/shuffled_vectors/__commits/__1765403508782_1765403508782_46eacacff51007729f442cfda435989c_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_uint8/partition_centroids/__commits/__1765403509018_1765403509018_70114681cbf754d39f5147c6329fcf46_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_uint8/partition_indexes/__commits/__1765403509018_1765403509018_04ba47b2f172aefeb9b749df16370f96_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_uint8/partitioned_pq_vectors/__commits/__1765403509018_1765403509018_0a44dfd77b6be89d3f2219f42eb2144f_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_uint8/pq_subspace_centroids/__commits/__1765403509018_1765403509018_1c55c4f27df52e5429fe2513e100dc91_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_uint8/shuffled_vector_ids/__commits/__1765403509018_1765403509018_4e8aba859aa240b07eb90acb2775a54d_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_uint8/shuffled_vector_ids/__commits/__1765403509018_1765403509018_5b7b6170978e18795c333403f4928549_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/ivf_pq_uint8/shuffled_vectors/__commits/__1765403509018_1765403509018_46cc9c30a27a6b99c6e9d3b8f4fe352e_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/vamana_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/vamana_float32/adjacency_ids/__commits/__1765403508540_1765403508540_7bb69ba7ed611d6e3943e0b857e773f1_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/vamana_float32/adjacency_row_index/__commits/__1765403508540_1765403508540_6cc7c7072330b5ba1e309cc3188ec3e5_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/vamana_float32/adjacency_scores/__commits/__1765403508540_1765403508540_124207fa45f0133fbb5e714cfff0ddc8_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/vamana_float32/shuffled_vector_ids/__commits/__1765403508540_1765403508540_46194ef72d68c6434806d656c911fbb9_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/vamana_float32/shuffled_vectors/__commits/__1765403508540_1765403508540_0756b10a4009beb87fd3b50f92933bbd_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/vamana_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/vamana_uint8/adjacency_ids/__commits/__1765403508666_1765403508666_6d87086c81da4f8cbc9d28b917be8157_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/vamana_uint8/adjacency_row_index/__commits/__1765403508666_1765403508666_0e4ef93200be34efce6b47f9d5f3b634_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/vamana_uint8/adjacency_scores/__commits/__1765403508666_1765403508666_2bd1d2ba09ecbd49758db852fe526d9e_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/vamana_uint8/shuffled_vector_ids/__commits/__1765403508666_1765403508666_6cf150a324db7191394f52b1297dc451_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.16.0/vamana_uint8/shuffled_vectors/__commits/__1765403508666_1765403508666_17f1ba10857668df56eb50885b127a48_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.0/flat_uint8/__meta/__1711644947608_1711644947608_be861f2bc85848a38f6150d93e237678: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.2.0/flat_uint8/__meta/__1711644947608_1711644947608_be861f2bc85848a38f6150d93e237678 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.0/flat_uint8/__meta/__1711644947615_1711644947615_01833da97d714591b667dcf8764d00da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.2.0/flat_uint8/__meta/__1711644947615_1711644947615_01833da97d714591b667dcf8764d00da -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.0/flat_uint8/__meta/__1711644947677_1711644947677_577387cf33cf48819d19e2c8ab39db01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.2.0/flat_uint8/__meta/__1711644947677_1711644947677_577387cf33cf48819d19e2c8ab39db01 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.0/flat_uint8/__meta/__1711644947679_1711644947679_14fdb354f994433c9a4ba4b9d9186b1d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.2.0/flat_uint8/__meta/__1711644947679_1711644947679_14fdb354f994433c9a4ba4b9d9186b1d -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.0/ivf_flat_float32/partition_centroids/__commits/__1711644948509_1711644948509_4676a9b098e24512a485c8d7f9b8ad07_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.0/ivf_flat_float32/partition_indexes/__commits/__1711644948640_1711644948640_1c3ccf95d8e3405091d3ca06bb830d51_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.0/ivf_flat_uint8/partition_centroids/__commits/__1711644948766_1711644948766_cc548066127544bcad22cf23f6c28b19_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.0/ivf_flat_uint8/partition_indexes/__commits/__1711644948837_1711644948837_256f669b53f4476780a62db5b00b9f44_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.2/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.2/flat_uint8/__meta/__1712648467237_1712648467237_0e6043ea1c874ba28c7608d27ca7921d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.2.2/flat_uint8/__meta/__1712648467237_1712648467237_0e6043ea1c874ba28c7608d27ca7921d -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.2/flat_uint8/__meta/__1712648467247_1712648467247_1cf253ed644c4b2d94c7a799df72401b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.2.2/flat_uint8/__meta/__1712648467247_1712648467247_1cf253ed644c4b2d94c7a799df72401b -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.2/flat_uint8/__meta/__1712648467313_1712648467313_87ac92350c784173940d9b808ae70587: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.2.2/flat_uint8/__meta/__1712648467313_1712648467313_87ac92350c784173940d9b808ae70587 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.2/flat_uint8/__meta/__1712648467315_1712648467315_f4a68d411ed44545a61286edd4b6907d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.2.2/flat_uint8/__meta/__1712648467315_1712648467315_f4a68d411ed44545a61286edd4b6907d -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.2/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.2/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.2/ivf_flat_float32/partition_centroids/__commits/__1712648467907_1712648467907_a8bd18c0b0734a8188b83da3af221599_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.2/ivf_flat_float32/partition_indexes/__commits/__1712648468055_1712648468055_788d29e2c21a4aa7b09e677fce46b303_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.2/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.2/ivf_flat_uint8/partition_centroids/__commits/__1712648468197_1712648468197_551178a5422f4759ac04f20b68517188_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.2.2/ivf_flat_uint8/partition_indexes/__commits/__1712648468277_1712648468277_ce2e3793c64a405588fad4a04994e811_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.3.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.3.0/flat_uint8/__meta/__1713378258117_1713378258117_0ef3a5c1005d6d29517c44e49d65237e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.3.0/flat_uint8/__meta/__1713378258117_1713378258117_0ef3a5c1005d6d29517c44e49d65237e -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.3.0/flat_uint8/__meta/__1713378258124_1713378258124_0d3a08dfd6757be5f54462827a9c39df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.3.0/flat_uint8/__meta/__1713378258124_1713378258124_0d3a08dfd6757be5f54462827a9c39df -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.3.0/flat_uint8/__meta/__1713378258185_1713378258185_507a3cc8e36274c57dc14f90998abbe2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.3.0/flat_uint8/__meta/__1713378258185_1713378258185_507a3cc8e36274c57dc14f90998abbe2 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.3.0/flat_uint8/__meta/__1713378258186_1713378258186_39775f0ce3b43237e9db0ecf58a43003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.3.0/flat_uint8/__meta/__1713378258186_1713378258186_39775f0ce3b43237e9db0ecf58a43003 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.3.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.3.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.3.0/ivf_flat_float32/partition_centroids/__commits/__1713378258785_1713378258785_02d1cbe6dd982a0ee7370b19c8e089b9_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.3.0/ivf_flat_float32/partition_indexes/__commits/__1713378258925_1713378258925_1056139d1d0c0f96baa4c286e177ebfd_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.3.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.3.0/ivf_flat_uint8/partition_centroids/__commits/__1713378259050_1713378259050_32254c15a89d62071e6493cbfcbce23e_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.3.0/ivf_flat_uint8/partition_indexes/__commits/__1713378259122_1713378259122_1ff7e69c25c477cc15ff1b0548ef21b7_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.4.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.4.0/flat_uint8/__meta/__1715605751178_1715605751178_5c2ea1f148a3eb7bc34520580fd6cf9e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.4.0/flat_uint8/__meta/__1715605751178_1715605751178_5c2ea1f148a3eb7bc34520580fd6cf9e -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.4.0/flat_uint8/__meta/__1715605751179_1715605751179_7a1eb9dbf3148531ac5a585992c2399a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.4.0/flat_uint8/__meta/__1715605751179_1715605751179_7a1eb9dbf3148531ac5a585992c2399a -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.4.0/flat_uint8/__meta/__1715605751243_1715605751243_7ba9c4ce5e136c77e825b2210668e89d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.4.0/flat_uint8/__meta/__1715605751243_1715605751243_7ba9c4ce5e136c77e825b2210668e89d -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.4.0/flat_uint8/__meta/__1715605751245_1715605751245_25d4597ea7f9af96cc3d7e01d666bf1e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.4.0/flat_uint8/__meta/__1715605751245_1715605751245_25d4597ea7f9af96cc3d7e01d666bf1e -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.4.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.4.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.4.0/ivf_flat_float32/partition_centroids/__commits/__1715605751280_1715605751280_074a8372a4e53e6bb8daf8cc6edecbca_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.4.0/ivf_flat_float32/partition_indexes/__commits/__1715605751280_1715605751280_7e2c01f15071420cdc1dd6dd2f11f420_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.4.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.4.0/ivf_flat_uint8/partition_centroids/__commits/__1715605752064_1715605752064_5de539a735896cc5a1c8be6e7eeed4a5_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.4.0/ivf_flat_uint8/partition_indexes/__commits/__1715605752064_1715605752064_76452afe6c19b3ff874c8c5210fcb1b8_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.5.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.5.0/flat_uint8/__meta/__1718192514391_1718192514391_7968bb12bd05c45f60a1a53178fd11ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.5.0/flat_uint8/__meta/__1718192514391_1718192514391_7968bb12bd05c45f60a1a53178fd11ca -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.5.0/flat_uint8/__meta/__1718192514395_1718192514395_35b16f92ef8aeb3a3a45b445f991ad2e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.5.0/flat_uint8/__meta/__1718192514395_1718192514395_35b16f92ef8aeb3a3a45b445f991ad2e -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.5.0/flat_uint8/__meta/__1718192514476_1718192514476_7068b63e1aceae404a1a48351a3fd7e3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.5.0/flat_uint8/__meta/__1718192514476_1718192514476_7068b63e1aceae404a1a48351a3fd7e3 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.5.0/flat_uint8/__meta/__1718192514479_1718192514479_0783a575370ff8b6d524609894e9d20f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.5.0/flat_uint8/__meta/__1718192514479_1718192514479_0783a575370ff8b6d524609894e9d20f -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.5.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.5.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.5.0/ivf_flat_float32/partition_centroids/__commits/__1718192514519_1718192514519_2e4e7857c4dd9811724c6325a52ba873_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.5.0/ivf_flat_float32/partition_indexes/__commits/__1718192514519_1718192514519_213abf60f5d9618e45488b839ca4ff02_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.5.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.5.0/ivf_flat_uint8/partition_centroids/__commits/__1718192515345_1718192515345_3eeca0b1c329a1edaff0d62f7a9bc939_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.5.0/ivf_flat_uint8/partition_indexes/__commits/__1718192515345_1718192515345_3090b5975840c00681e460c8dc95d5c7_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.6.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.6.0/flat_uint8/__meta/__1719920014968_1719920014968_4ee000b901314ba3e9b302c585741375: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.6.0/flat_uint8/__meta/__1719920014968_1719920014968_4ee000b901314ba3e9b302c585741375 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.6.0/flat_uint8/__meta/__1719920014970_1719920014970_1d216814f87601f97dba573875402a73: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.6.0/flat_uint8/__meta/__1719920014970_1719920014970_1d216814f87601f97dba573875402a73 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.6.0/flat_uint8/__meta/__1719920015042_1719920015042_15bfb793e8010e86ec0702c6e2a3167a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.6.0/flat_uint8/__meta/__1719920015042_1719920015042_15bfb793e8010e86ec0702c6e2a3167a -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.6.0/flat_uint8/__meta/__1719920015044_1719920015044_77fd2e7d9dc005c04e1f00c846029198: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.6.0/flat_uint8/__meta/__1719920015044_1719920015044_77fd2e7d9dc005c04e1f00c846029198 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.6.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.6.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.6.0/ivf_flat_float32/partition_centroids/__commits/__1719920015084_1719920015084_732dea43983c12d592b29a0ee97335e8_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.6.0/ivf_flat_float32/partition_indexes/__commits/__1719920015084_1719920015084_66452276e3b100c00c288d8a8da9bd4a_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.6.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.6.0/ivf_flat_uint8/partition_centroids/__commits/__1719920015926_1719920015926_5f3b14e47f1d38558374e774e209e7d6_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.6.0/ivf_flat_uint8/partition_indexes/__commits/__1719920015926_1719920015926_7a1b8f8e4e66c631895e4c1e7a5e3cac_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.7.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.7.0/flat_uint8/__meta/__1720432685519_1720432685519_0ef1443d3d2868c4c4f818e3536c38cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.7.0/flat_uint8/__meta/__1720432685519_1720432685519_0ef1443d3d2868c4c4f818e3536c38cf -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.7.0/flat_uint8/__meta/__1720432685521_1720432685521_3381afa4c585833df2d1e217957c9f76: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.7.0/flat_uint8/__meta/__1720432685521_1720432685521_3381afa4c585833df2d1e217957c9f76 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.7.0/flat_uint8/__meta/__1720432685592_1720432685592_5a9cc10d4557a661f67ab9e0ae0f6edc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.7.0/flat_uint8/__meta/__1720432685592_1720432685592_5a9cc10d4557a661f67ab9e0ae0f6edc -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.7.0/flat_uint8/__meta/__1720432685594_1720432685594_6b459ebb594535a3cc58a729d5fcc543: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.7.0/flat_uint8/__meta/__1720432685594_1720432685594_6b459ebb594535a3cc58a729d5fcc543 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.7.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.7.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.7.0/ivf_flat_float32/partition_centroids/__commits/__1720432685630_1720432685630_607babc908c2d72e47631d631aa46524_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.7.0/ivf_flat_float32/partition_indexes/__commits/__1720432685630_1720432685630_3d0ef3182d0b0c0b11bf21ffb2ffe4cc_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.7.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.7.0/ivf_flat_uint8/partition_centroids/__commits/__1720432686399_1720432686399_36dafc646c6a29ec2689769f4f484c2d_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.7.0/ivf_flat_uint8/partition_indexes/__commits/__1720432686399_1720432686399_03d1f6cad150a4f637a9a52c8eef15ed_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.8.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.8.0/flat_uint8/__meta/__1722003092545_1722003092545_0636b572849dad818d6669d1bdc378f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.8.0/flat_uint8/__meta/__1722003092545_1722003092545_0636b572849dad818d6669d1bdc378f1 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.8.0/flat_uint8/__meta/__1722003092546_1722003092546_2d0f87f6c49e9cabaa3ef99d0b6ca50b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.8.0/flat_uint8/__meta/__1722003092546_1722003092546_2d0f87f6c49e9cabaa3ef99d0b6ca50b -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.8.0/flat_uint8/__meta/__1722003092613_1722003092613_6cb4aa55341d54307fc3137a8d6602da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.8.0/flat_uint8/__meta/__1722003092613_1722003092613_6cb4aa55341d54307fc3137a8d6602da -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.8.0/flat_uint8/__meta/__1722003092614_1722003092614_023c5b87c6721ceb40425b34d494efe5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.8.0/flat_uint8/__meta/__1722003092614_1722003092614_023c5b87c6721ceb40425b34d494efe5 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.8.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.8.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.8.0/ivf_flat_float32/partition_centroids/__commits/__1722003092649_1722003092649_36067a380c623d2c64678bff8d244dde_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.8.0/ivf_flat_float32/partition_indexes/__commits/__1722003092649_1722003092649_12aaf4e5a76a89295d121797f699c82d_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.8.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.8.0/ivf_flat_uint8/partition_centroids/__commits/__1722003093521_1722003093521_178f7374c4f2983ddd18df2c6315ac18_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.8.0/ivf_flat_uint8/partition_indexes/__commits/__1722003093521_1722003093521_5f0677b97cc0d1790a51c01229db0607_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/flat_uint8/__meta/__1726505217532_1726505217532_15b271f4bf4487b10b2216b591c21fc4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.9.0/flat_uint8/__meta/__1726505217532_1726505217532_15b271f4bf4487b10b2216b591c21fc4 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/flat_uint8/__meta/__1726505217533_1726505217533_61a9a92639028e27f51ab876e56037c7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.9.0/flat_uint8/__meta/__1726505217533_1726505217533_61a9a92639028e27f51ab876e56037c7 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/flat_uint8/__meta/__1726505217599_1726505217599_362f683bf3265416e8f1302737950030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.9.0/flat_uint8/__meta/__1726505217599_1726505217599_362f683bf3265416e8f1302737950030 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/flat_uint8/__meta/__1726505217601_1726505217601_26862544ea58173fa1cdc810627f03b7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/0.9.0/flat_uint8/__meta/__1726505217601_1726505217601_26862544ea58173fa1cdc810627f03b7 -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/ivf_flat_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/ivf_flat_float32/partition_centroids/__commits/__1726505217637_1726505217637_23b9db8b35a78f1797fe3a3cf5ac9bec_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/ivf_flat_float32/partition_indexes/__commits/__1726505217637_1726505217637_2e994b56ae982b92c46536302cfee02e_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/ivf_flat_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/ivf_flat_uint8/partition_centroids/__commits/__1726505218579_1726505218579_762cd5ab2adeb37210b3162f1cf84414_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/ivf_flat_uint8/partition_indexes/__commits/__1726505218579_1726505218579_027c550a759427f90b74891be04e8f11_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/vamana_float32/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/vamana_float32/adjacency_ids/__commits/__1726505218785_1726505218785_5e3aeb188b69f7bb5d84078d159b8ca8_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/vamana_float32/adjacency_row_index/__commits/__1726505218785_1726505218785_116d8bf13a39d08b8fc5f6a49410c6d6_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/vamana_float32/adjacency_scores/__commits/__1726505218785_1726505218785_0600ecb6bb3e05c1bc488239559a17fc_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/vamana_float32/shuffled_vector_ids/__commits/__1726505218785_1726505218785_143a57d5540cb091c6aaabd3e56103ec_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/vamana_float32/shuffled_vectors/__commits/__1726505218785_1726505218785_02c69f568ee7c7f5d2fadeee4aab570c_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/vamana_uint8/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/vamana_uint8/adjacency_ids/__commits/__1726505218950_1726505218950_2ddd0678c9d027258c48581a578a3b07_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/vamana_uint8/adjacency_row_index/__commits/__1726505218950_1726505218950_394e4ccf448a766483eec1ddbf65611d_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/vamana_uint8/adjacency_scores/__commits/__1726505218950_1726505218950_3d44f53e98c7dc5da096cdf727c96976_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/vamana_uint8/shuffled_vector_ids/__commits/__1726505218950_1726505218950_6b9778b981f53f13213beba4aea65ea6_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/0.9.0/vamana_uint8/shuffled_vectors/__commits/__1726505218950_1726505218950_5fe13d31d4e7bb041b3f38f342940b00_22.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backwards-compatibility-data/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/data/README.md -------------------------------------------------------------------------------- /backwards-compatibility-data/generate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/generate_data.py -------------------------------------------------------------------------------- /backwards-compatibility-data/siftmicro_base.fvecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/backwards-compatibility-data/siftmicro_base.fvecs -------------------------------------------------------------------------------- /demos/flat_index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/demos/flat_index.ipynb -------------------------------------------------------------------------------- /documentation/Benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/documentation/Benchmarks.md -------------------------------------------------------------------------------- /documentation/Building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/documentation/Building.md -------------------------------------------------------------------------------- /documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/documentation/index.md -------------------------------------------------------------------------------- /documentation/storage-format-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/documentation/storage-format-spec.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/environment.yml -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/groundtruth/__commits/__1704498102134_1704498102134_f3c858b8ad594d1db556b80444a384ea_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/groundtruth/__schema/__1704498102133_1704498102133_3c6101b651cc4b7c9d0c68953b747302: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/bigann10k/groundtruth/__schema/__1704498102133_1704498102133_3c6101b651cc4b7c9d0c68953b747302 -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/group/__group/__1704946762590_1704946762590_de07ff8c2ea247b784917b8857bb01d8_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/bigann10k/group/__group/__1704946762590_1704946762590_de07ff8c2ea247b784917b8857bb01d8_2 -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/group/__meta/__1704946762587_1704946762587_cc87b18ee1d84363b4624c35c3b7302b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/bigann10k/group/__meta/__1704946762587_1704946762587_cc87b18ee1d84363b4624c35c3b7302b -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/group/__meta/__1704946762699_1704946762699_4301234cd5d64d1cb4e78dcdd17299f0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/bigann10k/group/__meta/__1704946762699_1704946762699_4301234cd5d64d1cb4e78dcdd17299f0 -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/group/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/group/partition_centroids/__commits/__1704946759192_1704946759192_f0dea1c0c4c4410ea9a7ef8597aedebe_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/group/partition_indexes/__commits/__1704946759192_1704946759192_dd35366385234e8486b02427a3f13612_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/group/shuffled_vector_ids/__commits/__1704946759192_1704946759192_bcdc9ced6a0743a78d86d5fe6d0bf4ec_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/group/shuffled_vectors/__commits/__1704946759192_1704946759192_2144132973ce4e3ca0894dbee3a95cd6_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/input_vectors/__commits/__1704411278156_1704411278156_036d80a0f4884fabb3c9cbe6de41cb7a_18.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/partition_centroids/__commits/__1704511160190_1704511160190_9d73633669204bc28f22a648b617dd0d_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/partition_indexes/__commits/__1704511160226_1704511160226_40585e731121493da31056b196a91c58_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/queries/__commits/__1704412110777_1704412110777_f2d86853620647688b88f664e01653db_18.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/queries/__schema/__1704412091919_1704412091919_3608d3c94d8843069ae041e2737589b4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/bigann10k/queries/__schema/__1704412091919_1704412091919_3608d3c94d8843069ae041e2737589b4 -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/shuffled_vector_ids/__commits/__1704511160218_1704511160218_4159affa7cdc400cbdfb598d0cd6f8cf_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/bigann10k/shuffled_vectors/__commits/__1704511160202_1704511160202_f18718653ee247a0b2e6282fdd14da70_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/fmnistsmall/groundtruth/__commits/__1704941147868_1704941147868_394f47d4766845b38b46b5e5d1055b9a_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/fmnistsmall/group/__group/__1704946743861_1704946743861_80014acd316140869752f892c0b05178_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/fmnistsmall/group/__group/__1704946743861_1704946743861_80014acd316140869752f892c0b05178_2 -------------------------------------------------------------------------------- /external/test_data/arrays/fmnistsmall/group/__meta/__1704946743838_1704946743838_cdb72e4323c246e9b6f12e64e87f66a5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/fmnistsmall/group/__meta/__1704946743838_1704946743838_cdb72e4323c246e9b6f12e64e87f66a5 -------------------------------------------------------------------------------- /external/test_data/arrays/fmnistsmall/group/__meta/__1704946748905_1704946748905_9abea5aa4cec48f2a82eb0d88e7c5f27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/fmnistsmall/group/__meta/__1704946748905_1704946748905_9abea5aa4cec48f2a82eb0d88e7c5f27 -------------------------------------------------------------------------------- /external/test_data/arrays/fmnistsmall/group/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/fmnistsmall/group/partition_centroids/__commits/__1704946743476_1704946743476_33b20ec736394429929bdf64152045e9_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/fmnistsmall/group/partition_indexes/__commits/__1704946743476_1704946743476_5302a535c87241ed9fd4551ce7ea20a8_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/fmnistsmall/group/shuffled_vector_ids/__commits/__1704946743476_1704946743476_9d74eee69e0b46f286c2235dd73bbe66_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/fmnistsmall/group/shuffled_vectors/__commits/__1704946743476_1704946743476_d93201dc689046448ce9bc31c645de9e_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/fmnistsmall/input_vectors/__commits/__1704941147187_1704941147187_8912b4fd99354956acb58444cc5684c9_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/fmnistsmall/queries/__commits/__1704941147233_1704941147233_524477fe2df6481ca53be691346989db_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/fmnistsmall/queries/__schema/__1704941147232_1704941147232_dddf2554b4294369b6f297d736cb7b8d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/fmnistsmall/queries/__schema/__1704941147232_1704941147232_dddf2554b4294369b6f297d736cb7b8d -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/groundtruth/__commits/__1704498102062_1704498102062_98d37156c3a74737a9ef6aaca80af758_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/groundtruth/__schema/__1704498102061_1704498102061_9ad752f4262246359dc7e881e7ef8bb7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/siftsmall/groundtruth/__schema/__1704498102061_1704498102061_9ad752f4262246359dc7e881e7ef8bb7 -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/group/__group/__1704946751099_1704946751099_ed603a10356245ec9b5ca65c57efe380_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/siftsmall/group/__group/__1704946751099_1704946751099_ed603a10356245ec9b5ca65c57efe380_2 -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/group/__meta/__1704946751095_1704946751095_4194545b99e4453cb543f1fdff7ffbc5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/siftsmall/group/__meta/__1704946751095_1704946751095_4194545b99e4453cb543f1fdff7ffbc5 -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/group/__meta/__1704946756443_1704946756443_af00db841a8b4f729b10ad44e22535d0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/siftsmall/group/__meta/__1704946756443_1704946756443_af00db841a8b4f729b10ad44e22535d0 -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/group/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/group/partition_centroids/__commits/__1704946748930_1704946748930_6897b9b245a24acc9408a93b6042c17a_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/group/partition_indexes/__commits/__1704946748930_1704946748930_d54957d89fd545bcab1b2496dd32b1bb_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/group/shuffled_vector_ids/__commits/__1704946748930_1704946748930_6bbd94bef35c4f0db92e40b5b603a7e2_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/group/shuffled_vectors/__commits/__1704946748930_1704946748930_ca0137fa2cd04ffd8678957213bff2c7_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/input_vectors/__commits/__1706917570007_1706917570007_09907d8e1b464c2584557fec9582b902_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/partition_centroids/__commits/__1704511154071_1704511154071_daa6c8b0991c437aacd4c3376e9ab933_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/partition_indexes/__commits/__1704511154196_1704511154196_8ce5015bedb141feaa3aadd74f025232_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/queries/__commits/__1706917570043_1706917570043_1e7ec57e02b94f62ac6bff267eba0c74_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/queries/__schema/__1706917570042_1706917570042_7f38eb0d59ec49228f0dc1ba3a4bc6ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/arrays/siftsmall/queries/__schema/__1706917570042_1706917570042_7f38eb0d59ec49228f0dc1ba3a4bc6ec -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/shuffled_vector_ids/__commits/__1704511154174_1704511154174_08d289b401f04499a2d298e8e9741d5c_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/arrays/siftsmall/shuffled_vectors/__commits/__1704511154090_1704511154090_c878d5a906374a5ab2c6fcd404379e5a_20.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/files/diskann/delete_set_50pts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/delete_set_50pts.bin -------------------------------------------------------------------------------- /external/test_data/files/diskann/disk_index_node_data_aligned_reader_truth.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/disk_index_node_data_aligned_reader_truth.bin -------------------------------------------------------------------------------- /external/test_data/files/diskann/disk_index_siftsmall_learn_256pts_R4_L50_A1.2_alligned_reader_test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/disk_index_siftsmall_learn_256pts_R4_L50_A1.2_alligned_reader_test.index -------------------------------------------------------------------------------- /external/test_data/files/diskann/disk_index_siftsmall_learn_256pts_R4_L50_A1.2_disk.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/disk_index_siftsmall_learn_256pts_R4_L50_A1.2_disk.index -------------------------------------------------------------------------------- /external/test_data/files/diskann/disk_index_siftsmall_learn_256pts_R4_L50_A1.2_mem.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/disk_index_siftsmall_learn_256pts_R4_L50_A1.2_mem.index -------------------------------------------------------------------------------- /external/test_data/files/diskann/siftsmall_learn.bin_pq_compressed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/siftsmall_learn.bin_pq_compressed.bin -------------------------------------------------------------------------------- /external/test_data/files/diskann/siftsmall_learn.bin_pq_pivots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/siftsmall_learn.bin_pq_pivots.bin -------------------------------------------------------------------------------- /external/test_data/files/diskann/siftsmall_learn_256pts.fbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/siftsmall_learn_256pts.fbin -------------------------------------------------------------------------------- /external/test_data/files/diskann/siftsmall_learn_256pts_2.fbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/siftsmall_learn_256pts_2.fbin -------------------------------------------------------------------------------- /external/test_data/files/diskann/truth_disk_index_siftsmall_learn_256pts_R4_L50_A1.2_disk.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/truth_disk_index_siftsmall_learn_256pts_R4_L50_A1.2_disk.index -------------------------------------------------------------------------------- /external/test_data/files/diskann/truth_index_siftsmall_learn_256pts_1+2_R4_L50_A1.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/truth_index_siftsmall_learn_256pts_1+2_R4_L50_A1.2 -------------------------------------------------------------------------------- /external/test_data/files/diskann/truth_index_siftsmall_learn_256pts_1+2_saturated_R4_L50_A1.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/truth_index_siftsmall_learn_256pts_1+2_saturated_R4_L50_A1.2 -------------------------------------------------------------------------------- /external/test_data/files/diskann/truth_index_siftsmall_learn_256pts_R4_L50_A1.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/truth_index_siftsmall_learn_256pts_R4_L50_A1.2 -------------------------------------------------------------------------------- /external/test_data/files/diskann/truth_index_siftsmall_learn_256pts_R4_L50_A1.2.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/diskann/truth_index_siftsmall_learn_256pts_R4_L50_A1.2.data -------------------------------------------------------------------------------- /external/test_data/files/siftsmall/groundtruth.ivecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/siftsmall/groundtruth.ivecs -------------------------------------------------------------------------------- /external/test_data/files/siftsmall/input_vectors.fvecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/siftsmall/input_vectors.fvecs -------------------------------------------------------------------------------- /external/test_data/files/siftsmall/queries.fvecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/siftsmall/queries.fvecs -------------------------------------------------------------------------------- /external/test_data/files/siftsmall/siftsmall_learn.fvecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/files/siftsmall/siftsmall_learn.fvecs -------------------------------------------------------------------------------- /external/test_data/nano/vamana/vamana_test_index/__meta/__1707331479420_1707331479420_3d8cd475578649bf85f9a404007234df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/external/test_data/nano/vamana/vamana_test_index/__meta/__1707331479420_1707331479420_3d8cd475578649bf85f9a404007234df -------------------------------------------------------------------------------- /external/test_data/nano/vamana/vamana_test_index/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/nano/vamana/vamana_test_index/adjacency_ids/__commits/__1707331479446_1707331479446_8198337176f048a2a119aeac020ed575_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/nano/vamana/vamana_test_index/adjacency_row_index/__commits/__1707331479451_1707331479451_894dde1fc485427d933fe8dd24b067be_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/nano/vamana/vamana_test_index/adjacency_scores/__commits/__1707331479443_1707331479443_cd803ec13e7b4e458368fe3c84e3b2c8_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/nano/vamana/vamana_test_index/feature_vectors/__commits/__1707331479432_1707331479432_09b160b6e3374b5f86d776769eeb0d12_21.wrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/test_data/nano/vamana/vamana_test_index_metadata/__tiledb_group.tdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/pyproject.toml -------------------------------------------------------------------------------- /quarto-materials/Background-tdb-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/quarto-materials/Background-tdb-header.jpg -------------------------------------------------------------------------------- /quarto-materials/tiledb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/quarto-materials/tiledb-logo.png -------------------------------------------------------------------------------- /quarto-materials/tiledb-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/quarto-materials/tiledb-logo.svg -------------------------------------------------------------------------------- /quarto-materials/tiledb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/quarto-materials/tiledb.css -------------------------------------------------------------------------------- /quarto-materials/tiledb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/quarto-materials/tiledb.scss -------------------------------------------------------------------------------- /scripts/ci/check_clang_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/scripts/ci/check_clang_format.sh -------------------------------------------------------------------------------- /scripts/install_clang_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/scripts/install_clang_format.sh -------------------------------------------------------------------------------- /scripts/run_clang_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/scripts/run_clang_format.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/README.md -------------------------------------------------------------------------------- /src/benchmarks/.gitignore: -------------------------------------------------------------------------------- 1 | results/ 2 | -------------------------------------------------------------------------------- /src/benchmarks/ann-benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/benchmarks/ann-benchmarks.py -------------------------------------------------------------------------------- /src/benchmarks/awsrc.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/benchmarks/awsrc.bash -------------------------------------------------------------------------------- /src/benchmarks/instance_runner.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/benchmarks/instance_runner.bash -------------------------------------------------------------------------------- /src/benchmarks/ivf_flat_full.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/benchmarks/ivf_flat_full.bash -------------------------------------------------------------------------------- /src/benchmarks/log_postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/benchmarks/log_postprocessing.py -------------------------------------------------------------------------------- /src/benchmarks/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/benchmarks/setup.bash -------------------------------------------------------------------------------- /src/benchmarks/vamana/diskann.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/benchmarks/vamana/diskann.bash -------------------------------------------------------------------------------- /src/benchmarks/vamana/vamana.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/benchmarks/vamana/vamana.bash -------------------------------------------------------------------------------- /src/cmake/.Superbuild.cmake.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/.Superbuild.cmake.swo -------------------------------------------------------------------------------- /src/cmake/BLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/BLAS.cmake -------------------------------------------------------------------------------- /src/cmake/Catch2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/Catch2.cmake -------------------------------------------------------------------------------- /src/cmake/CompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/CompilerFlags.cmake -------------------------------------------------------------------------------- /src/cmake/Docopt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/Docopt.cmake -------------------------------------------------------------------------------- /src/cmake/Modules/CheckAVX2Support.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/Modules/CheckAVX2Support.cmake -------------------------------------------------------------------------------- /src/cmake/Modules/DownloadPrebuiltTileDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/Modules/DownloadPrebuiltTileDB.cmake -------------------------------------------------------------------------------- /src/cmake/Modules/FindClangTools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/Modules/FindClangTools.cmake -------------------------------------------------------------------------------- /src/cmake/Modules/FindTileDB_EP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/Modules/FindTileDB_EP.cmake -------------------------------------------------------------------------------- /src/cmake/Modules/Sanitizer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/Modules/Sanitizer.cmake -------------------------------------------------------------------------------- /src/cmake/Modules/TileDBCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/Modules/TileDBCommon.cmake -------------------------------------------------------------------------------- /src/cmake/MultiThreading.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/MultiThreading.cmake -------------------------------------------------------------------------------- /src/cmake/Superbuild.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/Superbuild.cmake -------------------------------------------------------------------------------- /src/cmake/logging.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/logging.cmake -------------------------------------------------------------------------------- /src/cmake/mdspan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/mdspan.cmake -------------------------------------------------------------------------------- /src/cmake/nlohmann_json.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/cmake/nlohmann_json.cmake -------------------------------------------------------------------------------- /src/include/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/algorithm.h -------------------------------------------------------------------------------- /src/include/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/api/README.md -------------------------------------------------------------------------------- /src/include/api/api_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/api/api_defs.h -------------------------------------------------------------------------------- /src/include/api/feature_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/api/feature_vector.h -------------------------------------------------------------------------------- /src/include/api/feature_vector_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/api/feature_vector_array.h -------------------------------------------------------------------------------- /src/include/api/flat_l2_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/api/flat_l2_index.h -------------------------------------------------------------------------------- /src/include/api/ivf_flat_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/api/ivf_flat_index.h -------------------------------------------------------------------------------- /src/include/api/ivf_pq_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/api/ivf_pq_index.h -------------------------------------------------------------------------------- /src/include/api/vamana_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/api/vamana_index.h -------------------------------------------------------------------------------- /src/include/concepts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/concepts.h -------------------------------------------------------------------------------- /src/include/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/config.h.in -------------------------------------------------------------------------------- /src/include/cpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/cpos.h -------------------------------------------------------------------------------- /src/include/detail/flat/gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/flat/gemm.h -------------------------------------------------------------------------------- /src/include/detail/flat/qv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/flat/qv.h -------------------------------------------------------------------------------- /src/include/detail/flat/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/flat/vq.h -------------------------------------------------------------------------------- /src/include/detail/graph/adj_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/graph/adj_list.h -------------------------------------------------------------------------------- /src/include/detail/graph/best_first.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/graph/best_first.h -------------------------------------------------------------------------------- /src/include/detail/graph/bfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/graph/bfs.h -------------------------------------------------------------------------------- /src/include/detail/graph/diskann.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/graph/diskann.h -------------------------------------------------------------------------------- /src/include/detail/graph/graph_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/graph/graph_utils.h -------------------------------------------------------------------------------- /src/include/detail/graph/greedy_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/graph/greedy_search.h -------------------------------------------------------------------------------- /src/include/detail/graph/nn-descent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/graph/nn-descent.h -------------------------------------------------------------------------------- /src/include/detail/graph/nn-graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/graph/nn-graph.h -------------------------------------------------------------------------------- /src/include/detail/ivf/dist_qv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/ivf/dist_qv.h -------------------------------------------------------------------------------- /src/include/detail/ivf/gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/ivf/gemm.h -------------------------------------------------------------------------------- /src/include/detail/ivf/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/ivf/index.h -------------------------------------------------------------------------------- /src/include/detail/ivf/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/ivf/partition.h -------------------------------------------------------------------------------- /src/include/detail/ivf/qv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/ivf/qv.h -------------------------------------------------------------------------------- /src/include/detail/ivf/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/ivf/vq.h -------------------------------------------------------------------------------- /src/include/detail/linalg/choose_blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/choose_blas.h -------------------------------------------------------------------------------- /src/include/detail/linalg/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/compat.h -------------------------------------------------------------------------------- /src/include/detail/linalg/linalg_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/linalg_defs.h -------------------------------------------------------------------------------- /src/include/detail/linalg/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/matrix.h -------------------------------------------------------------------------------- /src/include/detail/linalg/matrix_with_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/matrix_with_ids.h -------------------------------------------------------------------------------- /src/include/detail/linalg/partitioned_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/partitioned_matrix.h -------------------------------------------------------------------------------- /src/include/detail/linalg/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/set.h -------------------------------------------------------------------------------- /src/include/detail/linalg/tdb_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/tdb_helpers.h -------------------------------------------------------------------------------- /src/include/detail/linalg/tdb_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/tdb_io.h -------------------------------------------------------------------------------- /src/include/detail/linalg/tdb_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/tdb_matrix.h -------------------------------------------------------------------------------- /src/include/detail/linalg/tdb_matrix_multi_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/tdb_matrix_multi_range.h -------------------------------------------------------------------------------- /src/include/detail/linalg/tdb_matrix_with_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/tdb_matrix_with_ids.h -------------------------------------------------------------------------------- /src/include/detail/linalg/tdb_partitioned_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/tdb_partitioned_matrix.h -------------------------------------------------------------------------------- /src/include/detail/linalg/tdb_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/tdb_vector.h -------------------------------------------------------------------------------- /src/include/detail/linalg/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/linalg/vector.h -------------------------------------------------------------------------------- /src/include/detail/scoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/scoring/README.md -------------------------------------------------------------------------------- /src/include/detail/scoring/cosine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/scoring/cosine.h -------------------------------------------------------------------------------- /src/include/detail/scoring/cosine_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/scoring/cosine_avx.h -------------------------------------------------------------------------------- /src/include/detail/scoring/cosine_blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/scoring/cosine_blas.h -------------------------------------------------------------------------------- /src/include/detail/scoring/inner_product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/scoring/inner_product.h -------------------------------------------------------------------------------- /src/include/detail/scoring/inner_product_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/scoring/inner_product_avx.h -------------------------------------------------------------------------------- /src/include/detail/scoring/inner_product_blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/scoring/inner_product_blas.h -------------------------------------------------------------------------------- /src/include/detail/scoring/l2_distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/scoring/l2_distance.h -------------------------------------------------------------------------------- /src/include/detail/scoring/l2_distance_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/scoring/l2_distance_avx.h -------------------------------------------------------------------------------- /src/include/detail/scoring/l2_distance_blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/scoring/l2_distance_blas.h -------------------------------------------------------------------------------- /src/include/detail/time/temporal_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/detail/time/temporal_policy.h -------------------------------------------------------------------------------- /src/include/execution_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/execution_policy.h -------------------------------------------------------------------------------- /src/include/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/functional.h -------------------------------------------------------------------------------- /src/include/index/README/IVF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/README/IVF.md -------------------------------------------------------------------------------- /src/include/index/README/PQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/README/PQ.md -------------------------------------------------------------------------------- /src/include/index/README/VAMANA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/README/VAMANA.md -------------------------------------------------------------------------------- /src/include/index/flat_l2_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/flat_l2_index.h -------------------------------------------------------------------------------- /src/include/index/flat_pq_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/flat_pq_index.h -------------------------------------------------------------------------------- /src/include/index/index_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/index_defs.h -------------------------------------------------------------------------------- /src/include/index/index_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/index_group.h -------------------------------------------------------------------------------- /src/include/index/index_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/index_metadata.h -------------------------------------------------------------------------------- /src/include/index/ivf_flat_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/ivf_flat_group.h -------------------------------------------------------------------------------- /src/include/index/ivf_flat_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/ivf_flat_index.h -------------------------------------------------------------------------------- /src/include/index/ivf_flat_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/ivf_flat_metadata.h -------------------------------------------------------------------------------- /src/include/index/ivf_pq_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/ivf_pq_group.h -------------------------------------------------------------------------------- /src/include/index/ivf_pq_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/ivf_pq_index.h -------------------------------------------------------------------------------- /src/include/index/ivf_pq_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/ivf_pq_metadata.h -------------------------------------------------------------------------------- /src/include/index/kmeans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/kmeans.h -------------------------------------------------------------------------------- /src/include/index/vamana_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/vamana_group.h -------------------------------------------------------------------------------- /src/include/index/vamana_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/vamana_index.h -------------------------------------------------------------------------------- /src/include/index/vamana_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/index/vamana_metadata.h -------------------------------------------------------------------------------- /src/include/linalg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/linalg.h -------------------------------------------------------------------------------- /src/include/scoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/scoring.h -------------------------------------------------------------------------------- /src/include/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/stats.h -------------------------------------------------------------------------------- /src/include/tdb_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/tdb_defs.h -------------------------------------------------------------------------------- /src/include/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/include/test/notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/notebooks/README.md -------------------------------------------------------------------------------- /src/include/test/notebooks/gen_vamana_metadata.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/notebooks/gen_vamana_metadata.ipynb -------------------------------------------------------------------------------- /src/include/test/time_l2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/time_l2.cc -------------------------------------------------------------------------------- /src/include/test/time_scoring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/time_scoring.cc -------------------------------------------------------------------------------- /src/include/test/unit_adj_list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_adj_list.cc -------------------------------------------------------------------------------- /src/include/test/unit_algorithm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_algorithm.cc -------------------------------------------------------------------------------- /src/include/test/unit_api_feature_vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_api_feature_vector.cc -------------------------------------------------------------------------------- /src/include/test/unit_api_feature_vector_array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_api_feature_vector_array.cc -------------------------------------------------------------------------------- /src/include/test/unit_api_flat_l2_index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_api_flat_l2_index.cc -------------------------------------------------------------------------------- /src/include/test/unit_api_ivf_flat_index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_api_ivf_flat_index.cc -------------------------------------------------------------------------------- /src/include/test/unit_api_ivf_pq_index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_api_ivf_pq_index.cc -------------------------------------------------------------------------------- /src/include/test/unit_api_vamana_index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_api_vamana_index.cc -------------------------------------------------------------------------------- /src/include/test/unit_array_defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_array_defs.cc -------------------------------------------------------------------------------- /src/include/test/unit_backwards_compatibility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_backwards_compatibility.cc -------------------------------------------------------------------------------- /src/include/test/unit_best_first.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_best_first.cc -------------------------------------------------------------------------------- /src/include/test/unit_concepts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_concepts.cc -------------------------------------------------------------------------------- /src/include/test/unit_concepts_vs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_concepts_vs.cc -------------------------------------------------------------------------------- /src/include/test/unit_cpos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_cpos.cc -------------------------------------------------------------------------------- /src/include/test/unit_execution_policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_execution_policy.cc -------------------------------------------------------------------------------- /src/include/test/unit_fixed_min_heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_fixed_min_heap.cc -------------------------------------------------------------------------------- /src/include/test/unit_flat_l2_index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_flat_l2_index.cc -------------------------------------------------------------------------------- /src/include/test/unit_flat_pq_index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_flat_pq_index.cc -------------------------------------------------------------------------------- /src/include/test/unit_flat_qv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_flat_qv.cc -------------------------------------------------------------------------------- /src/include/test/unit_flat_vq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_flat_vq.cc -------------------------------------------------------------------------------- /src/include/test/unit_gemm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_gemm.cc -------------------------------------------------------------------------------- /src/include/test/unit_gen_graphs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_gen_graphs.cc -------------------------------------------------------------------------------- /src/include/test/unit_index_defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_index_defs.cc -------------------------------------------------------------------------------- /src/include/test/unit_inner_product_distance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_inner_product_distance.cc -------------------------------------------------------------------------------- /src/include/test/unit_ivf_flat_group.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_ivf_flat_group.cc -------------------------------------------------------------------------------- /src/include/test/unit_ivf_flat_index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_ivf_flat_index.cc -------------------------------------------------------------------------------- /src/include/test/unit_ivf_flat_metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_ivf_flat_metadata.cc -------------------------------------------------------------------------------- /src/include/test/unit_ivf_pq_group.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_ivf_pq_group.cc -------------------------------------------------------------------------------- /src/include/test/unit_ivf_pq_index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_ivf_pq_index.cc -------------------------------------------------------------------------------- /src/include/test/unit_ivf_pq_metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_ivf_pq_metadata.cc -------------------------------------------------------------------------------- /src/include/test/unit_ivf_qv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_ivf_qv.cc -------------------------------------------------------------------------------- /src/include/test/unit_ivf_vq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_ivf_vq.cc -------------------------------------------------------------------------------- /src/include/test/unit_kmeans.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_kmeans.cc -------------------------------------------------------------------------------- /src/include/test/unit_l2_distance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_l2_distance.cc -------------------------------------------------------------------------------- /src/include/test/unit_linalg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_linalg.cc -------------------------------------------------------------------------------- /src/include/test/unit_logging_count.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_logging_count.cc -------------------------------------------------------------------------------- /src/include/test/unit_logging_memory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_logging_memory.cc -------------------------------------------------------------------------------- /src/include/test/unit_logging_scoped_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_logging_scoped_time.cc -------------------------------------------------------------------------------- /src/include/test/unit_logging_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_logging_time.cc -------------------------------------------------------------------------------- /src/include/test/unit_matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_matrix.cc -------------------------------------------------------------------------------- /src/include/test/unit_matrix_with_ids.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_matrix_with_ids.cc -------------------------------------------------------------------------------- /src/include/test/unit_mdspan.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_mdspan.cc -------------------------------------------------------------------------------- /src/include/test/unit_memory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_memory.cc -------------------------------------------------------------------------------- /src/include/test/unit_nn-descent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_nn-descent.cc -------------------------------------------------------------------------------- /src/include/test/unit_nn-graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_nn-graph.cc -------------------------------------------------------------------------------- /src/include/test/unit_partition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_partition.cc -------------------------------------------------------------------------------- /src/include/test/unit_partitioned_matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_partitioned_matrix.cc -------------------------------------------------------------------------------- /src/include/test/unit_prng.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_prng.cc -------------------------------------------------------------------------------- /src/include/test/unit_queries.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_queries.cc -------------------------------------------------------------------------------- /src/include/test/unit_scoring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_scoring.cc -------------------------------------------------------------------------------- /src/include/test/unit_seeder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_seeder.cc -------------------------------------------------------------------------------- /src/include/test/unit_slicing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_slicing.cc -------------------------------------------------------------------------------- /src/include/test/unit_stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_stats.cc -------------------------------------------------------------------------------- /src/include/test/unit_stl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_stl.cc -------------------------------------------------------------------------------- /src/include/test/unit_tdb_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_tdb_io.cc -------------------------------------------------------------------------------- /src/include/test/unit_tdb_matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_tdb_matrix.cc -------------------------------------------------------------------------------- /src/include/test/unit_tdb_matrix_multi_range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_tdb_matrix_multi_range.cc -------------------------------------------------------------------------------- /src/include/test/unit_tdb_matrix_with_ids.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_tdb_matrix_with_ids.cc -------------------------------------------------------------------------------- /src/include/test/unit_tdb_partitioned_matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_tdb_partitioned_matrix.cc -------------------------------------------------------------------------------- /src/include/test/unit_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_utils.cc -------------------------------------------------------------------------------- /src/include/test/unit_vamana_group.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_vamana_group.cc -------------------------------------------------------------------------------- /src/include/test/unit_vamana_index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_vamana_index.cc -------------------------------------------------------------------------------- /src/include/test/unit_vamana_metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_vamana_metadata.cc -------------------------------------------------------------------------------- /src/include/test/unit_vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/unit_vector.cc -------------------------------------------------------------------------------- /src/include/test/utils/array_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/utils/array_defs.h -------------------------------------------------------------------------------- /src/include/test/utils/gen_graphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/utils/gen_graphs.h -------------------------------------------------------------------------------- /src/include/test/utils/query_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/utils/query_common.h -------------------------------------------------------------------------------- /src/include/test/utils/randomize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/utils/randomize.h -------------------------------------------------------------------------------- /src/include/test/utils/set_seed_from_catch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/utils/set_seed_from_catch.h -------------------------------------------------------------------------------- /src/include/test/utils/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/utils/test_utils.h -------------------------------------------------------------------------------- /src/include/test/utils/tiny_graphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/test/utils/tiny_graphs.h -------------------------------------------------------------------------------- /src/include/utils/fixed_min_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/utils/fixed_min_heap.h -------------------------------------------------------------------------------- /src/include/utils/logging_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/utils/logging_count.h -------------------------------------------------------------------------------- /src/include/utils/logging_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/utils/logging_memory.h -------------------------------------------------------------------------------- /src/include/utils/logging_scoped_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/utils/logging_scoped_time.h -------------------------------------------------------------------------------- /src/include/utils/logging_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/utils/logging_time.h -------------------------------------------------------------------------------- /src/include/utils/print_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/utils/print_types.h -------------------------------------------------------------------------------- /src/include/utils/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/utils/prng.h -------------------------------------------------------------------------------- /src/include/utils/seeder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/utils/seeder.h -------------------------------------------------------------------------------- /src/include/utils/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/utils/timer.h -------------------------------------------------------------------------------- /src/include/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/include/utils/utils.h -------------------------------------------------------------------------------- /src/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/src/README.md -------------------------------------------------------------------------------- /src/src/flat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/src/flat/CMakeLists.txt -------------------------------------------------------------------------------- /src/src/flat/flat_l2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/src/flat/flat_l2.cc -------------------------------------------------------------------------------- /src/src/flat/ivf_flat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/src/flat/ivf_flat.cc -------------------------------------------------------------------------------- /src/src/ivf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/src/ivf/CMakeLists.txt -------------------------------------------------------------------------------- /src/src/ivf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/src/ivf/README.md -------------------------------------------------------------------------------- /src/src/ivf/ivf_index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/src/ivf/ivf_index.cc -------------------------------------------------------------------------------- /src/src/ivf/ivf_query.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/src/ivf/ivf_query.cc -------------------------------------------------------------------------------- /src/src/vamana/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/src/vamana/CMakeLists.txt -------------------------------------------------------------------------------- /src/src/vamana/vamana_index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/src/vamana/vamana_index.cc -------------------------------------------------------------------------------- /src/src/vamana/vamana_query.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TileDB-Inc/TileDB-Vector-Search/HEAD/src/src/vamana/vamana_query.cc --------------------------------------------------------------------------------