LeetCode Problem: Unique Binary Search Trees 詳解 Posted by By AKai 3 6 月, 2022Posted inLeetCode, 玩轉專業Tags: binary search tree, dynamic programming Description 給定一個數字 n,回傳 1,…
從貝氏的世界看 curve fitting: Maximum Likelihood (ML)、Maximum a Posteriori (MAP) Posted by By AKai 2 4 月, 2022Posted in機器學習, 玩轉專業Tags: AI, estimation, MAP, mean square error, ML, regularization 對於初探機器學習領域,以及 curve fitting 的學習者來說,肯定會讀到 curve fitting 的演算法,若是選用 Bishop 大師出版的 Machine learning 作為學習教材,一定會被其中大量的數學式子轟炸,並且對機器學習領域開始怯步,本文的目的在於幫助讀者理解貝氏世界裡的 curve fitting,從 ML 學派再到 MAP 學派,最後推導出 predictive distribution 的結果。
C/C++:pointer to array 以及 array of pointers 的差異 Posted by By AKai 4 9 月, 2021Posted inC++, 玩轉專業Tags: array, array of pointers, c++, pointer, pointer to array 這篇文章簡略紀錄一下 C/C++ pointer t…