Spyke

Replies

science

Comment on

LLMs and Humans are Cognitive Cousins – Sean Carroll podcast w/Dr. Chandra Sripada

Reply in thread

Their areas of expertise and research are not areas that offer insight into mechanisms of cognition, they are not a neurobiologist or a computer scientist involved in machine learning. Their high standing in related areas is being used to give credence to an argument that is no better than a gut feeling.

You also have no ideas what conflicts of interest exist here, there may be none or the professor could be heavily invested in LLM companies.

LLMs dont think and the "trains of thought" is just strapping a bunch of LLMs together to try and tidy up and correct if one of the models in the chain outputs nonsense which they are wont to do. They are useful tools, they don't spontaneously generate output or request input. It's a very complicated auto complete that is capable of generating plausible valid output (when considered by humans) to a given natural language input.

Comment on

MPV: The Ultimate Self-Hosted Media Solution You're Probably Sleeping On

That was a long winded way of saying you don't know what Jellyfin actually is or does. Mpv is a client, it only fills the role that the various Jellyfin clients perform and a better comparison would be against a heavier weight media player such as Kodi.

What you suggest works well enough if you have a reliable network link to share CIFS or NFS over, but what do you do when away from home on a rubbish link that doesn't have bandwidth to stream all your high quality bluray rips? You want transcoding in that situation.

Also, I'm a seasoned Unix sysadmin who knows his way around the cli and I can say with certainty this isn't for people who know the cli, it's for people who just want to prove you can do anything from the cli even if suboptimal.

Comment on

How many projects involve LLM-written code now?

There is a significant difference between AI assisted and AI produced from what I've seen and experienced so far.

Assisted takes generated code and uses it to inform the code actually written, letting it fulfill a boiler plate function or the place of a junior coder at worst.

Then there are those project committing the AI produced code largely unreviewed and unchanged.

Former is mostly fine but needs an experienced coder who trained writing code unassisted (where are new coders of that caliber going to come from now?), the latter is a morasse of slop.

science

Comment on

Literally

Reply in thread

We've got years of data showing they are safe at this point and given the massive deployment, serious issues would have become apparent by now.

linux

Comment on

mac or linux

What advice do you expect from a Linux discussion group? I suggest you do what you feel is right for a subjective decision like this, all hearing other people's opinions will do is confirm your feelings.

science

Comment on

Literally

Reply in thread

Most people who have died or have been incapacitated since covid had it happen after they were vaccinated since most people got vaccinated. Most people also die or get incapacitated after drinking some water, maybe you should also become a water skeptic?

Comment on

Migrated my Docker Compose homelab to OpenTofu

I personally manage my services using ansible, I only set up the actual infrastructure, the virtual machines that run the services, with terraform/opentofu. Docker is one of those in the middle tech between infrastructure and software distribution and it makes more sense to me to treat a service as a role in ansible do I can deploy it (docker, podman package install or whatever), sort it's networking and handle it's configuration all in one place. I'm not saying the way you do it is wrong, but this is just a step down the automation rabbit hole.

It doesn't appear your setup provisions the actual hosts for docker so I guess you are provisioning manually for that layer? That is another area you might want to leverage opentofu for?

Also congrats on actually documenting it in a consumable way for others to learn from.