lvwarren·3 anni fa·discussMake this change in utils.py: def load_gpt2_params_from_tf_ckpt(tf_ckpt_path, hparams): [...] #name = name.removeprefix("model/") name = name[len('model/'):] and you're cool example will run in Google Colab under Python 3.8 otherwise the 3.9 Jupyter patching is a headache.
lvwarren·3 anni fa·discussmake this change and it will run under Python 3.8 in google colab #name = name.removeprefix("model/") name = name[len('model/'):] in function: load_gpt2_params_from_tf_ckpt in the utils.py module
and you're cool example will run in Google Colab under Python 3.8 otherwise the 3.9 Jupyter patching is a headache.