Network(3)
-
[FreeBSD] Traps and Interrupts
3.3 Traps and InterruptsTraps, like system calls, occur synchronously for a process. Traps normally occur because of unintentional errors, such as division by zero or indirection through an invalid pointer. The process becomes aware of the problem either by catching a signal or by being terminated. Traps can also occur because of a page fault, in which case the system makes the page available an..
2024.07.10 -
[GoogleML] Deep Neural Network
Deep L-layer Neural Network input dim ๋งํผ input ๋ ธ๋์ ์ 1๊ฐ์ input image์ ๋ํด, feature๋ค์ ์๋ก ํด์ํ ์ ์๋ค Forward Propagation in a Deep Network ๋ชจ๋ training example m๊ฐ๋ฅผ ํ ๋ฒ์ horizontally ํํํ๋ ๊ฒ -> vector version Getting your Matrix Dimensions Right Why Deep Representations? input layer์ ๊ฐ๊น์ด ๋ ธ๋๋ค์ ์ฃ์ง detect (๊ฐ๋ก, ์ธ๋ก ๋ฐฉํฅ์ low level features) ๊ฐ์ด๋ฐ - ๋, ์ฝ detect ๋ง์ง๋ง - ์ผ๊ตด ์ธ์ (high level features) ์ค๋์ค ์ธ์์ ๊ฒฝ์ฐ์๋, low ..
2023.09.11 -
[GoogleML] Shallow Neural Network, Vectorizing
Neural Networks Overview Neural Network Representation Computing a Neural Network's Output Vectorizing Across Multiple Examples
2023.09.09