Colab 笔记
- 防止掉线
要先将左侧的弹出栏收缩起来
方法一function ClickConnect(){ console.log("Working"); document.querySelector("colab-toolbar-button").click() }setInterval(ClickConnect,60000)
方法二
let interval = setInterval(function(){
let ok = document.getElementById('ok');
if(ok != null){
console.log("Connect pushed");
ok.click();
}},60000)
方法三
colab-toolbar-button
function ClickConnect(){
console.log("Clicked on connect button");
document.querySelector("colab-connect-button").click()
}
setInterval(ClickConnect,60000)
增大内存
colab 使用 cat 时,输出量过大的提示
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable--NotebookApp.iopub_data_rate_limit
.
Current values:
NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
NotebookApp.rate_limit_window=3.0 (secs)
- v2ray 代理时要注意 dns 的解析问题
Windows 下 hosts 文件中同一个域名两个IP(多个IP)的解析顺序 hosts 文件对应在windows目录中的 /system32/drivers/etc/hosts 这是一个没有扩展名的文件,可以简单的帮你在系统内强行解析域名到指定的 IP 地址。
那么如果在hosts内加入同一个域名的多个 IP 会怎么样的,经过测试:
172.217.160.110 google.com
93.46.8.90 google.com
46.82.174.69 google.com
相同域名的取第一个,如果第一个IP受阻,那么会转向第二个IP,乃至第N个,但是这种方式达不到负载均衡的效果。
hosts 的概念:
hosts 是一个没有扩展名的系统文件,可以用记事本等工具打开,其作用就是将一些常用的网址域名与其对应的 IP 地址建立一个关联“数据库”,当用户在浏览器中输入一个需要登录的网址时,系统会首先自动从 hosts 文件中寻找对应的 IP 地址,一旦找到,系统会立即打开对应网页,如果没有找到,则系统会再将网址提交 DNS 域名解析服务器进行 IP 地址的解析。
需要注意的是,hosts 文件配置的映射是静态的,如果网络上的计算机更改了请及时更新 IP 地址,否则将不能访问。
- 使用细节:
“空闲”和“最长寿命”持续时间没有官方参考
运行笔记本的“最长使用寿命”为12小时(浏览器打开)
“空闲”笔记本实例在90分钟后关闭
最多可同时运行2台笔记本
如果关闭笔记本窗口并在实例仍在运行时打开它,则单元格输出和变量仍将保持不变。但是,如果笔记本实例已被回收,则单元输出和变量将不再可用。
In short:
n1-highmem-2 instance
2vCPU @ 2.2GHz
13GB RAM
100GB Free Space
idle cut-off 90 minutes
maximum 12 hours
You can have a maximum of 2 notebooks running concurrently
If you close the notebook window and open it while the instance is still running, the cell outputs and variables will still persist. However if the notebook instance has been recycled, your cell outputs and variables will no longer be available.
2020 Update:
GPU instance downgraded to 64GB disk space.
参考链接:
1. How to prevent Google Colab from disconnecting?
2. What’s the hardware spec for Google Colaboratory?
Can I run a Google Colab (free edition) script and then shutdown my computer?
请多多指教。
文章标题:Colab 笔记
本文作者:顺强
发布时间:2018-10-28, 23:59:00
原始链接:http://shunqiang.ml/colab-offline/版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。