Consider the following operation function. ``` function softmax(xs) return exp.(xs) / sum(exp.(xs)) end ``` It was not possible to calculate the Jacobian of the above function. ``` @variables xs[1:3] Symbolics.jacobian(softmax(xs), xs) # Does not work. ```