Live data from Hacker News

Viewing profile — iverjo

iverjo

HN member
Joined
Sat, Sep 12, 2015, 10:44 AM UTC
HN karma
167
Public activity
46 items

About iverjo

Senior Machine Learning Engineer

Recent public activity

  1. comment
    Comment #25300854

    Sadly, pip 20.3 seems to have broken docker builds in one of my projects. The symptom is that the pip install seems to hang indefinitely (>40000 seconds). I switched back to 20.2 f…

  2. comment
    Comment #20913224

    Thanks! No, it doesn't, but I'm happy to accept a pull request for such an option

  3. comment
    Comment #20911997

    Shameless plug: Here's my take on building images with images. It uses a genetic algorithm. https://github.com/iver56/emoji-art-generator

  4. comment
    Comment #19928398

    Further, you could shave off a couple of bytes by inserting before the canvas element, instead of having F() after the canvas element

  5. comment
    Comment #19927421

    I think you could shave off 8 characters by doing 0|Math.random()*3 instead of parseInt(Math.random()*3)

  6. story
  7. comment
    Comment #16450556

    I also had that idea, and I made a crude proof of concept: https://github.com/iver56/cnn-clock

  8. comment
    Comment #16008252

    This idea originated in the jsgolf community and dwitter (a site where you post 140 character js snippets that generate interesting visuals). See https://www.dwitter.net/u/aemkei

  9. comment
    Comment #15316543

    I spend almost all time programming and thinking. Occasionally, I discuss some issues with colleagues. Other than that, I attend approximately one hour of meetings per week in tota…

  10. comment
    Comment #14781372

    A friend of mine once wrote a 3D effect in a 2D canvas in only 130 bytes of JavaScript code: https://www.dwitter.net/d/914

  11. comment
    Comment #13841512

    https://github.com/search?q=correcthorsebatterystaple&type=C...

  12. comment
    Comment #13672303

    Sony has been working on style (genre) transfer in music lately: https://youtu.be/I9M8l2guPSo?t=21m30s

  13. comment
    Comment #13536108

    Probably to avoid confusion, as git (and github) already had a concept of tags https://help.github.com/articles/working-with-tags/

  14. comment
    Comment #13340299

    Do you mean messages sent over infrasound (less than ~20 Hz)? That would typically not work, because most speakers cannot produce infrasound and most microphones don't pick up freq…

  15. comment
    Comment #13175586

    This is very cool! Kudos to the authors. I had the idea about this about a year ago (when style transfer for images was gaining traction), and wanted to do it in my master's thesis…

  16. comment
    Comment #13172631

    How does this relate to Progressive Neural Networks [0]? That technique is also about accumulating knowledge (while not forgetting existing knowledge) [0] https://arxiv.org/abs/160…

  17. comment
    Comment #13118061

    Jokingly, this was the first apple AI research I saw online, about a month ago: https://arxiv.org/abs/1610.08120v1

  18. comment
    Comment #13085291

    To the author: Have you tried to use a logarithmic frequency scale in the spectrogram? [1] That representation is closer to the way humans perceive sound, and gives you finer resol…

  19. comment
    Comment #13085205

    Nice approach, and well explained! By the way, Niland is a startup that also does music labeling with the help of deep learning. Demo available here: http://demo.niland.io/ For exa…

  20. comment
    Comment #13057034

    It's also inspiring to see how much you can do with only 140 characters of code (so it fits in a tweet). Here are some examples: https://www.dwitter.net/d/104 (tunnel) https://www.…

  21. comment
    Comment #12923373

    I recommend you to try the LAB color space and to use delta E 94 [1] for computing distances between colors in the color space [1] https://en.wikipedia.org/wiki/Color_difference#CI…

  22. comment
    Comment #12623864

    I'd say scikit-learn is a better way to get started with machine learning. Check this out, for example: https://www.youtube.com/watch?v=cKxRvEZd3Mw

  23. comment
    Comment #12622194

    I guess one could train a Convolutional Neural Network to convert the ASCII art to an actual image. Something like this, but for ASCII: http://sketchy.eye.gatech.edu/

  24. comment
    Comment #12622175

    Wow man, sigvehtml is actually used in production! Source: https://github.com/sigvef/arktis/blob/master/index.sigvehtml Rendered website: http://arkt.is/

  25. comment
    Comment #12604785

    We don't have a blog yet. We're using Azure for the hardware and mainly scikit-learn for the training (we train only on metadata at the moment). Will probably start using Tensorflo…