HackerTrans
TopNewTrendsCommentsPastAskShowJobs

pineapple_sauce

no profile record

Submissions

Ego-Exo4D: a multi-modal multi-view (incl. 3D) geo-diverse dataset for AR/AI/ML

youtube.com
1 points·by pineapple_sauce·3년 전·0 comments

comments

pineapple_sauce
·작년·discuss
Why did you go with a publisher rather than publishing it yourself?
pineapple_sauce
·작년·discuss
I believe KAN hype died off due to practical reasons (e.g. FLOPs from implementation) and empirical results, i.e. people reproduced KANs and they found the claims/results made in the original paper were misleading.

Here's a paper showing KANs are no better than MLPs, if anything they are typically worse when comparing fairly. https://arxiv.org/pdf/2407.16674
pineapple_sauce
·2년 전·discuss
https://github.com/intel/intel-extension-for-pytorch
pineapple_sauce
·2년 전·discuss
This appears to be a significantly better implementation. Tramp mode is god awful slow and does not maintain a persistent connection.
pineapple_sauce
·2년 전·discuss
How is Jax theoretically better than PyTorch? The author is ignorant of torch.compile and biased as other commenters have pointed out.
pineapple_sauce
·2년 전·discuss
"Meat produced" - why not just say it how it is? "Animals killed" ...
pineapple_sauce
·2년 전·discuss
The last time I used MacPorts it fell out of popularity and did not have nearly as many packages as Homebrew had. It's unfortunate. Homebrew is dogshit slow.
pineapple_sauce
·2년 전·discuss
On rasterization & basic typesetting (no ligatures/gsub lookups): check out pixie https://github.com/treeform/pixie
pineapple_sauce
·2년 전·discuss
How do you measure beauty? You can't: "beauty" is subjective. And even if you try e.g. count the times you use recursion vs. iteration: that metric is subjective and not grounded in reality.

Sometimes recursion does allow you to reason about code more easily or come to a working solution faster, sometimes it does not.

Measure the concrete: CPU time and memory consumed. Iteration will likely trump recursive methods w.r.t both these metrics. If it doesn't, you can likely transform your iterative algorithm to one that utilizes SIMD (not always).
pineapple_sauce
·2년 전·discuss
How is applying DRY entering premature optimization territory (maybe relative to LOC?)? I argue it is instead: premature abstraction.

Optimization is specialization (which is the opposite of DRY): to enable DRY you likely need to generalize the problem (i.e. abstract) such that you remove duplication.
pineapple_sauce
·2년 전·discuss
Yes, I'm well aware of the definition of a macro in C and C++. Macros are simpler than templates. You can expand them with a compiler flag.
pineapple_sauce
·2년 전·discuss
What should be evaluated is removing indirection and tightly packing your data. I'm sure you'll gain a better performance improvement. virtual calls and shared_ptr are littered in the codebase.

In this way: you can avoid the need for the `final` keyword and do the optimization the keyword enables (de-virtualize calls).

>Yes, it is very hacky and I am disgusted by this myself. I would never do this in an actual product

Why? What's with the C++ community and their disgust for macros without any underlying reasoning? It reminds me of everyone blindly saying "Don't use goto; it creates spaghetti code".

Sure, if macros are overly used: it can be hard to read and maintain. But, for something simple like this, you shouldn't be thinking "I would never do this in an actual product".
pineapple_sauce
·3년 전·discuss
Mojo is a programming language, this is a library for Python that provides an abstraction over three Python-specific ML frameworks. Apples and oranges.

You could use Keras inside of Mojo since Mojo is Python-compatible/embeds a Python interpreter.
pineapple_sauce
·3년 전·discuss
Meta uses https://github.com/facebook/sapling see: https://engineering.fb.com/2022/11/15/open-source/sapling-so...

It’s an extension from Mercurial as the blog post states.
pineapple_sauce
·3년 전·discuss
>"blazingly fast"

> written by homebrew author (brew is notoriously slow)

> written in typescript

hmmm... I have my doubts on that claim, especially when there is no evidence to support it.
pineapple_sauce
·3년 전·discuss
DPI is not correct on MacOS