Personal Blogs
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Machine Learning
- https://rushter.com/dsreader/
- Andrew Ng
- 视觉计算研究论坛
- 计算机视觉|视频处理|视频呈现
- CV牛人牛事简介
- Jianbo …
Machine Learning Resources
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Platforms
https://azure.microsoft.com/en-us/services/virtual-machines/data-science-virtual-machines/
Google TPU
Amazon
Misc
https://github.com/bulutyazilim/awesome-datascience
Data Mining/Machine Learning
A Collection of Cheatsheets
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Cheat Sheets for AI, Neural Networks, Machine Learning, Deep Learning & Big Data
Essential Cheat Sheets for Machine Learning and Deep Learning Engineers
https://github.com/kailashahirwar/cheatsheets-ai
Use Column Alias in SQL
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
Logically any
SELECTis processed in following order:- from
- where
- group by
- having
- olap functions
- qualify
- select
- sample
- order by
Besides the proprietary
QUALIFY/SAMPLEevery DBMS will do it exactly …
Misc Tips on Java
Tips and Traps¶
Use
==(instead of the methodObject.equals) to compare objects is a common and tricky mistake for beginner.You cannot define an abstract static method. This is because "abstract" means that no functionality is implemented while "static" means that functionality exists even there is no object. The two conflict in concept.