当前位置:网站首页>Pytorch轻量级可视化工具wandb(local)
Pytorch轻量级可视化工具wandb(local)
2022-07-03 03:13:00 【ChaoFeiLi】
Pytorch轻量级可视化工具wandb(免翻墙版) - 知乎
本文主要介绍的是wandb开源的local版本,按照wandb的官方文档快速将wandb的服务迁移到自己的云服务器上。
1、环境要求
docker
python3
2、操作步骤
首先用pip安装wandb包
pip install wandb执行shell命令
# 这个ip需要是你公网的ip地址,也可以是本地的ipdi
wandb local -e HOST=http://xxx.xxx.xxx.xxx:8080 看到这个输出就说明你的服务已经启动成功了,这个命令会自动通过docker拉取并在8080端口启动wandb的服务,我们所需要做的就是修改一下镜像里面的配置。
docker exec -it wandb-local bash
vi /vol/env/users.htpasswd # Remove the line with [email protected] in it #删除这个文件的里面的东西
/usr/local/bin/local password [email protected] #这一步会让你设置登录的密码,后面登录的账号就是这个邮箱,登陆密码就是这里设置的密码
exit #退出镜像文件现在就可以访问http://X.X.X.X:8080,跟着里面的步骤进行登录,登录之后你会看到这个界面

然后点击这个Get a free license获得这个密钥,需要你复制下来后面会用到。如果忘记了密钥可以点击下图所示的位置重新查看密钥。(就是这个左上角->Deploy Manager )

然后点击这个进入到配置密钥的地方


输入密钥后点击Update settings就配置完了。
3、使用步骤
只需进行登陆时按照下面操作一下,就可跟官方网站原来的一样使用,如下图所示


边栏推荐
- [C language] MD5 encryption for account password
- 模型转换onnx2engine
- vfork执行时出现Segmentation fault
- How to select the minimum and maximum values of columns in the data table- How to select min and max values of a column in a datatable?
- Pat class B common function Usage Summary
- [Chongqing Guangdong education] cultural and natural heritage reference materials of China University of Geosciences (Wuhan)
- VS 2019配置tensorRT
- Parameter index out of range (1 > number of parameters, which is 0)
- File rename
- New programmers use the isXXX form to define Boolean types in the morning, and are discouraged in the afternoon?
猜你喜欢
随机推荐
Stop using system Currenttimemillis() takes too long to count. It's too low. Stopwatch is easy to use!
Deep learning: multi-layer perceptron and XOR problem (pytoch Implementation)
Force deduction ----- the minimum path cost in the grid
I2C 子系统(二):I3C spec
模型转换onnx2engine
使用InputFilter限制EditText时踩坑及解决方案
Gavin teacher's perception of transformer live class - rasa project's actual banking financial BOT Intelligent Business Dialogue robot architecture, process and phenomenon decryption through rasa inte
The process of connecting MySQL with docker
Check log4j problems using stain analysis
Le processus de connexion mysql avec docker
Practice of traffic recording and playback in vivo
I2C subsystem (IV): I2C debug
Destroy the session and empty the specified attributes
idea 加载不了应用市场解决办法(亲测)
Add automatic model generation function to hade
Notifydatasetchanged not applicable to recyclerview - notifydatasetchanged not working on recyclerview
Spark on yarn resource optimization ideas notes
Docker install MySQL
模糊查詢時報錯Parameter index out of range (1 > number of parameters, which is 0)
BigVision代码









