Hacker News new | ask | show | jobs
by jwilber 1881 days ago
On point 3 - I had to implement a logistic regression model in js recently and implementing all of the required math methods (eg dot product, transpose, vectorized addition, etc.) were actually super easy with js’s functional array utilities.
1 comments

js doesn't have a glm library?
js does have a glm library.
Which one are you using?
I’m not using one - as said, the project required I implement the model/all requisite math from scratch.