当前位置:网站首页>Tensorboard usage record
Tensorboard usage record
2022-07-28 03:33:00 【AutoGalaxy】
tensorboard The learning website of :Visualizing Models, Data, and Training with TensorBoard — PyTorch Tutorials 1.12.0+cu102 documentation
You can find the corresponding link URL in the red box above
tensorboard Main functions used
One . Save the structure diagram of the network ( stay tensorboard Of GRAPHS in )
1.1. Wrong operation steps
It's strange. , The following series of operations cannot be performed in tensorboard Show the model structure , No more words .
import torch
import numpy as np
from torch.utils.tensorboard import SummaryWriter
import torch.nn as nn
class mymodel(nn.Module):
def __init__(self):
super(mymodel, self).__init__()
self.model1 = nn.Sequential(
nn.Conv2d(1, 3, kernel_size=(3,3), stride=(1,1), padding=0,边栏推荐
猜你喜欢
随机推荐
Log analysis tool (Splunk)
并发编程面试题总结
整合SSM实现增删改查搜索
Summary of concurrent programming interview questions
ES6 从入门到精通 # 08:扩展的对象的功能
How to use JDBC to operate database
ASEMI整流桥GBPC5010,GBPC5010参数,GBPC5010大小
Summary of static blog building tools
Robot development -- lead screw and guide rail
Contour detection based on OpenCV (3)
When QML uses layout layout, a large number of < unknown file >: QML qquicklayoutattached: binding loop detected for property circular binding warnings appear
Redis基本操作
[5g NR] RRC reject analysis
When a dialog box pops up, the following form is not available
Outlook tutorial, how to use color categories and reminders in outlook?
数字经济已成为最大看点
Redis communication protocol -- resp protocol
玩一玩WolframAlpha计算知识引擎
D2DEngine食用教程(4)———绘制文本
[nature of class (in Objective-C language)]








