You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 3, 2021. It is now read-only.
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?
Doing the following code:
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?