data-science

Data science, data analysis, and machine learning in Clojure https://scicloj.github.io/pages/chat_streams/ for additional discussions
2020-07-06T01:30:50.388600Z

Thanks for the feedback folks! I'm using <http://tech.ml|tech.ml>.dataset, and I didn't time it, but it was at least dozens of minutes on a thousands by thousands matrix.

2020-07-06T01:32:51.389100Z

That is so helpful! Thanks so much @chris441!

2020-07-06T01:33:31.389700Z

Would you please do a docs treatment on libpython-clj as well?

chrisn 2020-07-06T19:22:41.392900Z

libpython-clj is a bit harder as some of the namespaces are based directly off of python modules and requiring them will fail if a loadable python or numpy aren't installed. I will look into it a bit and see what happens.

2020-07-08T00:44:07.393500Z

Ah... interesting.

2020-07-06T01:33:54.390300Z

One specific question: How do you handle named args to function calls with libpython-clj?

2020-07-06T01:37:25.390500Z

Thanks again!

2020-07-06T02:24:16.390700Z

You can do (py/call-kw f [] {:foo "bar"}) (the vector is for positional args)

2020-07-06T05:03:30.391800Z

Perfect! That's what I was looking for! Thanks!

1👍
2020-07-06T07:56:05.392400Z

how do you guys share models across AI applications? i have dockerized applications that i need to scale, and i was hoping for a solution without the network layer. if possible, maybe a way to shared loaded gpu models

chrisn 2020-07-06T19:22:41.392900Z

libpython-clj is a bit harder as some of the namespaces are based directly off of python modules and requiring them will fail if a loadable python or numpy aren't installed. I will look into it a bit and see what happens.