Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

750M ELM model download links lead to 403 forbidden #4

Open
Koios1143 opened this issue Apr 30, 2024 · 0 comments
Open

750M ELM model download links lead to 403 forbidden #4

Koios1143 opened this issue Apr 30, 2024 · 0 comments

Comments

@Koios1143
Copy link

Hello,

Recently I've trying to reproduce the experiments and also tried the pretrained ELMs, but it came out that some of the links are not working well. Below are the models that cannot be downloaded successfully.

  • 1b
  • anonymized_openwebtext
  • anonymized_realnews
  • anonymized_reviews

All of them are with model_scale=750M, model_architecture=elmforest;

Here's how I download those files.

model_scales=("125M" "350M" "750M" "1.3B")
model_architecture=elmforest;
domains=("1b" "anonymized_openwebtext" "anonymized_realnews" "anonymized_reviews" "cs" "legal" "med" "reddit")

for model_scale in "${model_scales[@]}"
do
    for domain in "${domains[@]}"
    do
        mkdir -p btm_models/models/${model_scale}/${model_architecture}/${domain}/
        cd btm_models/models/${model_scale}/${model_architecture}/${domain}/
        wget -c https://dl.fbaipublicfiles.com/btm/models/${model_scale}/${model_architecture}/${domain}/checkpoint_last.pt
        cd -
    done
done

Thank you for open-sourcing this work!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant