自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(76)
  • 收藏
  • 关注

原创 commands

check the GPU usage on ubuntu: nvidia-smihow to check the number of file in a directory ubuntu or find number of files in folder and subfolders:ls -lR | grep ^- | wc -l

2020-05-02 10:01:37 262

转载 automotic mount disk unbunt

https://www.fosslinux.com/4216/how-to-automount-hard-disk-partitions-in-ubuntu.htmor some reason, if it’s not happening automatically by default settings, thereis a fix for it. Let’s take a quic...

2020-04-23 15:13:09 303

翻译 mouse install GTX2080TI+CUDA10.0+CUDAA7.0要死了

https://wiki.ubuntu.com/UEFI/SecureBoot/DKMSDKMSDKMS modules need to be configured to work with UEFI Secure BootUbuntu is now checking module signing by default, on kernels 4.4.0-18.34,...

2020-04-23 13:12:38 443

原创 starting light display manager

.Boot in recovery mode with read/write access Go to shell as root sudo apt-get remove lightdm (now gdm3 is default) Start the network: sudo service network-manager restart sudo apt upgrade re...

2020-04-22 18:18:00 2382

转载 GAN_set

https://github.com/DreamPurchaseZnz/GAN_modelspaper and source code

2020-02-13 10:07:36 137

原创 挂载硬盘

sudo fdisk -l #show the diskssudo mount /dev/sda1 /home/maolab/mount_point --types=ext4 --options=rw # example of mounting /dev/sda1# check the files and copy themsudo umount /dev/sda1 #unmo...

2020-02-13 09:37:48 144

转载 AlexNet

from:https://www.cnblogs.com/wangguchangqing/p/10333370.html由于受到计算机性能的影响,虽然LeNet在图像分类中取得了较好的成绩,但是并没有引起很多的关注。 知道2012年,Alex等人提出的AlexNet网络在ImageNet大赛上以远超第二名的成绩夺冠,卷积神经网络乃至深度学习重新引起了广泛的关注。AlexNet特点Al...

2020-02-07 12:19:32 240

转载 SI and FID

from:https://zhuanlan.zhihu.com/p/54213305source code:https://github.com/mseitzer/pytorch-fidhttps://zhuanlan.zhihu.com/p/54146307Inception Score 的问题首先回顾一下 Inception Score 的两个假设:越真实的图片,输入预训...

2020-02-07 10:21:40 860

转载 A Simple Guide to the Versions of the Inception Network

https://towardsdatascience.com/a-simple-guide-to-the-versions-of-the-inception-network-7fc52b863202

2020-02-07 09:34:19 135

转载 Deep learning

installCUDA 9.0fromhttps://qiita.com/JeJeNeNo/items/b30597918db3781e20cfterminalsudo dpkg -i cuda-repo-ubuntu1604_9.0.*_amd64.debsudo apt-key adv --fetch-keys http://developer.download.nvidi...

2020-01-17 09:37:49 134

转载 CGAN论文详解与代码详解

from:https://mp.weixin.qq.com/s?__biz=Mzg5NTEwNjQ3Ng==&mid=2247484324&idx=1&sn=57f25bc89164b8ef6ad1234f8bcfb49b&chksm=c0142f67f763a6718bb1f4bf35dced93cecdac0f128839f67e7e5aacd8ea7aeea...

2019-11-20 10:38:09 8063 1

原创 Deep Interactive Evolution

https://arxiv.org/pdf/1801.08230.pdfhttps://github.com/irhum/deepIEmidi/blob/master/Deep%20Interactive%20Evolution%20(for%20music).ipynbhttps://towardsdatascience.com/music-by-means-of-natural-sel...

2019-09-03 10:15:42 187

转载 skip-gram model

from:https://www.kdnuggets.com/2018/04/implementing-deep-learning-methods-feature-engineering-text-data-skip-gram.htmlDeep Learning,Feature Engineering,NLP,Python,Text Mining,Word Embeddings...

2019-07-03 10:00:30 682

原创 GAN Zoo

https://github.com/hindupuravinash/the-gan-zoo

2019-06-05 08:50:18 738

转载 python call C code

https://www.jianshu.com/p/cd28e8b0cce1https://blog.csdn.net/qq_35636311/article/details/78255568https://www.yanxurui.cc/posts/python/2017-06-18-3-ways-of-calling-c-functions-from-python/c++与p...

2019-05-20 19:00:10 211

转载 Python中如何将二维列表转换成一维列表

from:https://www.cnblogs.com/huangbiquan/p/8025691.htmlhttps://blog.csdn.net/cymy001/article/details/77881706已知:a = [(4,2,3), (5, 9, 1), (7,8,9)]希望将二维列表转换成一维列表:["4,2,3", "5, 9, 1", "7,8,9"]具体实现...

2019-05-02 19:27:55 4233

转载 Ubuntu+PyQt5+Python3.6+Qt Designer ubuntu下的python 3 配置图形设计界面 PyQt5。

一、开始安装1.安装pipsudo apt-get install python3-pip12.安装virtualenvpython3 -m pip install virtualenv1创建虚拟环境 env ,并切换到虚拟环境3.安装pyqt5pip install pyqt514.安装qtdesignersudo a...

2019-05-02 12:24:17 1537

原创 Failed to establish a new connection:[Errno 111] connection refused training GP-GAN(Pytorch)

reference :https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/38Failed to establish a new connection:[Errno 111] connection refused#129requests.exceptions.ConnectionError: HTTPConnect...

2019-04-24 08:04:15 8765

原创 ubuntu 挂载硬盘

step1: learn information about disk partitioncommand: fdisk -lstep2:step2: learn UUIDcommand: sudo blkidstep3: modify configerfilecommond:sudo gedit /etc/fstab# hard disk was on /de...

2019-04-23 10:32:21 157

转载 画出炫酷高大上的神经网络图常用的几种工具

from :https://mp.weixin.qq.com/s?__biz=MzUxNjcxMjQxNg==&mid=2247488476&idx=3&sn=679608648b17a4914589ab8ddf5cf863&chksm=f9a26153ced5e845159acc3a4810641828f2ae9bd0fe051c613b5911973da23a...

2019-04-15 09:47:57 29858 1

原创 2019 斯坦福 CS224n 课程

课程网站,有PPT和参考资料:http://web.stanford.edu/class/cs224n/index.html#schedule官方课程视频网站:http://onlinehub.stanford.edu/cs224B站视频链接(有字幕):https://www.bilibili.com/video/av46216519课程优秀项目网站:http://web.st...

2019-04-09 09:34:27 1155

原创 大数据技术Hadoop mapreduce HDFS

https://www.cnblogs.com/caozengling/p/5496969.htmlhttps://wenku.baidu.com/view/ab17b84c852458fb770b56c0.html?re=view&rec_flag=default http://kissmett.iteye.com/blog/1887946https://www.linu...

2018-12-06 10:12:54 158

转载 大数据流程图

转载 from: https://www.cnblogs.com/shaosks/p/9431040.html大数据开发实战:数据流图及相关数据技术  1、大数据流程图       2、大数据各个环节主要技术      2.1、数据处理主要技术    Sqoop:(发音:skup)作为一款开源的离线数据传输工具,主要用于Hadoop(Hive) 与传统数据库(MyS...

2018-12-06 10:10:24 21988

转载 Ubuntu16.04安装GTX1080Ti+CUDA9.0+cuDNN7.0转载

安装Ubuntu16.04 系统下载地址: http://releases.ubuntu.com/16.04/  下载64位系统:ubuntu-16.04.4-desktop-amd64.iso 制作系统盘安装,推荐使用UltraISO,找到一个U盘(U盘数据必须备份好) 打开UltraISO软件,选择菜单中的文件,打开下载好的系统 再选择菜单中的启动,写入硬盘映像,...

2018-11-04 13:10:55 1150

原创 ubuntu16.04+GTX1070+CUDA9.0+CUDNN7.0+pytourch4.0吐血

 应该说这是我第一次这么认真的去写下一个环境配置过程,之前已经安装过好几次环境,并且配置成功(ubuntu16.04+GTX1070+CUDA8.0+CUDNN5.0+Anancond3+TensfolowGPU+CAFFE)TF与CUDN,CUDNN版本对应关系详见:https://mp.weixin.qq.com/s/lBLXIwNYLgbsHyRy72rlIwtensorflow...

2018-11-04 12:50:01 885

转载 矩阵与线性变换

from : https://www.cnblogs.com/joefish/p/8150006.html本文可以说是该系列最重要、最核心的文章。你对线性代数的一切困惑,根源就在于没有真正理解矩阵到底是什么。读完咪博士的这篇文章,你一定会有一种醍醐灌顶、豁然开朗的感觉!咱们先来说说啥叫变换。本质上,变换就是函数。例如,你输入一个向量 [57],经过某个变换(即函数)的作用之后,...

2018-11-03 20:03:01 15044 4

原创 ubuntu16.04无法进入图形桌面

重装系统5次终于找到问题在安装GTX1070 显卡驱动的时候,因为要禁止系统自带驱动,故修改:方式一:创建新文件:sudo vim /etc/modprobe.d/blacklist-nouveau.conf内容为blacklist nouveauoptions nouveau modeset=0再更新sudo update-initramfs -u结束X-...

2018-10-26 11:11:27 8051

转载 简单认识Adam优化器

from: https://www.jianshu.com/p/aebcaf8af76e 基于随机梯度下降(SGD)的优化算法在科研和工程的很多领域里都是极其核心的。很多理论或工程问题都可以转化为对目标函数进行最小化的数学问题。按吴恩达老师所说的,梯度下降(Gradient Descent)就好比一个人想从高山上奔跑到山谷最低点,用最快的方式(steepest)奔向最低的位置(mini...

2018-10-17 20:06:17 6112

转载 Installing Deep Learning Frameworks on Ubuntu with CUDA support

from: https://www.learnopencv.com/installing-deep-learning-frameworks-on-ubuntu-with-cuda-support/Installing Deep Learning Frameworks on Ubuntu with CUDA supportThis post is part of the series on ...

2018-10-17 17:42:40 285

转载 Python 的全套 14 张思维导图

https://mp.weixin.qq.com/s?__biz=MjM5MDAxNjkyMA==&mid=2650743011&idx=1&sn=d6a77fbfc0a4cefb2fd58acc72fe3905&chksm=be40b41489373d021e4496c4244d6c112c7a37b516a976dcd1987156da9a27666dead9d...

2018-10-09 12:24:00 708

转载 io.imread和cv2.imread以及 transform.resize和cv2.resize区别

https://blog.csdn.net/qq_23589775/article/details/81143584 Tensorflow中,在训练图片数据之前,需要先对图片进行预处理,读图和裁剪是最基本的两步。常见的的读图何裁剪分别有两种方式,这里小编将和大家分享下这几种方式的实现以及他们之间的区别。一、常见的两种读图方式 io.imread() 和 cv2.imread()1....

2018-10-09 12:20:35 3854 1

转载 python image basic image process

from:https://www.cnblogs.com/kongzhagen/p/6295925.htmlhttps://www.cnblogs.com/denny402/p/5124152.htmlhttps://blog.csdn.net/qq_23589775/article/details/81143584Python-Image 基本的图像处理操作,有需要的朋友可以参考下。...

2018-10-09 12:19:49 686

原创 TF,ImportError: libcusolver.so.8.0: cannot open shared object file: No such file or directory

ubuntu 16.04 +cuda8.0+cudnn5.1+annocuda3+tensorflow-gpu1.4+python3.6所有都安装调试成功,但当 执行file.py时提示:ImportError: libcusolver.so.8.0: cannot open shared object file: No such file or directory查了很多材料,大多数...

2018-10-09 11:25:23 634

转载 Check failed: status == CUDNN_STATUS_SUCCESS (4 vs. 0) CUDNN_STATUS_INTERNAL_ERROR

转载:https://blog.csdn.net/jacke121/article/details/79624601pycharm调用cuda时报错:Check failed: status == CUDNN_STATUS_SUCCESS (4 vs. 0)  CUDNN_STATUS_INTERNAL_ERROR 解决方法:加sudo 执行如果是pycharm启动,则:s...

2018-10-04 18:35:06 3328

转载 caffe-jupyter(Linux Ubuntu下Jupyter Notebook的安装)

转载:https://www.cnblogs.com/bxyan/p/7203966.htmlLinux Ubuntu下Jupyter Notebook的安装 Jupyter Notebook, 以前又称为IPython notebook,是一个交互式笔记本, 支持运行40+种编程语言. 可以用来编写漂亮的交互式文档.安装步骤:  pip install --upgrad...

2018-10-04 18:33:07 408

转载 CAFFE环境拾建 调试成功+opencv3.4.2

转载:ubuntu16.04+cuda8.0+cudnn5.1+caffe 安装(基于独立主机&集成显卡&GTX1080Ti)https://blog.csdn.net/xl928471061/article/details/77833112https://blog.csdn.net/w5688414/article/details/79482482https://bl...

2018-10-03 19:45:18 1065

转载 【TensorFlow】tf.nn.conv2d_transpose是怎样实现反卷积的?

https://blog.csdn.net/mao_xiao_feng/article/details/71713358三个月没更新了啊,回来更一发~~csdn上主要讲一些coding过程中遇到的函数,问题,解决方案。偏实践另外,如果你想看一些理论方面的东西,欢迎加我的知乎知乎主页csdn私信几乎不看,有问题交流可以发邮箱:[email protected]或者知乎私信,看...

2018-09-26 17:48:19 471

转载 CNN中的卷积核及TensorFlow中卷积的各种实现

转载:https://www.cnblogs.com/Yu-FeiFei/p/6800519.htmlhttps://www.cnblogs.com/hans209/p/7103168.htmlhttps://blog.csdn.net/mao_xiao_feng/article/details/78004522声明:1. 我和每一个应该看这篇博文的人一样,都是初学者,都是小菜...

2018-09-26 17:42:37 2999

转载 Ubuntu 16.04 LTS下安装MATLAB 2014B的方法教程

转载:https://www.jb51.net/article/105185.htm环境配置说明:环境:Ubuntu 16.04LTS软件:MATLAB 2014BMATLAB 2014B 下载地址(带Crack)如下:百度云下载:   链接: https://pan.baidu.com/s/1kVJQVlX  密码: pj9m本 地 下 载:    Ubuntu 16.0...

2018-09-04 19:43:33 1687

转载 Ubuntu 16.04LTS 安装 MATLAB 2014B

转载:https://www.cnblogs.com/asmer-stone/p/5991012.html环境:Ubuntu 16.04LTS 软件:MATLAB 2014B MATLAB 2014B 下载地址(带Crack): 链接: https://pan.baidu.com/s/1nvGtmEd 密码: 53za  1、直接解压 matlab_R2014b.iso 到...

2018-09-04 19:42:10 533

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除