自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Forgive Me

博客迁移到:blog.youran.ai

  • 博客(177)
  • 收藏
  • 关注

原创 2018-01-26-python-basic-syntax

title: "python教程之2基本语法"category: pythonlayout: posttags: [python]date: '2018-01-26 23:00:24'上篇文章简单介绍了Python语言以及IDE的搭建。本文将介绍Python的基本语法,以及如何在IDE编写Python程序。创建和运行第一个项目首先打开IDE,然后选...

2018-09-06 09:21:48 92

原创 2018-01-25-python-install-ide

title: "python教程之1环境配置和IDE"category: pythonlayout: posttags: [other,python]date: '2018-01-26 00:00:24'入坑Python差不多一年了,一直想把学习经历写下来,但是总是因为懒而迟迟没有开始。本文作为第一篇作为入门篇,首先将介绍粗略的介绍下python,然后...

2018-09-06 09:21:48 45

原创 2018-01-29-python-buildin_datatype

title category layout tags date python教程之3基本数据类型 python post python 2018-01-29 23:00:24 上篇文章简单介绍了Python语言的基本语法,以及如何在IDE编写一个Python程序。本文将...

2018-09-06 09:21:48 216

原创 2018-08-28-darknet-cannot-compile-gpu-1

title category layout tags date darknet:cannot compile with gpu=1 dl post Pytorch dl 2018-08-28 17:26:24 问题描述在编译dartnet的时候设置GPU=1的时候编...

2018-09-06 09:21:48 92

原创 2018-01-08-pytorch-tensor-not-continguos

title category layout tags date 解决RuntimeError: input is not contiguous问题 dl post Pytorch dl 2018-01-09 14:10:24 出现了这个问题是因为tensor在内存中地...

2018-09-06 09:21:48 52

原创 2018-09-05-python-module

title category layout tags date python中module和package python post python 2018-09-05 00:00:24 python中的module和package分别以文件和文件夹形式组织的。modul...

2018-09-06 09:21:48 45

原创 2018-09-06-python-exception

title category layout tags date python中的exception python post python 2018-09-06 00:00:24 Exception在python中运行如下代码将会报错:while True print(...

2018-09-06 09:21:48 47

原创 2018-06-07-python-bytes_to_string

title category layout tags date python中UnicodeDecodeError:'gb2312'codec can't decode bytes:illegal multibyte sequence解决办法 python post python ...

2018-09-06 09:21:48 38

原创 2018-07-17-pytorch-Expected-object-of-type-torch-DoubleTensor-argument

title category layout tags date RuntimeError: Expected object of type torch.DoubleTensor but found type torch.FloatTensor for argument #2 'weight'解决办法 dl pos...

2018-09-06 09:21:48 51

原创 2018-06-07-python-string_to_datetime

title category layout tags date python中string转换为datetime python post python 2018-06-07 00:00:24 python中将string转换为datetime类型比较简单。只要注意待转换字...

2018-09-06 09:21:48 57

原创 2018-01-25-ubuntu-install-dlib

title category layout tags date Ubuntu下安装dlib dl post dl ubuntu 2018-01-25 14:20:24 本文介绍dlib在ubuntu系统中的安装方法。在安装之前首先要确定python3已经安装。安装...

2018-09-06 08:53:51 138

原创 2018-08-19-coco-dataset-paper

title category layout tags date Microsoft COCO-Common Objects in Context(中文版) translation post 翻译 paper cv 2018-08-19 17:26:24 Micro...

2018-08-28 10:08:36 403 1

翻译 [翻译]Microsoft COCO-Common Objects in Context

Microsoft COCO-Common Objects in Context 翻译:Ruben 邮箱:[email protected] 摘要本文展示了一个全新的数据集,目标是通过把物体识别放置在更广泛的场景理解问题之下,进而促进物体识别的发展。该数据集通过收集自然背景下复杂的日常生活场景图片而构建完成的。图片中的物体实例都进行了单独分割标注,这样做有助于提高物体定位...

2018-08-25 19:15:26 8109 1

原创 2017-12-26-gensim-word2vec

title category layout tags date 5.Word2Vec nlp post Gensim nlp 2017-12-26 20:56:24 最简单的word2vec训练方式:# import modules & set up log...

2018-06-27 05:50:42 59

原创 2018-06-23-Advances-in-Semantic-Textual-Similarity

title category layout tags date 谷歌在文本语义相似中的进展 nlp post nlp 2018-06-23 18:15:25 本文翻译得是Advances in Semantic Textual Similarity。基于神经网络的自然语...

2018-06-23 10:18:02 104

原创 [DL]DL中常用的图片变换方法

在使用cnn进行物体检测或者物体识别之类任务中,往往都会对原图进行变化处理,已增加数据的复杂度减小overfitting的可能性。下面列出了部分常用的变换方法: def RandomBrightness(self,bgr):#亮度 if random.random() < 0.5: hsv = self.BGR2HSV(bgr) ...

2018-05-11 15:44:28 730

原创 [问题]Nvidia tx2中opencv的安装

2018-05-08 16:02:43 2631 1

原创 [Pytorch]pytorch中的LSTM模型

公式表示Pytorch中LSTM的公式表示为:it=σ(Wiixt+bii+Whih(t−1)+bhi)it=σ(Wiixt+bii+Whih(t−1)+bhi)i_t = \sigma(W_{ii} x_t + b_{ii} + W_{hi} h_{(t-1)} + b_{hi}) ft=σ(Wifxt+bif+Whfh(t−1)+bhf)ft=σ(Wifxt+bif+Whfh(t...

2018-05-05 16:10:51 30750

原创 Ubuntu16.04下如何安装显卡驱动、cuda、cudnn

本文介绍如何在ubuntu16.04上安装nvidia显卡驱动以及cuda和cudnn。其中nividia显卡的版本为最新版本 cuda为9.1版本 cudnn为7.1版本介绍具体的过程。1.安装显卡驱动添加软件源:sudo add-apt-repository ppa:graphics-drivers/ppasudo apt updatesudo apt in...

2018-04-09 15:08:50 1600

原创 2018-02-28-howjavacomplierwork

title category layout tags date [java]Java编译器是如何工作的 other post java 2018-02-28 01:25:24 Java是半解释型的语言。Java应用程序在JVM中执行。Java程序的执行不像纯解释型语言一样...

2018-02-27 17:32:06 49

原创 2018-01-26-ubuntu-format-and-mount-disk

title category layout tags date Ubuntu下格式化和挂载硬盘 other post other ubuntu 2018-01-26 20:20:24 本文介绍如何在ubuntu下格式化和挂载硬盘。首先执行df -h命令查看系统的硬盘...

2018-01-26 12:44:00 115

原创 2018-01-25-ubuntu-set-ip

title category layout tags date Ubuntu命令行下设置IP other post other ubuntu 2018-01-25 21:20:24 本文介绍通过命令行设置IP、网关的方法。首先通过ifconfig命令查看系统的网卡。...

2018-01-25 13:44:16 85

原创 2018-01-25-ubuntu-video-driver

title category layout tags date Ubuntu命令行安装nvidia显卡驱动 other post other ubuntu 2018-01-25 21:30:24 执行下面的命令:sudo add-apt-repository ppa...

2018-01-25 13:44:16 75

原创 2018-01-25-ubuntu-virtualbax-usb

title category layout tags date Ubuntu下Virtualbox添加usb支持 other post other ubuntu 2018-01-25 14:00:24 在宿主机上安装了一个免驱摄像头,但是想要在虚拟机中使用的话应该怎么...

2018-01-25 06:15:19 72 1

原创 2018-01-08-pytorch-rnn

title category layout tags date 3.RNN模型 dl post Pytorch dl 2018-01-08 17:10:24 本文的目标是实现Elman RNN模型。Elman RNN模型模型结构用数学公式表示很简单:$$h_t=...

2018-01-15 12:45:14 56

原创 links

layout title tags page 交换链接说明 链接 友情 交换 一.说明交换请联系邮箱lingyunzi09#gmail.com

2018-01-14 15:29:06 43

原创 2018-01-10-net-monitor

title category layout tags date Ubuntu下的网络监控 other post other ubuntu 2018-01-10 21:00:24 Nethogs 是一个终端下的网络流量监控工具,它的特别之处在于可以显示每个进程的带宽占用...

2018-01-10 13:34:37 54

原创 2017-12-29-pytorch-detect-language

title category layout tags date 2.Detect Language with MLP dl post Pytorch dl 2017-12-29 18:10:24 import torchimport torch.nn as nni...

2018-01-09 06:03:05 54

原创 2018-01-08-other-copy-ssh-pubkey-to-server

title category layout tags date 如何添加新的pub key到远程服务器 other post other ssh 2018-01-08 11:00:24 在新的机器上使用git提交代码或者ssh登陆远程服务器的时候往往需要远程服务器密码...

2018-01-08 07:29:37 74

原创 2018-01-08-other-config-jupyter-pub-server

title category layout tags date 如何开启jupyter的远程服务 other post other jupyter 2018-01-08 15:00:24 本文介绍如何开放jupyter的远程功能。设置jupyter notebook...

2018-01-08 07:29:37 48

原创 2018-01-07-other-build-git-server

title category layout tags date 如何搭建自己的GIT服务器 other post git other 2018-01-07 14:00:24 基本上的程序员都会有一个自己github帐号,帐号下都有若干个项目.有些项目适合公开,有些项目...

2018-01-07 06:22:14 59 1

原创 2018-01-06-nlp-mitie

title category layout tags date MITIE的简易教程之wordrep nlp post mitie nlp 2018-01-06 17:00:24 MITIE是在dlib机器学习库之上开发的NLP工具包,支持分布式词嵌入和结构化SVM。...

2018-01-06 10:26:20 83

原创 2018-01-06-fix-postgresql-9-5-install-error

title category layout tags date 解决postgresql 9.5安装失败的问题 other post postgresql 问题 2018-01-06 14:00:24 在低版本的Ubuntu系统中安装postgresql 9.5遇到下...

2018-01-06 06:17:05 73

原创 2017-12-24-gensim-introduction

title category layout tags date 1.Introduction nlp post Gensim nlp 2017-12-24 18:16:24 Gensim提供对计算机和调用者友好,自动从文档中抽取语义主题的免费Python库。Gens...

2018-01-05 16:54:28 49

原创 2017-12-25-gensim-Topic-and-Transformations

title category layout tags date 3.Topic and Transformations nlp post Gensim nlp 2017-12-25 20:56:24 import logginglogging.basicConfig...

2018-01-05 16:54:28 48

原创 2017-12-25-gensim-similarity-Queries

title category layout tags date 4.Similarity and Queries nlp post Gensim nlp 2017-12-25 21:27:24 import logginglogging.basicConfig(...

2018-01-05 16:54:28 53

原创 2018-01-05-dl-in-nlp-for-2017

layout category title tags date post translation 2017年深度学习在NLP领域的进展和趋势 翻译 dl nlp 2018-01-05 21:00:24 本文翻译的是这篇文章在过去的很多年里,深度学习架构和算法在...

2018-01-05 16:47:07 138

原创 2018-01-05-simple-intent-detection

layout category title tags date post nlp 意图分类是怎么实现的 nlp 2018-01-05 20:00:24 如何进行意图分析之前开始做语义理解的时候,笔者采用的是比较粗暴的方法进行匹配。随着语料的积累,语料库的规模变得越来越大...

2018-01-05 16:47:07 73

原创 2017-12-24-gensim-Corpora-and-Vector-Spaces

title category layout tags date 2.Corpora and Vector Spaces nlp post Gensim nlp 2017-12-24 19:16:24 import logginglogging.basicConf...

2018-01-05 16:47:07 49

原创 kg

layout category category kg

2018-01-05 16:47:07 76

空空如也

空空如也

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

TA关注的人

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