当前位置:网站首页>Use tensorboard remotely on the server
Use tensorboard remotely on the server
2022-08-09 16:17:00 【pomelo33】
1 . When connecting to ssh, add the -L command to redirect port 6006 of the server to your own machine:
ssh -L 16006:127.0.0span>.1:6006 username@remote_server_ip16006:127.0.0.1 represents port 16006 on your own machine, 6006 is used by tensorboard on the server, you can modify it yourself.
2 . Start tensorboard normally using port 6006 on the server:
tensorboard --logdir=xxx --port=6006--logdir is the address of the log file, it is best to enter the absolute address
Take mine as an example:
tensorboard --logdir = xxx/logs_2021-12-07-20-55 --port=6006
3. Enter the address in the local browser
http://127.0.0.1:16006/You can view various training information on the web page
Reference: https://blog.csdn.net/weixin_35653315/article/details/71327740
边栏推荐
猜你喜欢
随机推荐
Qt控件-QTextEdit使用记录
量化程序化交易都有哪些热点争议?
How to make your quantitative trading system have probabilistic advantages and positive return expectations?
docker安装seata(指定配置文件、数据库、容器数据卷等)
运算符学习
简单记录下offsetof和container_of
OpenSSF's open source software risk assessment tool: Scorecards
Talking about Shallow Cloning and Deep Cloning of ArraryList
CV复习:BatchNorm
如何将List<Map>进行分组数值计算合并排序
C语言运算符优先级
OpenCV简介与搭建使用环境
欢迎使用CSDN-markdown编辑器
内存泄露检测工具VLD(Visual Leak Detector)使用说明
Mathematica 作图详解
My MySQL database was attacked and deleted for ransom, forcing me to use all my might to recover data
软件工程基础知识--软件过程模型
经典面试题 之 TCP 三次握手/ 四次挥手
怎么才可以知道量化程序化交易是否有效?
OpenCV - Matrix Operations Part 3







