自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

shouhuxianjian的专栏

最美的不是下雨天,是曾与你躲过雨的屋檐!

  • 博客(138)
  • 资源 (27)
  • 收藏
  • 关注

原创 lecture2-NN结构的主要类型的概述和感知机

写博客的初衷就是为了记录自己

2014-10-27 12:59:43 1436

翻译 稀疏过滤

稀疏过滤    摘要:

2014-10-27 11:07:05 1558 3

原创 lecture1-NN的简介

这是DL的发明人Hinton在多伦多大学的2013年冬季教授de课程

2014-10-25 15:18:26 1907

原创 例子:照片的OCR识别

来自ng的ml-003中 18_XVIII._Application_Example-_Photo_OCR这是ng2013年在coursea

2014-10-23 09:43:32 1346

原创 大型机器学习

来自ng的ml-003 17_XVII._Large_Scale_Machine_Learning这里的大型机器学习是将算法应用到大数据集上,回顾前10年或者前5年,机器学习有了较好的发展是yi

2014-10-22 16:35:00 728

原创 推荐系统

来自ng ml-003 的16_XVI._Recommender_Systems 还有17 和18 ng的ml-003就能够看完了。

2014-10-21 20:49:49 633

原创 异常检测

来自ng 的ml-003 15_XV._Anomaly_Detection异常检测是无监督训练

2014-10-21 20:48:08 1035

原创 维度约间

ng-ml-003 中的14_XIV._Dimensionality_Reduction一、数据压缩

2014-10-19 20:40:25 755

原创 聚类

依旧来自于ng的ml-003中的clustering部分课程

2014-10-19 11:50:50 797

原创 SVM的简单介绍

ng的MI-003中12 ——SVM

2014-10-15 09:01:57 1385

翻译 tiled卷积神经网络(tiled CNN)

这个结构是10年Quoc V.Le等人体

2014-10-11 09:55:35 9059

翻译 数据驱动概念的复杂事件检测

这是boss14年1月份就叫我看的论文,希望能够实现起来,但是发现里面的牵涉的东西太多,而且重要的是论文几乎没给数据参数,网上也找不到代码来熟悉,没gpu,没大内存,没师兄师姐可以帮助,单干的确挺累人。还是翻译下,加深印象吧,总觉得在做无用功。最重要的是,boss完全不管,自己也非大神(吐槽过多。。。。)                                              

2014-09-17 20:19:50 1747 1

翻译 Topographic ICA as a Model of Natural Image Statistics(作为自然图像统计模型的拓扑独立成分分析)

其实topographic independent component analysis 早在1999年由ICA的发明人等人就提出了,所以不算是个新技术,ICA是在1982年首先在一个神经生理学的背景下提出的,而且在1980年前后大家都在忙着研究BP,所以对ICA研究的人都不多,在1990年前后才大量的爆发关于ICA的研究,现在ICA已经较为成熟和完善了。ICA的开始是假设成分间互相独立,但是却有

2014-09-06 11:31:31 2277

原创 BP浅谈

之前一直对BP的理解不透彻,这可不行,这个可是超经典de

2014-09-05 11:15:10 1176

原创 机器学习的系统设计

ng的ml-003中11_XI._Machine_Learning_System_Design

2014-09-04 14:03:16 767

原创 如何应用ML的建议-下

部分(五)从图中可以看出,正则化项可以用来影响模型函数对数据是否过拟合,正则化项的本意是防止过拟合的,但是对于前面的lamuda的正确的选取却很重要,对于第一个坐标系来说,因为lamuda太大,导致正则化项很小,即在训练后会使得theta(1)~theta(n)都趋向于0,而只有一个参数theta(0),使得决策线(此处举例的是线,而非面)成为了一个常量函数,严重欠拟合;而对于lamuda

2014-09-02 21:48:00 738

原创 如何应用ML的建议-上

本博资料来自andrew ng的13年的ML视频中

2014-09-02 21:15:04 990

原创 deep learning 的综述

从13年11月初开始接触DL,奈何boss忙or 各自

2014-08-25 16:51:23 2345

Implementing a Language with LLVM in Objective Caml-llvm.org (2017).pdf

The goal of this tutorial is to progressively unveil our language, describing how it is built up over time. This will let us cover a fairly broad range of language design and LLVM-specific usage issues, showing and explaining the code for it all along the way, without overwhelming you with tons of details up front

2019-09-12

Mayur Pandey, Suyog Sarda - LLVM Cookbook-Packt Publishing (2015).pdf

This book travels through all the phases of compilation: frontend processing, code optimization, code emission, and so on. And to make this journey easy, LLVM is the simplest compiler infrastructure to study. It's a modular, layered compiler infrastructure where every phase is dished out as a separate recipe. Written in object-oriented C++, LLVM gives programmers a simple interface and lots of APIs to write their own compiler.

2019-09-12

Modern C++ Programming Cookbook[May 2017].pdf.zip

This book addresses many of the new features included in C++11, C++14, and the forthcoming C++17. This book is organized in recipes, each covering one particular language or library feature, or a common problem developers face and its typical solution using modern C++. Through more than 100 recipes, you will learn to master both core language features and the standard libraries, including those for strings, containers, algorithms, iterators, input/output, regular expressions, threads, filesystem, atomic operations, and utilities.

2019-09-12

Julia-Cookbook

programming language for data science and its applications. It also serves as a guide to handle data in the most available formats, and shows how to crawl and scrape data from the Internet. Chapter 2, Metaprogramming, covers the concept of metaprogramming, where a language can express its own code as a data structure of itself. For example, Lisp expresses code in the form of Lisp arrays, which are data structures in Lisp itself. Similarly, Julia can express its code as data structures. Chapter 3, Statistics with Julia, teaches you how to perform statistics in Julia, along with the common problems of handling data arrays, distributions, estimation, and sampling techniques. Chapter 4, Building Data Science Models, talks about various data science and statistical models. You will learn to design, customize, and apply them to various data science problems. This chapter will also teach you about model selection and the ways to learn how to build and understand robust statistical models. Chapter 5, Working with Visualizations, teaches you how to visualize and present data, and also to analyze and the findings from the data science approach that you have taken to solve a particular problem. There are various types of visualizations to display your findings, namely the bar plot, the scatter plot, pie chart, and so on. It is very important to choose an appropriate method that can reflect your findings and work in a sensible and an aesthetically pleasing manner. Chapter 6, Parallel Computing, talks about the concepts of parallel computing and handling a lot of data in Julia.

2018-10-09

Getting-Started-with-Julia-Programming

Chapter 1, Installing the Julia Platform, guides you with the installation of all the necessary components required for a Julia environment. It teaches you how to work with Julia’s console (the REPL) and discusses some of the more elaborate development editors you can use. Chapter 2, Variables, Types, and Operations, discusses the elementary built-in types in Julia, and the operations that can be performed on them, so that you are prepared to start writing the code with them. Chapter 3, Functions, explains why functions are the basic building blocks of Julia, and how to effectively use them. Chapter 4, Control Flow, shows Julia’s elegant control constructs, how to perform error handling, and how to use coroutines (called Tasks in Julia) to structure the execution of your code. Chapter 5, Collection Types, explores the different types that group individual values, such as arrays and matrices, tuples, dictionaries, and sets. Chapter 6, More on Types, Methods, and Modules, digs deeper into the type concept and explains how this is used in multiple dispatch to get C-like performance. Modules, a higher code organizing concept, are discussed as well. Chapter 7, Metaprogramming in Julia, touches on the deeper layers of Julia, such as expressions and reflection capabilities, and demonstrates the power of macros. Chapter 8, I/O, Networking, and Parallel Computing, shows how to work with data in files and databases using DataFrames. We can explore the networking capabilities, and shows how to set up a parallel computing environment with Julia. Chapter 9, Running External Programs, looks at how Julia interacts with the command line and other languages and also discusses performance tips. Chapter 10, The Standard Library and Packages, digs deeper into the standard library and demonstrates the important packages for visualization of data.

2018-10-09

Julia-High-performance

Chapter 1, Julia is Fast, discuses some of the design underpinning the language and its focus on high performance. Chapter 2, Analyzing Julia Performance, provides the tools and techniques you can use to measure and analyze the performance of your own programs. Chapter 3, Types in Julia, describes the type system and discusses why writing type-stable code is crucial to high performance. Chapter 4, Functions and Macros – Structuring Julia Code for High Performance, discusses techniques to use dispatch and code generation to structure high-performance programs. Chapter 5, Fast Numbers, discusses the basic numeric types and why they are fast.

2018-10-09

Pro Deep Learning with TensorFlow.

Pro Deep Learning with TensorFlow is a practical and mathematical guide to deep learning using TensorFlow. Deep learning is a branch of machine learning where you model the world in terms of a hierarchy of concepts. This pattern of learning is similar to the way a human brain learns, and it allows computers to model complex concepts that often go unnoticed in other traditional methods of modeling. Hence, in the modern computing paradigm, deep learning plays a vital role in modeling complex real-world problems, especially by leveraging the massive amount of unstructured data available today

2017-12-12

NIPS会议全文下载链接

编写python代码(http://blog.csdn.net/shouhuxianjian/article/details/78075431),然后将NIPS会议从1988年到2016年所有论文的下载链接保存在对应的文件夹 下面的urls.txt中,可以直接复制下载链接到迅雷中,从而

2017-09-24

Tree Boosting With XGBoost

Tree boosting has empirically proven to be a highly effective approach to predictive modeling. It has shown remarkable results for a vast array of problems. For many years, MART has been the tree boosting method of choice. More recently, a tree boosting method known as XGBoost has gained popularity by winning numerous machine learning competitions. In this thesis, we will investigate how XGBoost differs from the more traditional MART. We will show that XGBoost employs a boosting algorithm which we will term Newton boosting. This boosting algorithm will further be compared with the gradient boosting algorithm that MART employs. Moreover, we will discuss the regularization techniques that these methods offer and the effect these have on the models.

2017-09-09

Neural Networks and Deep Learning

Neural networks are one of the most beautiful programming paradigms ever invented. ,n the conventional approach to programming, we tell the computer what to do, breaking big problems up into many small, precisely defined tasks that the computer can easily perform. %y contrast, in a neural network we

2017-09-09

Hands On Deep Learning with TensorFlow

TensorFlow is an open source software library for machine learning and training neural networks. TensorFlow was originally developed by Google, and was made open source in 2015. Over the course of this book, you will learn how to use TensorFlow to solve a novel research problem. You'll use one of the most popular machine learning approaches, neural networks with TensorFlow. We'll work on both the simple and deep neural networks to improve our models.

2017-09-09

Getting Started with TensorFlow

Key Features, Get the first book on the market that shows you the key aspects TensorFlow, how it works, and how to use it for the second generation of machine learning, Want to perform faster and more accurate computations in the field of data science? This book will acquaint you with an all-new refreshing library—TensorFlow!, Dive into the next generation of numerical computing and get the most out of your data with this quick guide, Book Description, Google's TensorFlow engine, after much fanfare, has evolved in to a robust, user-friendly, and customizable, application-grade software library of machine learning (ML) code for numerical computation and neural networks., This book takes you through the practical software implementation of various machine learning techniques with TensorFlow. In the first few chapters, you'll gain familiarity with the framework and perform the mathematical operations required for data analysis. As you progress further, you'll learn to implement various machine learning techniques such as classification, clustering, neural networks, and deep learning through practical examples., By the end of this book, you’ll have gained hands-on experience of using TensorFlow and building classification, image recognition systems, language processing, and information retrieving systems for your application., What you will learn, Install and adopt TensorFlow in your Python environment to solve mathematical problems, Get to know the basic machine and deep learning concepts, Train and test neural networks to fit your data model, Make predictions using regression algorithms, Analyze your data with a clustering procedure, Develop algorithms for clustering and data classification, Use GPU computing to analyze big data

2017-09-09

Programming in Scala, 3rd Edition

This book is a tutorial for the Scala programming language, written by people directly involved in the development of Scala. Our goal is that by reading this book, you can learn everything you need to be a productive Scala programmer. All examples in this book compile with Scala version 2.11.7, except for those marked 2.12, which compile with 2.12.0-M3.

2017-09-02

增强学习导论

增强学习导论 2017年6月版本

2017-08-15

Scala Functional Programming Patterns

Scala Functional Programming Patterns packt上的资源

2016-11-27

WindowsAPI参考大全

为Microsoft 32位平台的应用程序编程接口,Win32 API是从事Windows应用程序开发所必备的。本书首先对Win32 API函数做完整的概述;然后收录五大类函数:窗口管理、图形设备接口、系统服务、国际特性以及网络服务;在附录部分,讲解如何在Visual Basic和Delphi中对其调用。 本书是从事Windows应用程序开发的软件工程师的必备参考手册。

2013-04-11

adobe x版本的字体库

本来看一些pdf有些字体 是没有的需要重新下载的

2012-04-07

空空如也

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

TA关注的人

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