Zachary Curtis

Results 2 issues of Zachary Curtis

It seems that the current 'issue' with KANs is that they appear to be less performant in training for a given amount of compute. Perhaps there are alternative ways to...

In the quickstart ``` pub fn main() { lustre.application(init, update, view) } ``` should be ``` pub fn main() { let app = lustre.application(init, update, view) let assert Ok(_) =...