编程技术
文章平均质量分 59
sgx_hit
这个作者很懒,什么都没留下…
展开
-
Linux中使用Anaconda+conda搭建、管理多版本Python环境
简介在Linux下配置过多次深度学习环境,都需要用到Python。本文分享一下,利用Anaconda和conda配置多版本的python环境的经验。也可以使用pip+virtualenv管理。但是conda更简单方便,下文也将简介一下conda、pip、anaconda之间的区别。conda、pip、anaconda是什么?有什么区别? conda+anac...原创 2018-07-23 15:01:41 · 1862 阅读 · 0 评论 -
ldconfig用法详解,动态链接库管理命令
声明转载自Linux命令大全正文ldconfig命令的用途主要是在默认搜寻目录/lib和/usr/lib以及动态库配置文件/etc/ld.so.conf内所列的目录下,搜索出可共享的动态链接库(格式如lib*.so*),进而创建出动态装入程序(ld.so)所需的连接和缓存文件。缓存文件默认为/etc/ld.so.cache,此文件保存已排好序的动态链接库名字列表,为了让动态链接库为系统...转载 2018-07-23 15:06:53 · 1317 阅读 · 0 评论 -
Ubuntu 安装 OpenCV3 详细教程附测试(亲测可用)
声明本文大部分为转载,进行若干校对和更正,参考原文包括Learn OpenCV Installing OpenCV on Ubuntu Step 1: Update packages 1 2 sudo apt-get update sudo apt-get upgrade Step 2: Install OS librarie...原创 2018-07-23 17:54:32 · 2007 阅读 · 0 评论 -
[CS20SI] 1 - Introduction to TensorFlow
0. Tensorflow librariesTF Learn (tf.conrtib.learn): simplified interface that transits tf to scikit-learn TF Slim (tf.contrib.slim): lightweight library for defining, training and evaluating comple...原创 2018-08-02 09:49:55 · 209 阅读 · 0 评论 -
[CS20SI] 2 - Operations
2.1 TensorBoarda = tf.constant(2)b = tf.constant(3)x = tf.add(a, b)writer = tf.summary.FileWriter('./graphs', tf.get_default_graph())writer.close()2.2 Constantstf.constant( value, ...原创 2018-11-13 22:53:00 · 216 阅读 · 0 评论 -
Tensorflow 代码结构注意事项
https://danijar.com/structuring-your-tensorflow-models/1. 避免重复定义普通的tensorflow model肯能是这样实现的class Model: def __init__(self, data, target): data_size = int(data.get_shape()[1]) ...转载 2018-11-14 21:31:48 · 339 阅读 · 0 评论