SOLID Principle 發表於 2021-12-16 更新於 2025-01-06 分類於 Software Engineering , Software Design 文章字數: 3k 所需閱讀時間 ≈ 5 分鐘 SOLID 是五個物件導向設計的基本原則縮寫,由 Robert C. Martin(Uncle Bob)提出,旨在幫助開發人員設計出靈活且易於維護的系統。這些原則可以降低耦合度、提高可讀性與擴展性。 閱讀全文 »
領域驅動設計 - 消化知識 發表於 2021-12-14 更新於 2025-01-26 分類於 Software Engineering , Software Design 文章字數: 542 所需閱讀時間 ≈ 1 分鐘 簡介I 運用領域模型II 領域模型建構區塊III 透過重構加深理解IV 戰略設計 閱讀全文 »
Visual Studio Code 疑難雜症 發表於 2021-12-12 更新於 2024-12-11 分類於 Software Engineering , Software Development , IDE 文章字數: 997 所需閱讀時間 ≈ 2 分鐘 指令無法安裝 Ubuntu updates vs code. Extension mode 快速鍵指南 閱讀全文 »
凍結參數 發表於 2021-12-11 更新於 2024-12-11 分類於 Computer Science , Artificial Intelligence , Machine Learning , Deep Learning 文章字數: 604 所需閱讀時間 ≈ 1 分鐘 凍結參數123456model = SuperPointNet_gauss2() for param in model.parameters(): param.requires_grad = Falsefor param in model.linear.parameters(): # 指定訓練 param.requires_grad = True 閱讀全文 »
檢視內神經網路架構 發表於 2021-12-11 更新於 2024-12-11 分類於 Computer Science , Artificial Intelligence , Machine Learning , Deep Learning 文章字數: 166 所需閱讀時間 ≈ 1 分鐘 torchsummary 1234567device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')model = SuperPointNet_gauss2()model = model.to(device)# check keras-like model summary using torchsummaryfrom torchsummary import summarysummary(model, input_size=(1, 240, 320)) 閱讀全文 »