Vinn's Studio

Vinn's Studio

Goodbye. Halcyon days.

Dynamic Programming
从子问题解决原问题,动态规划一般有自顶向下和自底向上两种编写方式 Bottom-Up 自底向上 (Bottom-Up),形式上对应迭代 (iteration):巧妙地安排求解顺序,从最小的子问题开始利用循环逐步计算并将结果存在 dp 数组里,基于子问题的结果向后计算。 以计算斐波那契数列的第 n 个数为例,普通循环结构的求解方式如下: 123456789def Fibonacci(n):a = 0b = 1if n == 1: return aif n == 2: return b# 迭代步骤for i in range(2, n): a, b = b, a+breturn b ...
Bitwise Operation

计算机中的数在内存中都是以二进制 (Binary) 形式进行存储的,用位运算 (Bitwise Operation) 可以直接对整数在内存中的二进制位进行操作,因此其执行效率非常高,在程序中尽量使用位运算进行操作,这会大大提高程序的性能。

Deep & Cross Network

DCN 全称 Deep & Cross Network,是谷歌和斯坦福大学在 2017 年提出的用于 Ad Click Prediction 的模型。

OHLC

在股票市场中,经常需要对开盘价,收盘价,最低价最高价等进行可视化分析,来寻找股市中的规律,为此就需要绘制 OHLC 图。

Pseudo Labelling
This is an encrypted article, please enter the password or contact me if you want to see the contents.
Super
This is an encrypted article, please enter the password or contact me if you want to see the contents.
avatar
Lingfeng Zhu
DataSci at UW Madison
FRIENDS
UW-Madison WHU