摘要: 1、查找可用的tensorflow源,该命令运行后终端会输出所有可用的源 2、这里name是上一步中输出源的tensorflow name栏的名称,show命令会在终端输出该源具体的信息和下载需要的指令,执行后如图: 3、卸载 ubuntu16.04+cuda9.0_cudnn7.5+tensorf 阅读全文
posted @ 2019-08-15 20:46 Bamboo123 阅读(626) 评论(0) 推荐(0) 编辑
摘要: https://github.com/torch/torch7/issues/1086 按照官网的安装方法会出现问题,类似于什么不能编译 上面的安装方法work,但要注意“Be careful with the solution that @adam-dziedzic provided becaus 阅读全文
posted @ 2019-08-09 21:49 Bamboo123 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 一、简介EGL 是渲染 API(如 OpenGL ES)和原生窗口系统之间的接口。通常来说,OpenGL 是一个操作 GPU 的 API,它通过驱动向 GPU 发送相关指令,控制图形渲染管线状态机的运行状态,但是当涉及到与本地窗口系统进行交互时,就需要这么一个中间层,且它最好是与平台无关的。因此 E 阅读全文
posted @ 2019-06-24 15:02 Bamboo123 阅读(1677) 评论(0) 推荐(0) 编辑
摘要: 在linux环境编译应用程式或lib的source code时常常会出现如下的错误讯息: 代码如下: /usr/bin/ld: cannot find -lxxx 这些讯息会随着编译不同类型的source code 而有不同的结果出来如: 代码如下: /usr/bin/ld: cannot find 阅读全文
posted @ 2019-06-24 14:16 Bamboo123 阅读(12369) 评论(0) 推荐(0) 编辑
摘要: import tensorflow as tf import numpy as np def distance_matrix(array1, array2): """ arguments: array1: the array, size: (num_point, num_feature) array2: the samples, size: (n... 阅读全文
posted @ 2019-06-04 16:12 Bamboo123 阅读(284) 评论(0) 推荐(0) 编辑
摘要: """ Simple script to convert ply to obj models """ import os from argparse import ArgumentParser from plyfile import PlyData def parse_args(): parser = ArgumentParser() parser.add_argument... 阅读全文
posted @ 2019-06-04 13:52 Bamboo123 阅读(869) 评论(0) 推荐(0) 编辑
摘要: 为了远程使用Linux服务器,折腾了一个下午。最终看来还是用vnc最简单了。 介绍一个 VNC连接工具:iis7服务器管理工具 IIs7服务器管理工具可以批量连接并管理VNC服务器 作为服务器集成管理器,它最优秀的功能就是批量管理windows与linux系统服务器、vps。能极大的提高站长及服务器 阅读全文
posted @ 2019-04-11 22:24 Bamboo123 阅读(6446) 评论(0) 推荐(0) 编辑
摘要: 在编译PCL的时候总是报错,其他人都没问题 后来发现是我cmakePCL的时候,QT引用的是anaconda里的qt,把这个一改果然没问题了,耽误了一天时间。 感谢stack上这位老铁 阅读全文
posted @ 2019-04-10 12:13 Bamboo123 阅读(3642) 评论(2) 推荐(0) 编辑
摘要: batch normalization 1、BN算法,一般用在全连接或卷积神经网络中。可以增强整个神经网络的识别准确率以及增强模型训练过程中的收敛能力2、对于两套权重参数,例如(w1:0.01,w2:10000,w3:0.01)和(w1:1,w2:1,w3:1),他们对应的(Z=x w1 w2 w3 阅读全文
posted @ 2019-03-12 21:22 Bamboo123 阅读(433) 评论(0) 推荐(0) 编辑
摘要: 修行的猫 https://me.csdn.net/sinat_17196995 AI算法-王小草 https://me.csdn.net/sinat_33761963、 杨逸凡 https://www.jianshu.com/u/0b4f30177d93 卷积与反卷积 https://blog.cs 阅读全文
posted @ 2019-03-12 15:58 Bamboo123 阅读(164) 评论(0) 推荐(0) 编辑