自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

用时间去蜕变

制怒、自省

  • 博客(6)
  • 资源 (177)
  • 收藏
  • 关注

原创 3Sum Closest

原题链接 给含有n个元素的数组S,寻找出S中的三个元素,使其求和接近于所给的数字,target。并且返回这三个元素之和。你应该假设每一个输出只有一个确切的答案例如, 所给数组为 S = {-1 2 1 -4}, 并且目标数字target = 1.那么最接近目标数字的和是2. (-1 + 2 + 1 = 2). public class Solution { public int three

2017-10-30 19:47:54 176

原创 3Sum

原题链接 给一个拥有n个元素的数组S,S中是否会有a,b,c三个元素使得a+b+c=0?寻找出满足该条件的所有唯一三元组。 Note: 答案中必须不能含有重复的三元组class Solution { public List<List<Integer>> threeSum(int[] num) { //先排序 Arrays.sort(num);

2017-10-30 19:36:25 225

原创 TensorFlow可视化结果

引入matplotlib来查看拟合效果首先对随机生成的数据进行可视化,用于查看我们人为生成的数据的分布情况# 引入可视化库 import matplotlib.pyplot as plt# 这部分为上篇中生成数据的代码 x_data = np.linspace(-1, 1, 300)[:, np.newaxis] noise = np.random.normal(0, 0.05, x_data.sh

2017-10-26 14:52:05 843

原创 TensorFlow添加层

TensorFlow添加层定义Layer函数# 定义神经网络层函数,主要用于隐藏层和输出层 # inputs代表输入的数据, inSize为数据的形状 outSize为隐藏增的神经元个数,也为输出数据的形状 # activationFunction 激活函数,默认无激活函数 def addLayer(inputs, inSize, outSize, activationFunction = No

2017-10-26 13:40:18 1454

原创 TensorFlow-palceholder

import tensorflow as tf # placeholder占位符,主要是用于在后面计算时先行规定计算变量的数据类型 input1 = tf.placeholder(tf.float32) input2 = tf.placeholder(tf.float32)# tf1.2中为mul,在tf1.3中已经更改为multiply 文档地址 # https://www.tensorflow.

2017-10-25 18:52:59 309

原创 TensorFlow(安装和初使用)

安装1、下载并且安装Anaconda-3。TensorFlow已经支持python3.6因此下载最新版本即可。(安装时有将python目录加入到环境变量中,记得选择) 2、使用命令pip install tensorflow即可安装tensorflow cpu版本。 gpu版本尚未尝试,gpu版本需要以下依赖cudnn6.0, windows下cuda8.0、linux下安装最新驱动c

2017-10-25 16:05:30 932 1

Netty 入门与实战:仿写微信 IM 即时通讯系统.zip

Netty 入门与实战:仿写微信 IM 即时通讯系统.zip; 包含单章的 HTML 文件。 也包含一个所有文件合并的 PDF 文件。 文字版,共22章。共132页。

2019-05-13

Graph Algorithms Practical Examples in Apache Spark and Neo4j

Graph Algorithms Practical Examples in Apache Spark and Neo4j 2019-04-15 月的书

2019-05-13

Effective Java 第三版中文版全彩.pdf

Effective Java 第三版中文版全彩.pdf 书签完整,包含全 90 条,高清 true pdf Effective Java 第三版中文版全彩.pdf

2019-05-10

effective java第三版完整版(开源翻译版本)

effective java第三版完整版(开源翻译版本) - github: https://github.com/sjsdfg/effective-java-3rd-chinese - 在线阅读:https://sjsdfg.github.io/effective-java-3rd-chinese/#/

2019-03-20

Architecting Modern Data Platforms(2019)

Architecting Modern Data Platforms - Lars George & Paul Wilkinson & Ian Buss & Jan Kunigk(2018)

2019-03-05

Clustering data streams_ Theory and practice.pdf

Clustering data streams_ Theory and practice.pdf

2019-02-28

Network Intrusion Detection using Deep Learning_A Feature Learning Approach

Network Intrusion Detection using Deep Learning_A Feature Learning Approach-Springer(2018).pdf

2019-02-27

c语言基础讲义

c语言基础讲义

2019-01-26

Machine Learning and Knowledge Discovery in Database, Part IIIs(第三部分)

Machine Learning and Knowledge Discovery in Database, Part IIIs_European Conference, ECML PKDD 2018, Dublin, Ireland.rar

2019-01-20

Machine Learning and Knowledge Discovery in Databases, Part I(第一部分)

Machine Learning and Knowledge Discovery in Databases, Part I_European Conference, ECML PKDD 2018, Dublin, Ireland.rar

2019-01-20

Computer Security Art and Science, Second Edition - Matt Bishop(2018).epub

Computer Security Art and Science, Second Edition - Matt Bishop(2018).epub

2018-11-12

Sanet.st.Feature Engineering Made Easy - Sinan Ozdemir.epub(正式版)

Sanet.st.Feature Engineering Made Easy - Sinan Ozdemir.epub(正式版) 让特征工程变得简单正式版 This book will cover the topic of feature engineering. A huge part of the data science and machine learning pipeline, feature engineering includes the ability to identify, clean, construct, and discover new characteristics of data for the purpose of interpretation and predictive analysis. In this book, we will be covering the entire process of feature engineering, from inspection to visualization, transformation, and beyond. We will be using both basic and advanced mathematical measures to transform our data into a form that's much more digestible by machines and machine learning pipelines. By discovering and transforming, we, as data scientists, will be able to gain a whole new perspective on our data, enhancing not only our algorithms but also our insights.

2018-10-24

Machine Learning in Production.pdf

Machine Learning in Production.pdf

2018-10-24

HPUX System and Network Administration.zip

HPUX System and Network Administration.zip 共3本

2018-10-13

Springer.Neural.Information.Processing.Part.V.331970138X.pdf

Springer.Neural.Information.Processing.Part.V.331970138X.pdf

2018-10-09

Springer.Neural.Information.Processing.Part.IV.3319700928.pdf

Springer.Neural.Information.Processing.Part.IV.3319700928.pdf

2018-10-09

Springer.Neural.Information.Processing.Part.III.3319700898.pdf

Springer.Neural.Information.Processing.Part.III.3319700898.pdf

2018-10-09

Springer.Neural.Information.Processing.Part.II.3319700952.pdf

Springer.Neural.Information.Processing.Part.II.3319700952.pdf

2018-10-09

Cmd Markdown 公式指导手册

Cmd Markdown 公式指导手册

2018-10-04

Java秋招复习资料 interview-notebook.pdf

interview-notebook.pdf Java秋招复习资料

2018-09-23

浙江人民-成为数据分析师:6步练就数据思维.201802.epub浙江人民-成为数据分析师:6步练就数据思维.201802.epub

浙江人民-成为数据分析师:6步练就数据思维.201802.epub

2018-09-23

Artificial Unintelligence_How Computers Misunderstand the World-MIT(2018).epub

Artificial Unintelligence_How Computers Misunderstand the World-MIT(2018).epub

2018-09-23

腾讯课堂视频下载工具V1.7.rar

腾讯课堂视频下载工具V1.7.rar

2018-09-23

TensorFlow_Powerful Predictive Analytics with TensorFlow(2018) 书和代码

TensorFlow_Powerful Predictive Analytics with TensorFlow-Packt Publishing(2018) 书和代码

2018-09-05

Deep Learning Vol 1 From Basics to Practice_带书签.pdf

Deep Learning Vol 1 From Basics to Practice_带书签.pdf

2018-09-05

Sanet.st_Deep_Learning,_Vol._2_From_Basics_to_Practice_-_Andrew_Glassner_带书签.pdf

Sanet.st_Deep_Learning,_Vol._2_From_Basics_to_Practice_-_Andrew_Glassner_带书签.pdf

2018-09-05

自己动手做大数据系统.azw3

目前很多想学习或正在学习大数据的人,大都面临一些问题或困惑,本书的第一个特点就是系统性,覆盖了如何利用爬虫、Sqoop等获取各种数据,如何利用HDFS、HBase等存储大数据,如何利用MapReduce、Hive、Pig、Python、Spark等技术来处理大数据,如何利用Spark及R分析展示大数据整个过程,而且这些过程我们都可以以实战项目的方式在云平台上完成,这又体现出本书的第二个特点,即操作的便捷性。 如果你是一位在校大学生,对大数据感兴趣,也知道使用的企业越来越多,市场需求更是日新月异,但苦于自己基础不够,心有余而力不足;也看过不少大数据方面的书籍、博客、视频等,但感觉进步不大;如果你是一位在职人员,但目前主要使用传统技术,虽然对大数据很有兴趣,也深知其对未来的影响,但因时间不够,虽有一定的基础,常常也是打两天鱼、晒三天网,进展不是很理想。, 如果你有上述疑惑或遇到相似问题,《自己动手做大数据系统》正好比较适合你。《自己动手做大数据系统》从OpenStack云平台搭建、软件部署、需求开发实现到结果展示,以纵向角度讲解了生产性大数据项目上线的整个流程;以完成一个实际项目需求贯穿各章节,讲述了Hadoop生态圈中互联网爬虫技术、S qoop、Hive、HBase组件协同工作流程,并展示了Spark计算框架、R制图软件和SparkRHive组件的使用方法。《自己动手做大数据系统》的一大特色是提供了实际操作环境,用户可以在线登录云平台来动手操作书中的数据和代码,登录网址请参考http://www.feiguyun.com/support。

2018-09-05

2018-Java最全面试资料.doc

2018-Java最全面试资料.doc 2018-Java最全面试资料.doc 2018-Java最全面试资料.doc

2018-07-13

机器学习小抄-Chris Albon.pdf

机器学习小抄-Chris Albon.pdf 机器学习小抄-Chris Albon.pdf

2018-07-13

Beginning Application Development with TensorFlow and Keras

Beginning Application Development with TensorFlow and Keras.epub

2018-06-17

Big Data Principles and best practices of scalable realtime data systems.pdf

Big Data Principles and best practices of scalable realtime data systems.pdf

2018-05-25

Deep Learning in Natural Language Processing-Springer(2018).pdf

Deep Learning in Natural Language Processing-Springer(2018).pdf

2018-05-25

Introduction to Deep Learning Business Applications for Developers(2018)

Introduction to Deep Learning Business Applications for Developers-Apress(2018).pdf

2018-05-06

Computer Systems_A Programmer’s Perspective, 3rd Edition

Computer Systems_A Programmer’s Perspective, 3rd Edition-Pearson(2015).epub

2018-05-05

计算机网络(第7版) ("十二五"普通高等教育本科国家级规划教材)

计算机网络(第7版) ("十二五"普通高等教育本科国家级规划教材)_2791327.epub

2018-05-05

Optimizing Java_Practical Techniques for Improving JVM Application Performance

Optimizing Java_Practical Techniques for Improving JVM Application Performance(2018.05).A4.pdf 预览文字版 Currently, no books exist that focus on the practicalities of Java application performance tuning, as opposed to the theory and internals of Java virtual machines. This practical guide is the "missing link" that aims to move Java performance tuning from the realm of guesswork and folklore to an experimental science.

2018-04-25

Python高性能编程.pdf 中文版

Python高性能编程.pdf 中文版 高清true pdf。 全彩带目录

2018-04-20

Deep Learning Quick Reference-Packt(2018)电子书和配套代码

Deep Learning Quick Reference-Packt Publishing(2018) 电子书和配套代码

2018-04-19

Zoneout Regularizing RNNs by Randomly Preserving Hidden Activations

Zoneout Regularizing RNNs by Randomly Preserving Hidden Activations

2018-04-18

人民邮电(图灵)-图解物联网-完美去广告版本

人民邮电(图灵)-图解物联网.201704.pdf 资源来源: https://download.csdn.net/download/towangjindian/10332890 水印删的我肝疼。分数要高点

2018-04-12

空空如也

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

TA关注的人

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