Neural Network optimization 對資料進行最佳化加快模型收斂速度,使神經網路的訓練更快。 Data normalizationData normalization 加快神經網路的訓練。 normalization = (data - mean) / std data -> mean = 0, var = 1 data 經過 sigmoid、tanh 等啟動函數後,得到的導數較大 導數愈大,調整幅度大,愈快逼近目標;導數愈 2021-08-18 Note Neural Network optimization
Raspberry Pi Samba Server Install Samba選擇 yes,安裝額外套件將 DHCP 取得的 WINS 設定寫入 smb.conf。 1pi@raspberrypi:~ $ sudo apt-get insatll samba Setting Samba加入 SambaServer 並設定密碼。 1pi@raspberrypi:~ $ sudo pdbedit -a -u pi 編輯 SambaServer 2021-08-01 Raspberry Pi Samba Server
Install Raspberry Pi OS Step 1作業系統下載 Raspberry Pi Imager (建議) 或 Raspberry Pi OS (previously called Raspbian),下載官方版較不會出現不相容問題。 將作業系統安裝至micro SD卡。(建議先將SD卡格式化) 新增空的ssh檔案(無副檔名) 及 製作 WiFi 設定檔。 建議可以對電腦熱點進行連線,方便查找 Raspberry Pi 的 2021-07-30 Raspberry Pi Raspberry Pi OS
YOLO v1 Real Time Object Detection You Only Look Once: Unified, Real-Time Object Detection IntroduceObject DetectionAlgorithm of The YOLO Detection System 其流程主要分為三個步驟 : 將影像大小調整至448*448 執行卷積神經網路進行物件偵測與分類 透過 NMS (Non-max suppression) 方式 2021-07-18 Object Detection YOLO v1 Object detection
Basic Git Commands Set up Git config path首先設定好自己的名字與信箱 12$ git config --global user.name "Your name"$ git config --global user.email "Your email" 確認輸入是否成功 12$ git config --global user.name$ git conf 2021-07-17 Note Git