使用带有Firefox的Tensorboard在Google Colab中获取错误403

时间:2020-10-06 03:01:51

标签: python python-3.x firefox google-colaboratory tensorboard

我的云端硬盘上已经存在一个tfevent文件,并且已成功将其连接到Google Colab。在Tensorboard Github的问题中进行搜索之后,我发现必须将dom.serviceWorkers.enabled设置为True,这已经完成了。但是在执行以下两个步骤之后,请在Google Colab上进行操作:

  1. %load_ext tensorboard
  2. %tensorboard --logdir path/to/logs

第二步单元格出现错误403:Error 403: google colab

我使用的是Firefox版本81.0.1(64位),默认模式是“私有窗口”,因此在关闭所有浏览器窗口后,历史记录和缓存将被清除。

有人可以帮我吗?

4 个答案:

答案 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 停用增强跟踪保护

fn:contains-token

答案 2 :(得分:0)

Tensorboard似乎需要您启用第三方cookie才能运行,而不会返回HTTP 403(禁止)错误。

我在使用Chrome时遇到了同样的问题,并且仅通过允许所有操作解决了该问题:

screenshot cookies chrome

您可以在Firefox上执行以下操作:

screenshot firefox tracking protection

您还可以找出需要哪个确切的cookie,然后仅允许该cookie。

答案 3 :(得分:0)

如果您确定日志没有用,请尝试清除日志。

!rm -rf ./logs/ 

再次重新加载张量板并检查它是否有效。