logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Linux下安装gnuplot

sudo apt-get install gnuplot但是在 terminal 里面输入:gnuplot提示 Terminal type set to unknown。解决方法是安装 x11:sudo apt-get install gnuplot-x11

#linux
Linux中的uniq命令(去掉重复项,输出重复项)

ls /bin /usr/bin | sort | uniq | less上面这条命令的实际效果是:获得 ls /bin /usr/bin 的 output将上述 output 进行 sort (排序),并去掉重复项 (uniq)将经过以上处理的 output 作为 less 命令的 input,输出在屏幕上相反地,如果想输出重复项,使用以下命令:ls /bin /usr/bin | sor

#linux
AttributeError: module 'tensorflow_core._api.v2.config' has no attribute 'list_physical_devices'

AttributeError: module ‘tensorflow_core._api.v2.config’ has no attribute ‘list_physical_devices’应该是接口更新了,改成以下接口就不会报错了。查看所有GPUtf.config.experimental.list_physical_devices('GPU')查看所有设备tf.config.ex...

#tensorflow#机器学习#数据挖掘 +2
Linux复制命令cp进阶

cp -a:连同属性和权限也一起复制cp -i:如果不带该参数,默认覆盖同名文件而不会提醒。cp -u:只拷贝符合以下条件的文件到目标目录:目标目录中不存在的文件或目标目录中文件版本较旧的文件。

#linux
Keras MAE和MSE source code

def mean_squared_error(y_true, y_pred):if not K.is_tensor(y_pred):y_pred = K.constant(y_pred)y_true = K.cast(y_true, y_pred.dtype)return K.mean(K.square(y_pred - y_true), ...

到底了