data-science

Data science, data analysis, and machine learning in Clojure https://scicloj.github.io/pages/chat_streams/ for additional discussions
2020-01-11T00:37:24.078200Z

@neo2551 Although I don't use Windows, Neanderthal worked for me on Windows when I tried it there without any special GPU setup other than installing GPU drivers and CUDA, which is provided by Nvidia as an automatic installer. For AMD/OpenCL it was even easier: as long as the drivers were installed (a click-through process), everything was available to Clojure/Neanderthal. Of course, YMMV, but there was no need for fiddling with the environment or any special setup in my case.

2020-01-11T02:00:18.078700Z

I wrote a quick blog on the hugging face gpt2 interop stuff https://gigasquidsoftware.com/

3👏3👀2🤘
2020-01-11T02:00:57.079Z

and here’s a repo to go along with it https://github.com/gigasquid/libpython-clj-examples

2020-01-11T15:49:13.080300Z

Clojurists Together is collecting proposals for projects to fund in the next 3 months. https://www.clojuriststogether.org/news/q1-2020-survey-results/

The call for proposals for new projects will close on Wednesday, January 15th, 2019 at 11:59pm PST.

fabrao 2020-01-11T17:50:08.082200Z

Hello, anyone could run libpython-clj in Windows? This asking about python3.6m with python3.6.m.dll?

fabrao 2020-01-11T17:50:30.082500Z

what is this m version?}

orestis 2020-01-11T18:49:10.086Z

Oh my, I started the spaCy tutorial yesterday - I used Python for 10 years but now that I got used to the REPL, it was super frustrating to go back to typing into a file, then running the code from the command line. Not to mention that for every section that involved loading the medium English dataset, I had to wait 15 seconds, every single time!

ben 2020-01-13T09:49:48.097Z

ipython has an enhanced repl, which I would recommend

ben 2020-01-13T09:50:22.097200Z

It’s not quite as nice as clj, but good enough for most things

orestis 2020-01-11T18:49:30.086600Z

I can see the value of doing the interop with libpython-clj now.

2020-01-11T19:53:13.087800Z

@orestis you also have a repl in python (less powerful) or you can try Jupiter

orestis 2020-01-11T19:55:45.088800Z

Yeah I’m not defining functions in Pythons repl :) Jupiter is on my list of things to try.

2020-01-13T07:54:32.096700Z

You can define in your script and emacs evaluate them in you repl

chrisn 2020-01-11T22:36:29.089400Z

@fabrao - Good question. That is the standard python shared library used by conda and cpython distributions. I imagine it has the same name on windows.