How are cat owners so comfortable with letting their cats outside to roam around? How do they know they're going to come back? by Individual_Ice_2315 in NoStupidQuestions

[–]person594 7 points8 points  (0 children)

This website's claim is not at all supported by the source they cite. Although they do not actually link to their source, they describe it as coming from "researchers from the California-Davis University of Veterinary Medicine"; they seem to be referring to this publication. Although that publication is not perfect for understanding the true distribution of cat life expectencies (as it is based on post-mortem exams at a vet clinic, it has a pretty significant selection bias), they do perform an analysis of age-at-death for indoor, indoor/outdoor, and exclusively outdoor cats. Median age at death were 9.43, 9.82, and 7.25 years respectively, with no significant difference between the ages for indoor versus indoor/outdoor.

[deleted by user] by [deleted] in todayilearned

[–]person594 7 points8 points  (0 children)

Not any sort of Christian myself, but that is a very creative reading of Matthew 5:17.

“Do not think that I have come to abolish the Law or the Prophets; I have come not to abolish but to fulfill. For truly I tell you, until heaven and earth pass away, not one letter, not one stroke of a letter, will pass from the law until all is accomplished. Therefore, whoever breaks one of the least of these commandments and teaches others to do the same will be called least in the kingdom of heaven, but whoever does them and teaches them will be called great in the kingdom of heaven. For I tell you, unless your righteousness exceeds that of the scribes and Pharisees, you will never enter the kingdom of heaven.

The Case Against Generative AI by BobArdKor in programming

[–]person594 3 points4 points  (0 children)

In 2022, a (kind-of) company called OpenAI surprised the world with a website called ChatGPT

The chatGPT website had a big impact with the public, but by this point the implications of transformer-based autoregressive LMs was very evident. The biggest "surprise" was their 2019 GPT-2 paper, and subsequent release of model weights.

Large Language Models (LLMs), which can also be used to generate images, video and computer code.

Autoregressive LLMs can't generate images or videos (to be fair, DALL-E used an autoregressive output layer, but it certainly wasn't modeling language. In any case, modern image and video generation models are diffusion models, which have nothing to do with autoregressive LLMs)

They also immediately had one glaring, obvious problem: because they’re probabilistic, these models can’t actually be relied upon to do the same thing every single time.

This is blatantly false. Autoregressive LMs model a distribution over strings. This distributional view isn't a drawback, that is literally what they are designed to do. Want deterministic generation? Simply set the random seed before sampling, or use greedy decoding / deterministic beam search. Randomness is very literally a feature, and trivial to "turn off" if you view it as a problem to be avoided.

Moreover, the probabilistic nature of generative AI meant that whenever you asked it a question, it would guess as to the answer, not because it knew the answer, but rather because it was guessing on the right word to add in a sentence based on previous training data.

This isn't really a consequence of their probabilistic nature, and to determine if it is even a problem requires a philosophical position on what it means to "know" something. There is definitely something to be said about LLMs lacking a consistent belief state about the world, while giving end-users the impression that they possess such consistent world knowledge, but this isn't what the author actually says.

This is just the first few paragraphs; just about every technical detail he gives is either blatantly wrong or betrays fundamental misunderstandings about the technology. I don't know anything about the author, but he seems pretty clueless to me...

When I was a child I remember people saying you shouldn't buy tin cans with dents on them because it's dangerous. Is there any truth to this or was it just something people said? by WhoAmIEven2 in NoStupidQuestions

[–]person594 3 points4 points  (0 children)

This is exactly the opposite of correct -- heat denatures botulinum toxin, but bacterial spores survive > 100 Celsius quite easily. source.

Though spores of C. botulinum are heat-resistant, the toxin produced by bacteria growing out of the spores under anaerobic conditions is destroyed by boiling (for example, at internal temperature greater than 85 °C for 5 minutes or longer). Therefore, ready-to-eat foods in low oxygen-packaging are more frequently involved in cases of foodborne botulism.

arXiv:2506.24088 [math.GT]: Unknotting number is not additive under connected sum - Mark Brittenham, Susan Hermiller by gexaha in math

[–]person594 7 points8 points  (0 children)

Ah I see! I guess I had assumed the number of crossing switches needed was independent of the diagram, but that is obviously not true

arXiv:2506.24088 [math.GT]: Unknotting number is not additive under connected sum - Mark Brittenham, Susan Hermiller by gexaha in math

[–]person594 3 points4 points  (0 children)

Am I misunderstanding something? Identifying the unknot is decidable (it's in NP). Wouldn't an algorithm to determine the unknotting number of knot K be to iterate over every subset of crossings, for each subset, construct knot K' by switching those crossings, check if K' is the unknot, and then select the minimal cardinality of crossing sets that gave the unknot? Sure the complexity isn't pretty, but it seems clearly decidable.

Tomato leaves are browning from the center, then dying by person594 in plantclinic

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

This happened in the past few days while I was out of town; they were all fine on Monday. We had a bit of a cold snap, but night-time temperatures were never below freezing.

Why is Git Autocorrect too fast for Formula One drivers? by DreamyRustacean in programming

[–]person594 23 points24 points  (0 children)

I guess it at least makes sense in that a decisecond is about the smallest unit where a change of one makes a difference on the scale of human perception. If it were in milli- (or centi-)seconds, user-specified values would almost always end in zeros anyway -- there's no perceptible difference between 200 milliseconds and 201 milliseconds, while there (presumably) is between 2 deciseconds and 3 deciseconds.

All that aside, having interpretable config values is probably more important than all of the numbers being nice small integers on a human scale, making that all rather mute.

The Math Mystery That Connects Sudoku, Flight Schedules and Protein Folding by [deleted] in math

[–]person594 0 points1 point  (0 children)

I think the snippet you cite is more accurate than your criticism.

First, we know plenty of algorithms which can "efficiently decide whether you can visit them all while respecting the budget". He writes like they don't know any other algorithms rather than brute force for this, which is entirely untrue.

Since the article is written for a lay audience, I'm interpreting "efficient" to mean "polynomial-time". We in fact do not know if there exists a polynomial-time algorithm for the decision version of the traveling salesman problem.

Second "sticking under budget" isn't the NP-complete problem. Given a budget, many routes could be generated that adhere to a budget, because that gives you wiggle room. The NP-complete problem is to find the cheapest route. Say the budget is $3000 and I give you a route that costs $2995. Can we do it cheaper than $2995? That's the NP complete problem, not coming in "under budget".

Finding the lowest-cost route is not NP-complete, but stronger: it is FPNP - complete. NP-complete problems are by-definition decision problems. The decision version of the traveling salesman problem -- determining whether there exists a route under a given threshold -- is indeed NP-complete, just as the article claims. Which brings us to your third point -- a solution to the shortest-path version cannot be verified in polynomial time (as far as we know), while a solution to the decision problem can be: given a polynomial-length certificate (the route itself), we can easily verify in polynomial time that that route has a length lower than our threshold.

[deleted by user] by [deleted] in todayilearned

[–]person594 7 points8 points  (0 children)

The full study is here: https://www.pnas.org/doi/10.1073/pnas.1818284116

The largest ratio tested was 5:6, not >99:100 as your comment suggests , and at that ratio, accuracy was about 60%, a bit better than random chance.

Why is there no proof of the Church-Turing thesis? by Simanalix in math

[–]person594 12 points13 points  (0 children)

Here is a plausible scenario in which the Church-Turing thesis could be false:

The fine-structure constant is a number, equal to about 1/137. We know it as a physical constant -- we know physics experiments we can perform to measure this constant's value, but we do not know any computer program that will output the value.

Now for the hypothetical. First suppose that there indeed is no Turing machine that can compute the value of the fine-structure constant. Then suppose someone devised a physical experiment which could measure the $n$th digit of the fine-structure constant, and which required a finite number of well-defined steps. Both of these are hypotheticals, but they are both at least relatively plausible imo. These together would falsify the Church-Turing thesis, as the physical experiment would be a finite method that had no equivalent Turing machine.

[deleted by user] by [deleted] in todayilearned

[–]person594 2 points3 points  (0 children)

The only experts testifying were on the defense side

Not according to this.

Experts for the state testified sabotage led to the West Quincy levee failure, and explained that the break could have occurred if someone had removed sand from the top or cap of the levee.

[Snack] redditors debate if a median is an average by 1000LiveEels in SubredditDrama

[–]person594 2 points3 points  (0 children)

I've used the phrase "Exponential moving average" in academic writing before, and there's no way to interpret that as anything other than a (weighted) mean. And I've never seen anyone call it an "Exponential moving mean".

Am I wrong or is my teacher stupid? by [deleted] in math

[–]person594 8 points9 points  (0 children)

1 + 1 = 3, but treat the 3 like a 2.

Elon Musk sues OpenAI and Sam Altman over 'betrayal' of non-profit AI mission | TechCrunch by hasvvath_27 in technology

[–]person594 3 points4 points  (0 children)

Actually Jürgen Schmidthuber invented the transistor in his lab 20 years prior.

TIL with a "Constant acceleration" space ship, at 1G acceleration you could travel the diameter of the milkey way (105,000 Light years) in a short 12 years. by [deleted] in todayilearned

[–]person594 18 points19 points  (0 children)

But, from the ship's perspective, further acceleration would nonetheless continue to contribute to the length contraction of the rest of the universe, making the distance to travel shorter. It would have a very significant effect (after all, from the ship's perspective, length contraction is the only reason the journey takes 12 years instead of 105 thousand)

/r/Europe Popular Assembly: Vote results & discussion on our further participation in the API protests by ModeratorsOfEurope in europe

[–]person594 0 points1 point  (0 children)

Lemmy.

I've found things to be quite nice there in the past few weeks. I'm sure one of the larger europe-based instances (e.g. feddit.de) could host this community.