logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

用清华镜像快速安装tensorflow、numpy

1、安装tensorflow​pip install tensorflow==1.13.1 -i https://pypi.tuna.tsinghua.edu.cn/simple2、安装tensorflow-gpupip install tensorflow-gpu==1.13.1 -i https://pypi.tuna.tsinghua.edu.cn/simple3、安装n...

tensorflow生成pb模型文件及加载pb文件预测

再进入正题前,我们先介绍一下checkpoint(ckpt)和pb的区别和联系model保存方法结果文件加载ckpttf.train.Saver()主要的4个文件checkpointmodel.ckpt.data-xxxmodel.ckpt.indexmodel.ckpt.metatf.train.Saver() save...

#tensorflow
linux运行和关闭后台python任务

1、在后台运行任务nohup python -u service.py > out.log 2>&1 &###service.py为要运行的程序2、查看后台任务,获取任务PIDps -aux3、关闭后台运行任务kill -9 PID...

linux下conda创建虚拟环境

1、查看conda当前使用源conda config --show-sources2、添加指定源由于Anaconda.org的服务器在国外,下载速度慢,而且可能报错CondaHTTPError: HTTP 404 NOT FOUND for url <https://mirrors.tuna.tsinghua.edu.cn/ananconda/pkgs/main,清华镜像源有An...

到底了