gpt2client icon indicating copy to clipboard operation
gpt2client copied to clipboard

gpt2 = GPT2Client('117M') Doesn't work. SSL ERROR.

Open mist1cloth opened this issue 4 years ago • 0 comments

Doing the following code: `from gpt2_client import GPT2Client

gpt2 = GPT2Client('117M', save_dir="models") # This could also be 355M, 774M, or 1558M gpt2.load_model(force_download=False)`

Isn't working and it gives the following error: requests.exceptions.SSLError: HTTPSConnectionPool(host='storage.googleapis.com', port=443): Max retries exceeded with url: /gpt-2/models/117M/checkpoint (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available."))

Can't I just download the models myself and keep it somewhere so it doesn't ever have to download them again?

mist1cloth avatar May 20 '21 11:05 mist1cloth