1

I’m implementing softmax regression in Octave. Currently I’m using a non-vectorized implementation using following cost function and derivatives.

alt text

alt text

Source: Softmax Regression

Now I want to implement vectorized version of it in Octave. It seems like bit hard for me to write vectorized versions for these equations. Can somebody help me to implement this ?

Thanks

Upul

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Upul Bandara
  • 5,973
  • 4
  • 37
  • 60

1 Answers1

3

This is very similar to an exercise in Andrew Ng's deep learning class, they give some hints http://ufldl.stanford.edu/wiki/index.php/Exercise:Vectorization

Yaroslav Bulatov
  • 57,332
  • 22
  • 139
  • 197