Comment Re:If you're educating students for an "AI Era" (Score 1) 113
At present, no. I've done a number of experiments with LLMs' capabilities with generating fiction, and while they are impressive for a beginner writer -- because fo the lack of spelling and grammar mistakes, they are nowhere near being able to write competent fiction.
This is because they don't model reader or character minds, they're based on word probabilities, like a predictive text keyboard. The engineers can compensate for for this to a surprising degree by feeding it data to recognize specific situations (e.g. the car wash is 100 feet from my driveway; should I drive or walk?). But this is turd-polishing.
Comment If you're educating students for an "AI Era" (Score 4, Insightful) 113
AI technology practice isn't foundational. Critical thinking is. The closer AIs come to being able to do something that looks like them doing our thinking for us, the more capable we have to be at thinking without them. A human who can't outthink an AI adds nothing to an AI-human partnership.
This proposed school is a typical scheme by people who think because they have been educated, they understand how the education works. This is like thinking because you eat, you know how to cook. Project work in education is nothing new; it goes back well over a century. And in real life, you may get a STEM degree, but your real education in engineering comes from real life work. But that doesn't mean classes in calculus and physics don't do anything for you.
Or English classes, for that matter. Nobody doubts the value of project work in education, particularly *androgogy* -- the education of adults. But for *pedagogy* you have to establish foundational skills as the student matures intellectually and socially. Entering the high school years, a typical student has had *no* training in critical thinking skills. To develop critical thinking skills in an area, you need both general skills (epistemologicla literacy: research, location of orignial sources, dealing with conflicting evidence) and domain specific training in that area. In other words, *liberal arts* training is foundational in an AI-saturated world. "Liberal Arts" -- from *artes liberales*: literally the skills necessary to be a free person.
But I think these people have at least got the problem right: as AI drives the cost of elaborate projects down, we all have more projects in our future. Big, elaborate, faultlessly plausible-looking projects which may or may not have actual value.
Where they are completely wrong is the solution, which is to organize education around practicing using AI to make impressive projects. In a word of AI-enamored dunces this will put you at the head of a very sorry class of ignoramuses. The answer is to build fundamental cognitive and intellectual skils at every stage of a student's development. Project work is surely part of that, but it's just a technique, not a solution.
In a nutshell, the academy is training students to be the next step down the evolutionary scale from code monkeys. More like the pigeons B.F. Skinner trained in WW2 to peck at a screen, in an attempt to create a primitive guided missile without computers. They want to create "main characters"; and they'll probably create a few. There are always a few natural autodidacts in any moderately large group. But what they are set up is to produce a bunch of fragile, economically privileged narcissists trained to cover their lack of education with impressive-looking AI slop.
Comment Re: Freedom to screw weaklings (Score 1) 113
Sure, seems like with the blessedly secular higher education driving themselves crazy we will have all these different schools of thought dedicated to their own peculiar name for and interpretation of the nameless one popping up all over. Conservatives have been coming up with their own private education institutions for a while.
Comment Re:I watched multiple journalists dog walked (Score 1) 86
The government told social media companies to silence people who were critical of Biden.
When did this happen? Citation, please.
You are aware that Joe Biden, while seemingly a nice enough guy, was wildly unpopular as a leader, including among the left? It was the Democrats, after all, who convinced him not to run for a second term.
Comment Re:Standing? (Score 1) 112
Nothing what is being accused of here covers the act of monopolising. Following a common standard approach is not anti-trust, in fact whole bodies exist to standardise how things are done, and whole industry bodies self regulate the way industries operate.
What's being alleged here is closer to price fixing, which is also an antitrust violation. Hypothetically, let's say four major automakers got together and said, "We all know we have access to the latest in brake technology, but we collectively agree not to deploy it until two years from now," presumably for business reasons. That kind of collusion is illegal.
Comment So is anything good? (Score 4, Funny) 82
Everybody seems to be complaining
So I ask you (everybody): Is anything good? Cuz we ain't gonna have the Year of the Linux Desktop without a UI. Do we all switch to Enlightenment?
Comment Just a thought... (Score 1) 209
...Modern ejector seats cause spinal injuries from which full recovery is "unusual". Smashing the spines of pilots might not be the most effective way to boost morale.
Comment Re:Ah yes (Score 5, Informative) 209
$22,000 per hour. The F35 will be nearer $42,000 per hour. These are under-estimates, as they do not include price hikes, crashes that close businesses, crashing into businesses, crashing into heavily-populated sports centres, etc.
Comment Re: Obvious course of action - watching the watche (Score 4, Funny) 100
A three camera cluster should do - any one goes off line the other two can still coordinate laser fire.
Comment Re:trousers (Score 1) 128
Your comment is pants.
Comment Re: They told it to do it (Score 1) 128
North Korea is using a TRS-80 running Eliza
Surely you know that's an absurdly dismissive opinion? North Korea has the capacity to gain access to anything anyone else does, especially if it comes from China.
Comment Re:What? (Score 5, Funny) 111
itâ(TM)s literally the only site I can think of that canâ(TM)t properly display text.
There, fixed it for you.
Comment Re: Bullshit. (Score 1) 118
Can't do it. I'm refactoring on a large code base. I eventually had to tell it to work on just one task and ignore other concerns it had to prevent it from investigating until it got stuck in a cycle of investigation.
Understood, and yeah single tasking seems like a good workaround given the situation. Or switching to an LLM with a larger context window, if possible/practical. I was able to get about 7X more context window "runway" using the AST approach, but it's a relatively small code base to begin with.
Comment Re: Bullshit. (Score 1) 118
Sounds like you're running up against the context window of whatever LLM you're using. Try converting your code to a minified abstract syntax tree first and pass that to your LLM, and ask it what full text it needs in addition to that. It should stay within the context window much better that way.