python DataFrame和DataFrame.Series 转化为numpy array DataFrame和DataFrame.Series转化为numpy array可以使用下面的函数: matrix = df.as_matrix()
python Cannot find ta-lib library, installation may fail. 在windows10上安装ta-lib库的时候失败,报如题的错误,解决办法: 去 http://www.lfd.uci.edu/~gohlke/pythonlibs/ 找到TA-Lib 板块,在下面这些库中找到你需要的,比如,我的python版本是3.5,64位系统,所以,我选择 TA_Lib‑0.4.10‑cp35‑cp35m‑win_amd64.whl。 TA_Lib‑0.
Java 【 LeetCode】79. Word Search 问题描述 https://leetcode.com/problems/word-search/#/description Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letters of sequentially adjacent cell,
Java 【LeetCode】78. Subsets 问题描述 Given a set of distinct integers, nums, return all possible subsets. Note: The solution set must not contain duplicate subsets. For example, If nums = [1,2,3], a solution is: [ [3], [1]
Java 【LeetCode】77. Combinations 问题描述 https://leetcode.com/problems/combinations/#/description Given two integers n and k, return all possible combinations of k numbers out of 1 ... n. For example, If n = 4 and k = 2, a
翻译 【译文】学习深度学习的四个步骤 原文地址 [https://medium.com/@vzkuma/4-steps-for-learning-deep-learning-86f11fcee54?spm=5176.100239.blogcont60248.5.0YfJs5&swoff=true#.85w6d5t3z] (访问需fq。。。) 首先,如果你需要了解一些关于深度学习的基本信息,或者需要了解为什么深度学习会对未来有如此巨大的影响的话,请先看一下Andrew Ng的讲解视频: Andrew Ng: Deep Learning, Self-Taught Learning and Unsupervised Feature Learning [https://www.
转载 【转载】人工智能步入金融领域的主流玩法 目前金融机构的主流玩法有四种: 1. 投资银行和卖方研究尝试自动报告生成; 2. 金融智能搜索; 3. 公募、私募基金在通过人工智能辅助量化交易; 4. 财富管理公司在探索智能投顾方向。 1 自动生成投研报告靠谱吗? 在投资银行的投行业务与证券研究业务中涉及大量的固定格式的报告撰写工作,如招股说明书中的部分章节,研报,以及投资意向书。这些报告撰写需要大量的投行初级员工进行长时间枯燥繁琐的数据罗列、整理、反复 Copy-Paste工作。 目前,自动报告生成主要运用自然语言处理(NLP)中的两种技术: * 自然语言理解(NLU):将日常话语消化理解,并转化为机器可后续处理的结构; * 自然语言生成(NLG):将由机器拆分好的结构化数据以人们能看懂的自然语句表达出来。 我们可以将这两种技术理解看成对日常对话这一原料的拆分加工和整装成可理解的自然语句——最终产品。
nodejs EPERM: operation not permitted, symlink '../../' 在Windows10里运行 grunt symlink 出现错误: PERM: operation not permitted, symlink '../../' 这是因为没有权限。 解决方法 按快捷键Win + X, 选择“命令提示符(管理员)”,然后在窗口中进入你的目标文件夹执行所需操作。这种方式能获取管理员的操作权限。
Java 【LeetCode】75. Sort Colors 问题描述 https://leetcode.com/problems/sort-colors/#/description Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in
翻译 【神经网络】11行Python代码实现的神经网络 今天看了一篇神经网络的文章,作者用11行就实现了一个神经网络,原文地址:A Neural Network in 11 lines of Python (Part 1) [http://iamtrask.github.io/2015/07/12/basic-python-network/],深为叹服,翻译如下。 > BP(Back Propagation)神经网络是1986年由Rumelhart和McCelland为首的科学家小组提出,是一种 按误差逆传播算法训练的多层前馈网络,是目前应用最广泛的神经网络模型之一。BP网络能学习和存贮大量的输入-输出模式映射关系 ,而无需事前揭示描述这种映射关系的数学方程。它的学习规则是使用梯度下降法,
Java 【LeetCode】74. Search a 2D Matrix 问题描述 https://leetcode.com/problems/search-a-2d-matrix/#/description Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: * Integers in each row are
逆向工程 【逆向工程】1. 关于逆向工程 《逆向工程核心要点》读书笔记 1. 逆向工程与代码逆向工程 > 逆向工程(Reverse Engineering,简称RE),一般指,通过分析物体、机械设备或系统,了解其结构、功能和行为等,掌握其中原理并改善不足之处、添加新创意的一系列过程 > 代码逆向工程(Reverse Code Engineering,简称RCE)是逆向工程在软件领域中的应用 逆向工程包含多种,对软件进行逆向工程只是其中的一种。 2. 代码逆向分析法 分析可执行文件时使用的方法大致分为两种:静态分析与动态分析 2.1 静态分析 不执行代码对代码进行分析。只通过观察文件的外部特征,如文件类型、
Java 【LeetCode】 73. Set Matrix Zeroes 问题描述 https://leetcode.com/problems/set-matrix-zeroes/#/description Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place. 给定一个矩阵,如果一个元素为0,则其所在行和所在列都置为0.
Java 【LeetCode】72. Edit Distance 问题描述 https://leetcode.com/problems/edit-distance/#/description Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.) You
Java 【LeetCode】71. Simplify Path 问题描述 https://leetcode.com/problems/simplify-path/#/description Given an absolute path for a file (Unix-style), simplify it. For example path = "/home/", => "/home" path = "/a/./b/../../c/", => "/c" Corner Cases: * Did you consider the
Java 【LeetCode】69. Sqrt(x) 问题描述 https://leetcode.com/problems/sqrtx/#/description Implement int sqrt(int x). Compute and return the square root of x. 算法 使用折半查找即可,但要注意整型溢出 代码 public int mySqrt(int x) { int left = 1, right
转载 【转载】黄奇帆万字报告:中国高房价之谜及解决方法 > 黄奇帆的分享内容分两大部分,第一部分系统地指出了中国房地产存在的10大失衡,第二部分提出了5个方面的制度安排。他对房地产乱象条分缕析,用清晰的逻辑和精准的数据,算了一次大账,指出了问题的深层机制所在,并给出了解决办法。 > 5月26日晚,全国人大财经委副主任委员黄奇帆现身复旦大学,以《关于建立房地产基础性制度和长效机制的若干思考》为题,进行了长达两个小时的分享。 > 虽然黄奇帆已经离任重庆市长半年时间,但不论主办方还是复旦学子仍习惯性地称呼他为黄市长,也许是因为他治下的重庆是中国经济一个非常独特的范本——在高速增长的GDP和价格平稳的房地产之间取得了不同寻常的平衡。 > 正如经济学家张五常对他评价的那样:构思系统清晰、遇到难题能想出解决的妙方,在复旦的讲坛上,黄奇帆的分享内容分两大部分,第一部分系统地指出了中国房地产存在的10大失衡,第二部分提出了5个方面的制度安排。他对房地产乱象条分缕析,用清晰的逻辑和精准的数据,算了一次大账,指出了问题的深层机制所在,并给出了解决办法。* 正文 今天要讲的题目是关于房地产的,主要是怎么贯彻习总书记的指示要求,
Java 【LeetCode】68. Text Justification 问题描述 https://leetcode.com/problems/text-justification/#/description Given an array of words and a length L, format the text such that each line has exactly L characters and is fully (left and right)
Java 【LeetCode】64. Minimum Path Sum 问题描述 https://leetcode.com/problems/minimum-path-sum/#/description Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers
Java 【LeetCode】63. Unique Paths II 问题描述 https://leetcode.com/problems/unique-paths-ii/#/description Follow up for "Unique Paths": Now consider if some obstacles are added to the grids. How many unique paths would there be? An obstacle and empty
Java 【LeetCode】62. Unique Paths 问题描述 https://leetcode.com/problems/unique-paths/#/description A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either
Java 【LeetCode】60. Permutation Sequence 问题描述 https://leetcode.com/problems/permutation-sequence/#/description he set [1,2,3,…,n] contains a total of n! unique permutations. By listing and labeling all of the permutations in order, We get the
Java 【LeetCode】59. Spiral Matrix II 问题描述 https://leetcode.com/problems/spiral-matrix-ii/#/description Given an integer n, generate a square matrix filled with elements from 1 to n^2 in spiral order. For example, Given n = 3, You should
Java 【LeetCode】57. Insert Interval 问题描述 https://leetcode.com/problems/insert-interval/#/description Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary). You may assume that the intervals were initially sorted according
Java 【LeetCode】56. Merge Intervals 问题描述 https://leetcode.com/problems/merge-intervals/#/description Given a collection of intervals, merge all overlapping intervals. For example, Given [1,3],[2,6],[8,10],[15,18], return [1,6],[8,10],[15,