Cannot download the pre-training weight
Closed this issue · 2 comments
HelloWorldLTY commented
Thanks for your work. It seems that we cannot download the pre-training weights with the example codes:
/home/tl688/.cache/nucleotide_transformer/1B_agro_nt/hyperparams.json: 100%|██████████| 1.24k/1.24k [00:00<00:00, 6.99kB/s]
/home/tl688/.cache/nucleotide_transformer/1B_agro_nt/ckpt.joblib: 0%| | 0.00/3.97G [00:00<?, ?B/s]
The second process does not change for a long time. Thanks a lot.
dallatt commented
Hello @HelloWorldLTY ,
This comes from interactions between tqdm
and jupyter
notebook. You can bypass it by disabling tqdm,
or I have just added a verbose argument to get_pretrained_model
which when set to False
will dot display a progress bar and therefore not trigger the problem.
Best,
Hugo
HelloWorldLTY commented