David Refaeli
David Refaeli
doesn't make much sense without it - otherwise this whole NN is just an elaborate linear combination.
I have a pretty good computer, and am having a lot of problems using the Stan framework. 1st installation wasn't easy at all. But worse - even though I got...
I think that: ``` z2t = [1; Theta1 * a1t]; d2t = Theta2' * d3t .* sigmoidGradient(z2t); ``` should be: ``` z2t = Theta1 * a1t; d2t = Theta2' *...
Beautiful code - just a small nitpick: you define unique_vals but don't actually use it. I replaced the relevant line in find_best_split function.
I get the following problem when trying to install: gamma.c deps/gsl/cdf/gamma.c(24): fatal error C1083: Cannot open include file: 'config.h': No such file or directory Any idea on how to solve...
I use weights on my survfit function. I want to plot in the risk table also the cumulative events, but unfortunately it produces very long numbers with a lot of...