data-science

Data science, data analysis, and machine learning in Clojure https://scicloj.github.io/pages/chat_streams/ for additional discussions
dharrigan 2021-06-24T09:56:22.022900Z

I'm a newb, just learning some stuff. Does clojure have interop with spacy? (I've only last week found out about spacy, not that I'm a data scientist or anything, just looking at an existing python program that loads a spacy model and thinking, perhaps it can be redone in Clojure)

2021-06-24T10:21:18.023300Z

this from @chris441 is probably worth looking at: https://www.youtube.com/watch?v=vQPW16_jixs

dharrigan 2021-06-24T10:31:59.023600Z

oooh

dharrigan 2021-06-24T10:32:09.023900Z

thank you @otfrom will have a looksee

2021-06-24T10:36:23.024400Z

@dharrigan the real data science action in clojure is happening on zulip: https://clojurians.zulipchat.com/

dharrigan 2021-06-24T10:36:55.024700Z

thank you, will join

dharrigan 2021-06-24T10:37:20.025Z

which channel on zulip?

2021-06-24T10:37:41.025400Z

#data-science to start 🙂

dharrigan 2021-06-24T10:37:46.025600Z

ta

dharrigan 2021-06-24T10:38:38.025800Z

susbcribed

2021-06-24T17:13:54.027400Z

Is spec used with its generative functionalities for creating Monte Carlos?

genmeblog 2021-06-24T17:29:53.030700Z

@rob370 What you're trying to archive? Spec includes generators but you can use just random number generator or low discrepancy sequence generators (in fastmath)

2021-06-24T18:10:50.033200Z

@rob370 It could potentially be, but it's important to note that the "default" generators in many cases produce very skewed data, which actually makes sense for catching edge cases in a testing paradigm. But you can bolt on whatever sort of generator you like (`with-gen` I think?), so you could potentially do Monte Carlo with them.