2015年8月25日
摘要: mark下一些常用命令git add . //添加新文件或者更改新文件git remove** //删除文件git commit -m 'by who do what' //提交文件到本地git remote add upstreamhttps://github.com/XXX/XXXX.git... 阅读全文
posted @ 2015-08-25 17:13 NealCaffrey989 阅读(214) 评论(0) 推荐(0) 编辑
  2015年8月21日
摘要: 国内的windows python库地址:另外从别的博客找到很多新的库,也会添加的Get√1Autograd,开源Python自动微分库,非常棒的函数自动求导工具,绝对实用!作者就是写《Gradient-based Hyperparameter Optimization through Revers... 阅读全文
posted @ 2015-08-21 17:11 NealCaffrey989 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 原址:http://my.oschina.net/u/175377/blog/84420目录[-]Scikit Learn: 在python中机器学习载入示例数据一个改变数据集大小的示例:数码数据集(digits datasets)学习和预测分类K最近邻(KNN)分类器训练集和测试集分类支持向量机(... 阅读全文
posted @ 2015-08-21 16:43 NealCaffrey989 阅读(179) 评论(0) 推荐(0) 编辑
  2015年8月19日
摘要: Scikit-learn运行需要matplotlib、Numpy和Scipy等模块,python的包的资源链接:http://www.lfd.uci.edu/~gohlke/pythonlibs/Pippython包以前提供exe文件和wheel文件,但是最近只提供wheel文件,需要安装setup... 阅读全文
posted @ 2015-08-19 22:13 NealCaffrey989 阅读(2733) 评论(0) 推荐(0) 编辑
  2015年6月17日
摘要: Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu... 阅读全文
posted @ 2015-06-17 23:00 NealCaffrey989 阅读(152) 评论(0) 推荐(0) 编辑
摘要: mplement wildcard pattern matching with support for'?'and'*'.'?' Matches any single character.'*' Matches any sequence of characters (including the em... 阅读全文
posted @ 2015-06-17 22:54 NealCaffrey989 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are non-nega... 阅读全文
posted @ 2015-06-17 16:53 NealCaffrey989 阅读(146) 评论(0) 推荐(0) 编辑
摘要: Givennnon-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.Fo... 阅读全文
posted @ 2015-06-17 16:38 NealCaffrey989 阅读(137) 评论(0) 推荐(0) 编辑
摘要: Given an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]return3,and[3,4,-1,1]return2.Your algorithm should ru... 阅读全文
posted @ 2015-06-17 16:30 NealCaffrey989 阅读(131) 评论(0) 推荐(0) 编辑
  2015年6月16日
摘要: Given a collection of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Each number ... 阅读全文
posted @ 2015-06-16 22:06 NealCaffrey989 阅读(122) 评论(0) 推荐(0) 编辑