Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 342 Bytes

cpp_naive.md

File metadata and controls

15 lines (8 loc) · 342 Bytes

Naive C++

We implement a Softmax in plain C++.

First, compute the max value of the input data.

Compute the sum of exponents.

Normalize the output.