Corrupt TIN Pytorch Pretrained Weights
hyzcn opened this issue · 4 comments
@DirtyHarryLYL thanks for sharing the code base , can you please share the pre-trained Pytorch model for TIN as the file was corrupted when I download from SJTU link. Many Thanks in Advance!
Sorry for that. If you are using Linux operating system, the link may not work well.
A script to download the weight is uploaded to the repository, and you can now download it by executing: bash download_weight.sh
If there is any further problem, please feel free to contact us!
Thanks @Dou-Yiming for the code! I tried the script can download the weight, but it mentions "tar: this doesn't look like a tar archive". Wondering say if can help provide a tar.gz or .zip format file? Many Thanks!
Thanks @Dou-Yiming for the code! I tried the script can download the weight, but it mentions "tar: this doesn't look like a tar archive". Wondering say if can help provide a tar.gz or .zip format file? Many Thanks!
Hi, the weight file is saved using torch.save(), thus there is no need to unzip it.
You may try loading the weight by simply executing ckpt=torch.load(file_path)
Thanks, I see! The code can run now :)