0

我正在运行 Jupyter 笔记本,在尝试运行以下代码时出现错误。任何人都可以请建议。

import tensorflow as tf
import tensorflow_datasets as tfds
import tensorflow_hub as hub
pre_trained_model = "https://tfhub.dev/google/tf2-preview/gnews-swivel-20dim/1"
hub_layer = hub.KerasLayer(pre_trained_model, input_shape=[], dtype=tf.string, trainable=True)

错误
URLError:<urlopen 错误 [SSL:CERTIFICATE_VERIFY_FAILED] 证书验证失败:无法获取本地颁发者证书 (_ssl.c:1076)>

4

1 回答 1

0

您的 SSL 证书的验证服务器似乎失败了。尝试在 jupyter 配置文件中添加路径c.NotebookApp.client_ca = ''

于 2020-09-22T19:26:57.013 回答