mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
[skip ci] Add comment for the collection name resolution on benchmark (#8578)
Signed-off-by: wangting0128 <ting.wang@zilliz.com>
This commit is contained in:
parent
cf573a2caa
commit
0b05afa4e2
@ -13,6 +13,15 @@ def operations_parser(operations):
|
||||
|
||||
|
||||
def collection_parser(collection_name):
|
||||
"""
|
||||
Resolve the collection name to obtain the corresponding configuration
|
||||
e.g.:
|
||||
sift_1m_128_l2
|
||||
sift: type of data set
|
||||
1m: size of the data inserted in the collection
|
||||
128: vector dimension
|
||||
l2: metric type
|
||||
"""
|
||||
tmp = collection_name.split("_")
|
||||
# if len(tmp) != 5:
|
||||
# return None
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user