google Colab 使用教程 免费GPU google Colaboratory 上运行 pytorch tensorboard
Posted CV-杨帆
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了google Colab 使用教程 免费GPU google Colaboratory 上运行 pytorch tensorboard相关的知识,希望对你有一定的参考价值。
0 前言
Google的一项免费云端机器学习服务(免费GPU)
在学习pytorch的过程中,需要用到GPU,于是我最先想到google,这个家良心公司貌似提供了免费的GPU使用,果不其然,昨晚我在google的Colab 跑通了,真是良心企业,反观国内企业,哎。
google Colab官方教程:https://colab.research.google.com/
通过google云盘进入google Colab:https://drive.google.com/drive/my-drive
b站视频:https://www.bilibili.com/video/BV1JV4y1g7qe/
1 Google Colab 快速上手
2 在colab 上运行tensorboard
import torch
from torch.utils.tensorboard import SummaryWriter
writer = SummaryWriter("./logs")
for i in range(100):
writer.add_scalar("y=x",i,i)
writer.close()
%load_ext tensorboard
%tensorboard --logdir=./logs
以上是关于google Colab 使用教程 免费GPU google Colaboratory 上运行 pytorch tensorboard的主要内容,如果未能解决你的问题,请参考以下文章
02google Colab |pytorch Dataset类代码实战 免费GPU google Colaboratory 使用教程
02google Colab |pytorch Dataset类代码实战 免费GPU google Colaboratory 使用教程
03google Colab |pytorch TensorBoard add_image 代码实战 免费GPU google Colaboratory 使用教程
03google Colab |pytorch TensorBoard add_image 代码实战 免费GPU google Colaboratory 使用教程