Assessing Bikeability with SVI and CV - A Summarization of the Study
Notes on Ito, K., & Biljecki, F. (2021). Assessing bikeability with street view imagery and computer vision. Transportation Research Part C: Emerging Technologies, 132, 103371. https://doi.org/10.1016/j.trc.2021.103371
IntroductionThe questions that the study aims to answer
Can we use CV techniques and SVI data to comprehensively assess bikeability within and among cities?
Can SVI and CV alone be used to assess bikeability in place of traditional techniques?
What is done in this study
Dev ...
AI Resources - The Thread
Notes on “How to Train Yourself For AI” Keynote by Yen-Chen Lin, 2023/02/09 at 2023 Fun AI Camp
“To Train YOU, not AI.”
Math
Linear Algebra (MIT Open Course)
Nonlinear Optimization (Numerical Algorithms)
Usage: EVERYTHING
Calculus (Matrix Calculus))
Gradient Derivation
新趨勢:直接寫自己的GPU Kernel (No more PyTorch!!!)
Differential Equations (Another MIT Open Course)
Usage: Neural ODE
Probability - Generative Models (Harvard Open Course)
Usage: Generative Models
Machine Learning
李宏毅 ...
那些我希望能早點知道的事(1) - 開發環境管理
2023靜心創客社暑訊共備計畫,明明自己弱弱的但還是寫了
簡報連結
Outline
介紹環境管理
認識各種編輯器
一些開發經驗分享
為什麼要管理環境其實你也可以把檔案隨便亂放就好了,沒人管你
但如果你想要:
增加開發效率
有一台乾淨整齊的電腦
減少情緒失控的頻率
有效的跟其他人溝通
那我會建議你做一下環境管理。
不要做白工
有效率的工程師就是好的工程師
掌握自己的能力與習慣
找到自己的workflow
選擇你的編輯器什麼是程式編輯器(code editor)顧名思義,就是程式設計師寫程式的地方。
早在程式編輯器們出現之前,有一種東西叫文字編輯器(text editor),像Notepad之類的都算是文字編輯器
聽說真男人都用Notepad1. 我是女的
其實程式編輯器更能滿足工程師的需求
有更好的顏色醒目表示
好用的Extensions
自動完成(auto completion)功能
縮排功能
但如果你喜歡Notepad就去吧,畢竟環境管理的重點還是要找到自己的workflow,當然要用自己喜歡的工具才能走得下去。
IDE?IDE (Integreted Develop ...