HackerTrans
TopNewTrendsCommentsPastAskShowJobs

ubitaco

no profile record

comments

ubitaco
·قبل 10 أشهر·discuss
It's slightly buried in the readme on Github:

> how can we store a 24 byte long string, inline? Don't we also need to store the length somewhere?

> To do this, we utilize the fact that the last byte of our string could only ever have a value in the range [0, 192). We know this because all strings in Rust are valid UTF-8, and the only valid byte pattern for the last byte of a UTF-8 character (and thus the possible last byte of a string) is 0b0XXXXXXX aka [0, 128) or 0b10XXXXXX aka [128, 192)
ubitaco
·السنة الماضية·discuss
fun! Here's a heart: https://tixy.land/?code=hypot%28x-7%2Cy%2Babs%28x-7%29-9%29-...
ubitaco
·قبل سنتين·discuss
Whereas GP is making reference to a case in which Italian seismologists were literally convicted after their predictions did not come true.
ubitaco
·قبل سنتين·discuss
I would back "blank" as the most likely to be understood by the other person.
ubitaco
·قبل 3 سنوات·discuss
If you can make certain assumptions about the system (mainly that sources of noise follow gaussian distributions and are independent), then the Kalman filter gives the best possible estimate of the system state. And it can be computed cheaply, like on the Apollo guidance computer.

You basically need to know some kind of a model for the system to run KF. Whereas ML is all about working out the model automatically.

As for similarities, KF is a really efficient implementation of Bayesian inference. I think that any ML model that isn't fundamentally using Bayesian inference, is fundamentally flawed.