Fork me on GitHub
#data-science
<
2021-06-24
>
dharrigan09:06:22

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)

dharrigan10:06:09

thank you @otfrom will have a looksee

otfrom10:06:23

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

dharrigan10:06:55

thank you, will join

dharrigan10:06:20

which channel on zulip?

otfrom10:06:41

#data-science to start 🙂

Rob Haisfield17:06:54

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

genmeblog17:06:53

@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)

metasoarous18:06:50

@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.