Live data from Hacker News

Viewing profile — mjw

mjw

HN member
Joined
Sat, Aug 23, 2008, 11:56 AM UTC
HN karma
597
Public activity
253 items

About mjw

No profile information was provided.

Recent public activity

  1. comment
    Comment #22417811

    > A minor key has sharps and flats to create tension. The natural minor or Aeolian mode doesn't use any notes outside the diatonic scale (probably what you meant by "sharps and fla…

  2. comment
    Comment #18468200

    This is very neat. That said the reason these methods haven't received much attention so far is that relatively few people actually need to compute Jacobeans or Hessians directly. …

  3. comment
    Comment #17426539

    When I started out in ML I was really keen to learn about the most 'mathsy' approaches out there. I think with hindsight, it's great to have a broad spectrum of methods available t…

  4. comment
    Comment #11773584

    Ah yep, true. I'd forgotten you can still get the saddle effect from higher-order derivatives, the Hessian eigenvalues aren't enough to characterise it. I was thinking of examples …

  5. comment
    Comment #11771478

    My main quibble from this paper is: > For deeper networks, Corollary 2.4 states that there exist “bad” saddle points in the sense that the Hessian at the point has no negative eige…

  6. comment
    Comment #11718336

    See the other replies above, but: the logistic has heavier tails than the normal, so might do better in cases where we need robustness, where unexpected outcomes remain possible ev…

  7. comment
    Comment #11718244

    Ah yep, I forgot it's the canonical link. That's more of a small computational convenience though, right, at least when fitting a straightforward GLM -- it should be very cheap to …

  8. comment
    Comment #11713608

    Their answer is pretty much 'because it's based on the log-odds', which to me is still only very mild motivation. There are other non-linearities which people use to map onto (0, 1…

  9. comment
    Comment #11702777

    Pretty much any kind of mathematical modelling that involves uncertainty, really. Making inferences and predictions from data, in the presence of uncertainty. Analysis of the prope…

  10. comment
    Comment #11454176

    If anything, to me a lot of deep learning literature seems to lack the statistical insight and theory that's available to other subfields in machine learning (whether the Bayesian/…

  11. comment
    Comment #11323111

    It's more an empirically-verified thing than a mathematical fact, there's nothing magic about 16 bits AFAIK. Empirically 16 bits seems to work well enough for some tasks, taking it…

  12. comment
    Comment #10969057

    Yep. To elaborate: really big batch sizes can speed up training data throughput, but usually mean that less is learned from each example seen, so time-to-convergence might not nece…

  13. comment
    Comment #10969012

    Warp-CTC implements one specific model (or at least, one specific loss function), it's not really a general framework in the same way as the other libraries mentioned.

  14. comment
    Comment #10962366

    > If I publish a paper people want to know what the data I found suggests and that's it. What they're going to get, is what your data and your modelling assumptions suggest. If you…

  15. comment
    Comment #10960833

    It's odd to complain specifically about subjectivity of the prior when the likelihood is often just as subjective. Gelman puts this well here: http://andrewgelman.com/2015/01/27/pe…

  16. comment
    Comment #10810316

    On the whole this is useful, although I think it's a little unfair to Theano in places. * Performance I feel they should score separately here for compilation/startup time vs runti…

  17. comment
    Comment #10544047

    Agreed that SQL is ugly as hell, but if you want to talk about its theoretical properties that's a separate debate. Theory doesn't care whether something's aesthetically pleasing, …

  18. comment
    Comment #10536734

    Does anyone know if TensorFlow can apply algebraic simplifications and numerical optimisations to the compute graph, in the way that Theano does with its optimisations? Sounds like…

  19. comment
    Comment #10536647

    Ah OK, fair enough. Not sure what definition you're using for the category of tables, but I don't think the distinction between table and query is really that significant, at least…

  20. comment
    Comment #10536115

    > What I mostly see around is just standard linear algebra operations on matrices and vectors lifted to higher-dimensional tensors point-wise Equally what is matrix multiplication …

  21. comment
    Comment #10529887

    Eh... SELECT a.*, b.* FROM a CROSS JOIN b; (SELECT 'a' AS tag, * FROM a) UNION (SELECT 'b' AS tag, * FROM b);

  22. comment
    Comment #10245871

    AVDI is incredibly awesome. Thanks so much for this work. Really nice readable paper on it too. As someone working with large datasets I think automating variational inference + SG…

  23. comment
    Comment #10168162

    It's nice to get people thinking about possible connections and sharing terminology here, but I'm not sure that many of the connections which the article manages to make precise ar…

  24. comment
    Comment #9856797

    When you penalise the L2 norm of the convolution of the image with a filter (like a gradient or edge detector for example) you are effectively doing this. The spectrum of the filte…

  25. comment
    Comment #9485311

    I've heard this too and it's a great way to demonstrate you don't really know what statistics is :) Statistics is not (just) opinion polling, there's a lot more to it than estimati…