ltu
ltu copied to clipboard
vicuna_ltu model file missing
Hi, thank you for your wonderful work!
I've tried to run "finetune_toy.sh" following this:
prepare toy data and pretrained models
./prep_train.sh
run finetuning on the data
./finetune_toy.sh
But it occurs Error: "FileNotFoundError: [Errno 2] No such file or directory: '../../../pretrained_mdls/vicuna_ltu/pytorch_model-00001-of-00002.bin'", The directory downloaded is like
#tree ../../../pretrained_mdls/vicuna_ltu/ ../../../pretrained_mdls/vicuna_ltu/ |-- config.json |-- generation_config.json |-- pytorch_model-00003-of-00002.bin |-- pytorch_model.bin.index.json |-- pytorch_model_cavmae.bin.index.json |-- special_tokens_map.json |-- tokenizer.model `-- tokenizer_config.json
Where can I download this missing file?
hi there,
thanks for your interest.
These files should be handled by ./prep_train.sh
, you will need to run it before ./finetune_toy.sh
.
If this does not solve the problem, it is possible that your region does not have dropbox service, in that case I highly recommend to use a VPN. To verify if it is a dropbox problem, can you try download the link?
https://github.com/YuanGongND/ltu/blob/4647269322473e8ce9fbb80a806dccf3643ab727/src/ltu/train_script/prep_train.sh#L22
We do provide a second option https://github.com/YuanGongND/ltu/tree/main#mirror-links, but that is a lot more complex (you need to download manually to correct path, and then build soft link etc)
-Yuan