Live data from Hacker News

Viewing profile — manthideaal

manthideaal

HN member
Joined
Mon, Dec 30, 2019, 11:01 AM UTC
HN karma
62
Public activity
60 items

About manthideaal

No profile information was provided.

Recent public activity

  1. story
    How not to write a book about Keras

    I am reading a book about keras and the author introduces new deep learning techniques and choose the problem of estimating the temperature from local data to compare performance o…

  2. comment
    Comment #22777784

    to merge the properties of two objects you could use let merged = {...obj1, ...obj2}; See (1) which has 2808 votes. (1) https://stackoverflow.com/questions/171251/how-can-i-merge-p…

  3. comment
  4. comment
    Comment #22777429

    In the source code to perform el.classList = v.classes the author uses: for (const name of v.classes) if (!el.classList.contains(name)) el.classList.add(name) for (const name of el…

  5. comment
    Comment #22772356

    I wonder if a two step process could work better than this, first use a variational autoencoder or simple an autoencoder then use it to train the labeled sampled. In (1) there is a…

  6. comment
    Comment #22769419

    Thanks for all the info. I think that mediasoup is a very good SFU. I wish you the best and I hope mediasoup SFU to become a crucial tool for rtc. Edited: In a recent article (1) i…

  7. comment
    Comment #22768876

    Each receiver sending feedback does not prevent the server for using datagrams with multiple destinations. I can see that each peer use a different resolution and bitrate but that …

  8. comment
    Comment #22768683

    IPv6 could have and address for "reachable by default", I find that very useful, also IPv6 allow many addresses so that is not wasteful.

  9. comment
    Comment #22768664

    In order to send a datagram to multiple IP the first, and naive idea, one can think of is to change the datagram protocol to allow for multiple destination. Today, 2020, is the rig…

  10. comment
    Comment #22767724

    To understand the terms: webrtc, stun, turn, mesh, sfu, mcu, ice and trickle ice, there is (1). 15 minutes to understand what is all this about. What about IPv6 stun and turn?, it …

  11. comment
    Comment #22757347

    Another link with pdf with lectures, exam and assigment and a link to video of lectures in (1) (1) https://www.davidsilver.uk/teaching/

  12. comment
  13. comment
  14. comment
    Comment #22731433

    You are right. Also the Universal Approximation theorem (1) for neural networks guarantees that neural networks can approximate continuous function on compact subsets of R^n, in th…

  15. comment
    Comment #22730125

    it seems that neural networks have problem for computing the maximum function, and a human can compute the maximum easily, so it seems that the three heuristic rules don't work in …

  16. comment
    Comment #22729561

    IANAL, but if the purpose of taking screenshot every 30 minutes is to control the work of the employee you must know that in the EU you have the right to be informed about any meas…

  17. comment
    Comment #22726807

    Using so many microservices seems like a good use of erlang, googling I found: (1) (1) http://blog.plataformatec.com.br/2019/10/kubernetes-and-the-...

  18. comment
    Comment #22714036

    A more recent version of the last link in the Statistics and machine learning section is (1) (1) https://github.com/percyliang/cs229t/blob/master/lectures/no...

  19. story
  20. comment
    Comment #22669281

    Thanks, here it is: https://www.zdnet.com/article/graph-theory-suggests-covid-19...

  21. story
  22. story
  23. comment
    Comment #22665578

    Some more info from (1): The new Netwalker phishing campaign is using an attachment named "CORONAVIRUS_COVID-19.vbs". Related: Also from (2): APT36 uses two lure formats in this ca…

  24. comment
    Comment #22645867

    TP + FN means true positives plus false negatives, that is the number of deseased people. P should be the number of people that gives positive in the test, since TP means true posi…

  25. comment
    Comment #22645777

    I can't understand why one would use P in such a way that P = TP + FN, this is going to be a real mess. Afortunately there is the following page in which they only use TP,FP, TN, F…