Initial commit
This commit is contained in:
17
search_r1/search/build_index.sh
Normal file
17
search_r1/search/build_index.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
corpus_file=/your/corpus/jsonl/file # jsonl
|
||||
save_dir=/the/path/to/save/index
|
||||
retriever_name=e5 # this is for indexing naming
|
||||
retriever_model=intfloat/e5-base-v2
|
||||
|
||||
CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 python index_builder.py \
|
||||
--retrieval_method $retriever_name \
|
||||
--model_path $retriever_model \
|
||||
--corpus_path $corpus_file \
|
||||
--save_dir $save_dir \
|
||||
--use_fp16 \
|
||||
--max_length 256 \
|
||||
--batch_size 512 \
|
||||
--pooling_method mean \
|
||||
--faiss_type Flat \
|
||||
--save_embedding
|
||||
Reference in New Issue
Block a user