logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

ubuntu下有道词典不能取词

安装完有道后,发现不能划词\取词。在shell终端驱动youdao-dict后进行屏幕取词翻译,显示如下错误:QOpenGLShaderProgram::uniformLocation( qt_Matrix ): shader program is not linked经过调查发现是有道词典找不到显卡驱动问题。在/etc/ld.so.conf.d中的x86_64-linux-gnu_GL....

深度学习【13】tensorflow保存graph和参数为pb文件

from tensorflow.python.framework.graph_util import convert_variables_to_constantsgraph = convert_variables_to_constants(sess, sess.graph_def, ["out"]) #out为保存网络的最后输出节点名称tf.train.write_graph(

#tensorflow
wget下载到指定目录并指定文件名

wgethttps://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ./tmp/miniconda3.sh下载到tmp文件夹,并命名为miniconda3.sh

深度学习【14】代价敏感损失函数

def class_balanced_sigmoid_cross_entropy(logits, label, name='cross_entropy_loss'):"""The class-balanced cross entropy loss,as in `Holistically-Nested Edge Detection<http://arx..

深度学习【1】ubuntu中利用h5py保存训练好的keras 神经网络模型

利用h5py保存的模型所占的空间非常小。在利用h5py保存keras训练好的模型之前需要先安装h5py,具体的安装过程可参考我关于h5py安装的博文:http://blog.csdn.net/linmingan/article/details/50736300利用h5py保存和读取keras模型的代码如下: import h5py from keras.models import m...

#python#ubuntu#keras
到底了