Live data from Hacker News

Viewing profile — awaythrowact

awaythrowact

HN member
Joined
Sat, Jun 05, 2021, 10:43 PM UTC
HN karma
117
Public activity
34 items

About awaythrowact

No profile information was provided.

Recent public activity

  1. comment
    Comment #27966321

    I may be wrong. It happens a lot! But I think Arrow's vision encompasses compute, not just a data format and data interface. https://www.slideshare.net/wesm/pycon-colombia-2020-pyt…

  2. comment
    Comment #27965828

    Fair. I agree Arrow is still more of a vision than anything else. > it didn't even provide a shape attribute I suspect this has to do with the project's focus. I think they aspire …

  3. comment
    Comment #27965587

    What is your point? (I honestly do not understand.) Blackbear's comment was that writing libraries in C allows those libraries to be deployed broadly in many compute environments. …

  4. comment
  5. comment
    Comment #27963321

    What are your favorite open source Python packages written in Rust?

  6. comment
    Comment #27962166

    > there is no libnumpy or libpandas I think this is changing with the rise of Apache Arrow. See eg here, slide 38 and on: https://www.slideshare.net/wesm/pycon-colombia-2020-python…

  7. comment
    Comment #27961760

    > for library writers, how many people might use it can be a deciding factor on investing the time Yes. Especially given that a high percentage of library development these days is…

  8. comment
    Comment #27922486

    Makes sense. I don't use TF Eager, but I do use Jax, and Jax lets you arbitrarily compose JITed and non-JITed code, which made me think that might be a viable pattern. I guess I wo…

  9. comment
    Comment #27922083

    If the next machine learning killer-app model requires autodiff'ed dynamic control flow, do you think Google/Facebook will build that capability into XLA/TorchScript? Seems like if…

  10. comment
    Comment #27901819

    Always happy to help. Especially the last day or so - I've been waiting on some long training loops so it's been a pleasant diversion. To be 100% honest with you, there's pretty mu…

  11. comment
    Comment #27900889

    > since `fit` would've likely come from the same source No. As described in the great-great-great-great-great-great-great-great-great-parent comment, the problem I am describing is…

  12. comment
    Comment #27900012

    Just to be clear, I like Julia, and think it has advantages over Python. I'm writing all this as someone who is cheering for Julia to break out of its HPC niche. Thanks.

  13. comment
    Comment #27899718

    @cbkeller I know in Julia I can just precede every function call and object instantiation with "modulename." and solve the namespace problem that way. What I want to do instead, wh…

  14. comment
    Comment #27898690

    Never made it that far. This was a feature I use all the time in Python ML development (both consuming open source packages via an OOP interface and also writing in-house model cla…

  15. comment
    Comment #27897822

    I very frequently run into namespace collisions like that. I think they are quite common in large codebases. I am aware of the ability to do eg "import TensorFlow; model = TensorFl…

  16. comment
  17. comment
  18. comment
    Comment #27895224

    I know nothing about Lisp, so at the risk of talking past eachother.... I never said macros were required. I said implementing this type of code without OOP required more boilerpla…

  19. comment
    Comment #27887193

    I agree you can achieve same benefits with Macros. Indeed, I see that MLJ, Julia's attempt at a SciKit type project, makes extensive use of Macros. But I personally think macros ar…

  20. comment
    Comment #27886737

    I'll give you my two cents, recognizing that I very well might just be ignorant about Julia and multiple dispatch, and if so please continue to educate me. Consider if we want to r…

  21. comment
    Comment #27886135

    I second most of this. A lot of problems are fixable with time and money. Maybe the Series A will help! But some problems might be related to Julia's design choices. One thing I re…

  22. comment
    Comment #27884165

    Congrats to the Julia team. I am a python developer who has dabbled with Julia but it never stuck for me. I think Julia was built by academics for other academics running innovativ…

  23. comment
    Comment #27785909

    Did PyTorch increase or decrease demand for ML developers? Did Ruby on Rails increase or decrease demand for web developers? Did C increase or decrease demand for systems programme…

  24. comment
    Comment #27609302

    Learned a bunch from the article and from this thread. Thanks all.

  25. comment
    Comment #27560845

    I pip install foo, and foo depends on bar. I pip freeze > lock.txt. My lock file has foo v1 and bar v1, right? Later bar upgrades to v2. I then try to rebuild the container image f…