我的云端硬盘上已经存在一个tfevent文件,并且已成功将其连接到Google Colab。在Tensorboard Github的问题中进行搜索之后,我发现必须将dom.serviceWorkers.enabled设置为True,这已经完成了。但是在执行以下两个步骤之后,请在Google Colab上进行操作:
%load_ext tensorboard
%tensorboard --logdir path/to/logs
我使用的是Firefox版本81.0.1(64位),默认模式是“私有窗口”,因此在关闭所有浏览器窗口后,历史记录和缓存将被清除。
有人可以帮我吗?
答案 0 :(得分:1)
我遇到了与在 Chrome 设置中打开“Block third-party cookies
”相同的问题。请参阅详细问题线程 here。我尝试将“googleusercontent.com”列入白名单,但没有奏效。
对于 Chrome,
1. chrome://settings/
2. Under Privacy and security >> Cookies and other site data >> Allow all cookies
为了勇敢,
1. Turn off the shields
答案 1 :(得分:1)
对我来说,它适用于 Firefox 停用增强跟踪保护。
答案 2 :(得分:0)
Tensorboard似乎需要您启用第三方cookie才能运行,而不会返回HTTP 403(禁止)错误。
我在使用Chrome时遇到了同样的问题,并且仅通过允许所有操作解决了该问题:
您可以在Firefox上执行以下操作:
您还可以找出需要哪个确切的cookie,然后仅允许该cookie。
答案 3 :(得分:0)
如果您确定日志没有用,请尝试清除日志。
!rm -rf ./logs/
再次重新加载张量板并检查它是否有效。