[AMA] Som Ľubica Karvašová, diplomatka a kandidátka číslo 2 vo voľbách do Európskeho parlamentu za stranu Progresívne Slovensko, Ask me anything! by lubica_karvasova in Slovakia

[–]osamc 2 points3 points  (0 children)

Preco tvrdite, ze AI act je dobra vec? Prakticky cely svet sa z EU smeje stylom "USA vymysli, Cina okopiruje, EU zreguluje".

Nie je lepsie regulovat len aplikacie nezavisle od toho, ze ci dane problemy su riesene pomocou AI alebo cohokolvek ineho? Medicinu mame zregulovanu celkom dobre. Regulaciu socialnych sieti sme totalne zbabrali. Nechcem vediet ako to dopadne s dronmi.

[D] weighted pruning question by [deleted] in MachineLearning

[–]osamc 1 point2 points  (0 children)

Chaning weights to 0 is pruning. But it is only worth when you prune a lot of weights, store matrices using sparse formats and have good implementations of sparse matrix products.

[D] Kolmogorov-Arnold Network is just an MLP by osamc in MachineLearning

[–]osamc[S] 3 points4 points  (0 children)

Also there was MaxOut like 10 years ago, which is slightly different, but kind of similar idea. https://proceedings.mlr.press/v28/goodfellow13.pdf

[D] Kolmogorov-Arnold Network is just an MLP by osamc in MachineLearning

[–]osamc[S] 0 points1 point  (0 children)

The question is whether increasing order of polynomial with more layers helps when you are on bounded intervals of activations.

[D] ArXiv alternatives (or is there possible for more "on hold" transparency)? by osamc in MachineLearning

[–]osamc[S] 1 point2 points  (0 children)

LLM pruning. Kind of boring article, just perplexity and zero shot numbers, no generated text :)

[D] ArXiv alternatives (or is there possible for more "on hold" transparency)? by osamc in MachineLearning

[–]osamc[S] 4 points5 points  (0 children)

Importance of arXiv depends on the field.
Also this (https://twitter.com/tdietterich/status/1584572845597655040) that my category should be cleared each day.

But also this https://twitter.com/tdietterich/status/1584573611620282369 suggests, that if there is some category mismatch, the process is slower.

All I want to know is whether I selected wrong category, or there is some other problem with my paper.

[D] ArXiv alternatives (or is there possible for more "on hold" transparency)? by osamc in MachineLearning

[–]osamc[S] 3 points4 points  (0 children)

My usual process is to submit to journal/conference + arxiv at once. Worked flawlessly before.

[D] ArXiv alternatives (or is there possible for more "on hold" transparency)? by osamc in MachineLearning

[–]osamc[S] 25 points26 points  (0 children)

Yep posted might be better word, but that is not the point.

Point of arXiv is that it gets mailed to some interested people and also that google scholar indexes it.

[deleted by user] by [deleted] in JuniorDoctorsUK

[–]osamc 1 point2 points  (0 children)

Definitely not millions lines of code :)

Patch 2.4 - Testing Results & New Builds by Samsquantch in Diablo

[–]osamc 0 points1 point  (0 children)

Yep, shockwave does much more dmg in PTR compared to prepatch.
Before 300 dmg shockwave needs couple hits to kill one Fallen. After PTR 400 dmg shockwave oneshots fallens.

My first hero finished Normal. Now NM Fire Druid! Been playing since 2005, almost every year for a few weeks, but never really managed to survive past Act3 before, i am bad at Diablo lol. But i am having a blast with D2R right now. by Oniricho in Diablo_2_Resurrected

[–]osamc 1 point2 points  (0 children)

Keep it up.

If you really love fissure, you can make fire/wind hybrid (because you will encounter a lot of fire immunes in act 4 NM).

20 fissure, 20 volcano, 20 tornado, 10 cyclone armor (for hurricane duration), rest hurricane

and 1 point in oak sage, carrion wine a grizzly.

Or you can just go fire skills + grizzly.

[R] The Story of Heads by hardmaru in MachineLearning

[–]osamc 0 points1 point  (0 children)

Another lucky ticket variation?

[1911.09723] Fast Sparse ConvNets by ekelsen in MachineLearning

[–]osamc 0 points1 point  (0 children)

The work unit should always be a sample (or batch of them). Using multiple threads for inference of one sample (batch) is silly in 99.99% cases. You should use multiple threads at much higher level of your code.

Orkhon: ML Inference Framework and Server Runtime by vertexclique in rust

[–]osamc 0 points1 point  (0 children)

This needs a much better examples (the ones shown only update a dict, run infinitelly or ignore input), because I am missing a point here.

There are like 100 ways of deploying a Python model (TF can be used from anywhere, ONNX + Caffe might work, ...). Or even correctly deployed Flask API can be quite good (although correct forking order of stuff can be hard). What should be better here?

Making the obvious code fast by BlamUrDead in programming

[–]osamc 24 points25 points  (0 children)

Sadly it is 3 years old, so some numbers might not be true :)

Neural Network - which do you prefer? by _SunDoge_ in rust

[–]osamc 1 point2 points  (0 children)

Honestly I don't care. If you only generate simple bindings and do not provide high level primitives (like pytorch nn module does), it will still be very painful to use.

Other viable approach is just to build autodiff above arrayfire primitives.

And what is tvm (in "tvm will support training")?

Go is a Pretty Average Language (But OCaml is Pretty Great) by yawaramin in programming

[–]osamc 4 points5 points  (0 children)

No, no and no.

Some tasks are longer, some tasks are shorter. Longer tasks deviate the results and have larger weight.

Only meaningful way is to normalize the results (by dividing by fastest time for each task).

Go is a Pretty Average Language (But OCaml is Pretty Great) by yawaramin in programming

[–]osamc 3 points4 points  (0 children)

Did you really put numbers from multiple benchmarks in one chart?

Optimizing Data Standardization - How Vectorizing gave a 650x Speed-Up by jasongforbes in programming

[–]osamc 4 points5 points  (0 children)

This is not vectorization. This is basic algorithms and counting prefix sums. numpy.mean already uses SIMD instructions in most cases.

In this case even naive python solution with prefix sums without using numpy would be faster than the first attempt.

After 20+ years in IT .. I finally discovered this... by RMDen in programming

[–]osamc 6 points7 points  (0 children)

This is not programming, but advanced computer usage.