llama
llama copied to clipboard
Anyone got approved?
I requested a couple of days ago but haven't heard back. I was wondering if anyone was approved.
me too
same here.. applied few days ago, no response. Odd..
duplicate of #26
i just got approved
I just received email and got approved
Just got approved
Created a tiny PR for fixing the download script issue if anyone is facing that.
@vaibhavk97 any specific issue with download script, i just started the download, as of now it is downloading properly
I have got the URL. But this URL is not worked
I've gotten access but the download script is not working. I tried the new script from the @vaibhavk97 pr but it still doesn't work.
What seems to be the issue? its working fine for me.
@liujiaheng @arian81 You need to modify the "PRESIGNED_URL" and "TARGET_FOLDER" fields in download.sh
I have got the URL. But this URL is not worked
maybe you could try to use the download.sh for for dowloading the model
I have got the URL. But this URL is not worked
same error!
@dst111dst @Deep1994 you're suppose to use the script. The link sent to your email is just a base email, other parameters need to be added to it using the download script.
What seems to be the issue? its working fine for me.
Oh i figured it out it was an issue on my end while fixing my script. I hope they merge the fix soon.
@ankur6ue i just replaced the parameters in download.sh and it works.
set the url in the download.sh and also choose the target folder in linux use bash download.sh and in windows use git bash
Weights are downloading fine for me as well.
Set the pre-signed URL in the bash script:
PRESIGNED_URL=""" # Set your URL here
declare -A N_SHARD_DICT
N_SHARD_DICT["7B"]="0"
N_SHARD_DICT["13B"]="1"
N_SHARD_DICT["30B"]="3"
N_SHARD_DICT["65B"]="7"
echo "Downloading tokenizer"
wget ${PRESIGNED_URL/'*'/"tokenizer.model"} -O ${TARGET_FOLDER}"/tokenizer.model"
wget ${PRESIGNED_URL/'*'/"tokenizer_checklist.chk"} -O ${TARGET_FOLDER}"/tokenizer_checklist.chk"
(cd ${TARGET_FOLDER} && md5sum -c tokenizer_checklist.chk)
for i in ${MODEL_SIZE//,/ }
do
echo "Downloading ${i}"
mkdir -p ${TARGET_FOLDER}"/${i}"
for s in $(seq -f "0%g" 0 ${N_SHARD_DICT[$i]})
do
wget ${PRESIGNED_URL/'*'/"${i}/consolidated.${s}.pth"} -O ${TARGET_FOLDER}"/${i}/consolidated.${s}.pth"
done
wget ${PRESIGNED_URL/'*'/"${i}/params.json"} -O ${TARGET_FOLDER}"/${i}/params.json"
wget ${PRESIGNED_URL/'*'/"${i}/checklist.chk"} -O ${TARGET_FOLDER}"/${i}/checklist.chk"
echo "Checking checksums"
(cd ${TARGET_FOLDER}"/${i}" && md5sum -c checklist.chk)
done
Run
sudo bash download.sh
Thanks a lot! I just got approved~
just got approved
Just got approved, download script worked as well, however I am stuck on running the example.py, getting an error
Just got approved!
Haven't heard anything. Guess I didn't get approved then ☹ 😭😭😭😭😭
I have got the URL. But this URL is not worked
use download.sh
Just got approved. But running download.sh returned network errors. Failed to download weights. Strange 🤔
Just got approved, downloaded weights successfully.

update approved now
Anyone approved without an .edu email address? This email is only for American universities?
I tried to update with the provided url by access team and filled up the target folder and run download.sh in terminal with conda by Mac Os. Many errors came up. Does anyone help me what commands should I use to download the weights successfully? Thanks.