HackerTrans
トップ新着トレンドコメント過去質問紹介求人

ubitaco

no profile record

コメント

ubitaco
·10 か月前·議論
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
·昨年·議論
fun! Here's a heart: https://tixy.land/?code=hypot%28x-7%2Cy%2Babs%28x-7%29-9%29-...
ubitaco
·2 年前·議論
Whereas GP is making reference to a case in which Italian seismologists were literally convicted after their predictions did not come true.
ubitaco
·2 年前·議論
I would back "blank" as the most likely to be understood by the other person.
ubitaco
·3 年前·議論
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.