How to transfer and load Glove vectors on a machine without internet

I was working on computer gpu which doesn’t have internet connection. So something like

TEXT.build_vocab(train_data, 
                 vectors = "glove.6B.50d", 
                 max_size=25000,
                 unk_init = torch.Tensor.normal_)

gives me an error

urllib.error.URLError: <urlopen error [Errno 111] Connection refused>

But I can transfer to it via a usb-drive. How can I download glove vectors from somewhere and configure them to work on pytorch?

1 Like

were you able to solve this problem?