HackerTrans
TopNewTrendsCommentsPastAskShowJobs

blackbear_

2,108 karmajoined 9 lat temu

Submissions

Announcement and FAQ: Changes to GitHub Copilot Individual Plans

github.com
2 points·by blackbear_·w zeszłym miesiącu·2 comments

comments

blackbear_
·6 dni temu·discuss
Having similar thoughts at times. What are you reading nowadays?
blackbear_
·w zeszłym miesiącu·discuss
The GPT3 paper is a good starting point

Language Models are Few-Shot Learners https://arxiv.org/abs/2005.14165

I also enjoyed the papers for DeepSeek and GLM for an overview of all the tricks you need to make these things work

DeepSeek-V3.2: Pushing the Frontier of Open Large Language Models https://arxiv.org/abs/2512.02556

GLM-4.5: Agentic, Reasoning, and Coding (ARC) Foundation Models https://arxiv.org/abs/2508.06471
blackbear_
·3 miesiące temu·discuss
There are other players in the game: the business and the market.

Good code makes it easier for the business to move fast and stay ahead of the competition while reducing expenses for doing so.
blackbear_
·3 miesiące temu·discuss
Is it because people genuinely don't care, or because the barrier to become a power user is becoming taller and taller every passing year?
blackbear_
·4 miesiące temu·discuss
> what kind of neural-net architecture and training would allow a model to handle numbers lengths it hasn't been trained on

A recurrent neural network implementing binary addition with carry could do this, and one can derive the correct weights with pen and paper without too much effort.

Whether gradient descent will find them too is another matter entirely
blackbear_
·5 miesięcy temu·discuss
> I measure, test, and validate outputs exhaustively.

How do you do this? Do you follow traditional testing practices or do you have novel strategies like agents with separate responsibilities?
blackbear_
·5 miesięcy temu·discuss
There is no escaping the fact that feeding addictions is a great business model.
blackbear_
·5 miesięcy temu·discuss
Luckily our friends overseas have shown us the way of dealing with uncompetitive local industries: tariffs.
blackbear_
·6 miesięcy temu·discuss
Whether the code is AI generated or not is not important, what matters is that it really works.

Sharing code enables others to validate the method on a different dataset.

Even before LLMs came around there were lots of methods that looked good on paper but turned out not to work outside of accepted benchmarks
blackbear_
·6 miesięcy temu·discuss
Isn't it insane that any web page can run a port scan in the first place? Who wants that?

Meanwhile, running opencode in a podman container seems to stop this particular, err, feature.
blackbear_
·6 miesięcy temu·discuss
I had similar thoughts, and my conclusion is that competition is an inherently unstable state of affairs: at some point somebody wins, and they will try very hard to prevent any further competitors from arising.

Indeed, competition is undesirable for all participants involved: everybody wants to win and exploit the rest for their own gain. Note that this is the only way to make competition work and result in its temporary benefits (if nobody wants to win, nobody will compete).

So there must be a system to keep the competition going and preventing the rise of a definitive and exploitative winner, and the existence of this system has to be accepted by the competitors. But why would serious competitors accept a system that prevents them from winning?
blackbear_
·6 miesięcy temu·discuss
But we do ban tools sometimes: you can't bring a knife to a concert, for good reason.
blackbear_
·6 miesięcy temu·discuss
It is both common and uncontroversial to put restrictions on using certain tools in certain situations for safety reasons, especially in public and crowded places: you can't bring a hammer to a concert.

As the provider of a public place, X ought to take certain measures to ensure public safety on its premises. Of course, deciding what is and in not tolerable is the crux of the issue, and is far from trivial.
blackbear_
·6 miesięcy temu·discuss
What other countries could teach the U.S. about bringing down drug prices

A look at how European governments negotiate with pharma companies helps explain why Americans pay more for prescription drugs.

https://news.stanford.edu/stories/2024/11/what-other-countri...
blackbear_
·6 miesięcy temu·discuss
Because US voters prefer the free market as opposed to government regulation and nationalized healthcare.
blackbear_
·7 miesięcy temu·discuss
No, this would crash with numpy arrays, pandas series and such, with a ValueError: The truth value of an array with more than one element is ambiguous.
blackbear_
·7 miesięcy temu·discuss
It is done, in many countries there are legal requirements to report adverse events whenever they are observed upon use

https://en.wikipedia.org/wiki/Pharmacovigilance#Adverse_even...
blackbear_
·7 miesięcy temu·discuss
Generalized Additive Models: An Introduction with R by Simon N. Wood

This book is very strong on the fundamentals, while the R code is minimal and easy to follow.
blackbear_
·7 miesięcy temu·discuss
And so fact checking is back in vogue. Seems pretty biased.
blackbear_
·8 miesięcy temu·discuss
Two thoughts:

> how important is computing the exact gradient using calculus

Normally the gradient is computed with a small "minibatch" of examples, meaning that on average over many steps the true gradient is followed, but each step individually never moves exacty along the true gradient. This noisy walk is actually quite beneficial for the final performance of the network https://arxiv.org/abs/2006.15081 , https://arxiv.org/abs/1609.04836 so much so that people started wondering what is the best way to "corrupt" this approximate gradient even more to improve performance https://arxiv.org/abs/2202.02831 (and many other works relating to SGD noise)

> vs just knowing the general direction to step

I can't find relevant papers now, but I seem to recall that the Hessian eigenvalues of the loss function decay rather quickly, which means that taking a step in most directions will not change the loss very much. That is to say, you have to know which direction to go quite precisely for an SGD-like method to work. People have been trying to visualize the loss and trajectory taken during optimization https://arxiv.org/pdf/1712.09913 , https://losslandscape.com/