gpt2client
gpt2client copied to clipboard
gpt2 = GPT2Client('117M') Doesn't work. SSL ERROR.
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?