Ask HN: How much longer will we have free access to ChatGPT?
Someone on here stated that this release feels different from previous cutting-edge AI launches because we're personally participating in the revolution, not just watching well-connected people having fun on Twitter.
This situation feels too good to last. I fear that any day now OpenAI is simply going to declare the model too dangerous for public use and take this away from us. We're one major news story away from blocked API access.
It must also be costing them a fortune to host, especially as it grows more popular. I'm guessing it's going to disappear behind a paywall soon. But even that is far better than losing it entirely. I would never have paid for GPT-3 access based on it's capabilities, but I'm pretty sure, I'd pay for ChatGPT. OpenAI, the dealer, gave me the first hit for free, and now I'm completely hooked.
42 comments
[ 15.9 ms ] story [ 238 ms ] threadmost of the cost is probably training the model, right?
so just throw ads in the sidebar and see how much search traffic you can hijack.
"How do I make X?"
"You make X by ....
By the way, have you tried <promoted product>? People making X love it!"
When this thing gets 10x better, which it will, it will be capable of passing a Turing test against any human interlocutor. It will also pwn the field at any programming competition at that point, given further progress in areas described in the link at https://news.ycombinator.com/item?id=33914122 .
Massive economic advantages will accrue to the company or companies who control these models -- as in "Awesome, now we can fire a bunch of expensive programmers and engineers." A few weeks ago I'd have said that was the dumbest idea ever. Now it's obviously inevitable.
The C-suite shouldn't get too cocky, though, because it's possible that the lowly "language model" will be better at running the company than they are. New funding and business models can be expected to emerge on this basis.
Things are about to change in ways that seemed absurd to expect just a few years ago, and in areas where even the most well-informed people weren't expecting it. Full access to these models will be a very big deal, almost as big a deal as ownership of money and property is now. It will be very hard to compete with entities who have that access.
Individual human knowledge workers aren't limited by the breadth and depth of available knowledge, the way they were up to about 100 years ago, but by their ability to assimilate and leverage it. That's also what limits the machine models. But the models will keep getting better, while we won't.
But my thinking is that 30-50 years isn't that long, compared to the magnitude of the changes in the nature of knowledge work that may become possible.
I would verify how similar the outputs are, but my trial credits have expired and I'd rather just use the free ChatGPT instead, hah.
I've found the davinci outputs to vary significantly compared to the web interface.
We urgently need to fund efforts to create the technology to train and publish open models in a distributed way.
It's time for the next Stallman to emerge.
I hope these modes are prohibitively expensive to train so we can figure out a way to release them responsibly when they can be open.
(Hence the term "Open" in OpenAI)
That analysis paralysis you get sometimes before going on a long code run? Gone when the initial idea burst chatgpt gave me. It's a wonderful wonderful product. I'm floored at how good it is, and how useful it has become so quickly to my workflow.
I'd pay for it _today_.
Please write a javascript for testing pronunciation. The app should have the following features: 1. Store a static list of Chinese characters. 2. When the user clicks start, show the user a single character from the list, and wait for them to pronounce it out loud. Use the web speech API to recognize the character, and compare it with the character displayed. 3. If the characters match, repeat step 2. If not, give the user one more chance, before continuing. 4. Keep an internal record of which characters the user got right and wrong, and how many times.
var characterList = ["汉", "字", "编", "程", "语", "言"]; var correctCharacters = []; var incorrectCharacters = []; var numAttempts = 0; function startTest() { var character = characterList[Math.floor(Math.random() * characterList.length)]; document.getElementById("displayCharacter").innerHTML = character; var recognition = new webkitSpeechRecognition(); recognition.onresult = function(event) { var pronunciation = event.results[0][0].transcript; if (pronunciation === character) { correctCharacters.push(character); startTest(); } else { numAttempts++; if (numAttempts < 2) { document.getElementById("prompt").innerHTML = "Incorrect. Please try again."; } else { incorrectCharacters.push(character); numAttempts = 0; startTest(); } } } recognition.start(); } document.getElementById("startButton").addEventListener("click", startTest);
Give me the corresponding HTML
<div id="displayCharacter"></div> <div id="prompt"></div> <button id="startButton">Start Test</button>
Its hugely impressive but I think it still has a way to go before I would pay something meaningful for it, maybe the next release will solve a lot of things once the models are retrained now the public has had time to stress test it?
Maybe ChatGPT makes cheating easier because the entire idea of cheating was flawed to begin with. Being able to trivially transform some information and put your name on it isn’t a valuable human skill any more, just like switchboard operators or VCR Repairman. Perhaps Western culture needs to change to accommodate AI, not AI that needs to change to accommodate our obsolete measures of intelligence.