Recent Posts

Python: Zip

1 minute read

zip 这个函数,用起来总是没有什么信心……我们上一下 The Python Standard Library 上的示例代码看看(注意:这并非源码,因为现在已经是返回一个 zip 对象了):

Python: Signature

less than 1 minute read

Just a reminder that we have such objects to inspect the function signatures, as PEP 362 – Function Signature Object indicates.

Python: *expression

3 minute read

Argument Unpacking: *expression and **expression inside function calls

scikit-learn: Pipeline

1 minute read

Pipeline 的作用,见名知意,就是把多个 processor units chain up 起来。Pipeline 要求前 $N-1$ 个 processor units 是 Transformer,最后一个 processor unit 是 Estimator。我们举个例子看看就很好理解了:

Python: Mixin

less than 1 minute read

首先 a Mixin is class to be mixed-in,它在 python 里起到的作用类似于 interface 或者 abstract class,但是又有点微小的差别,我们来看个例子:

ML Terminology

3 minute read

Confusion matrix $\subset$ Contingency table

How to rename MySQL databases or tables?

1 minute read

场景:我有一套老的数据,比如 2015 年发布的 db,现在 2016 年发布了新的数据,它的 dump file 里还是用的老的 database name db,我想把这两套数据都存在数据库里。