Earlier quoted context omitted.
yes, specially that you don't have to deal with buying it, maintaining it, etc...
Not sure why people are so scared of this (in general). Yes, it’s a pain, but only an occasional pain. I’ve had servers locked up in a cage for years without seeing them. And the cost for bandwidth has plummeted over the last two decades. (Not at AWS, lol)
Introducing ChatGPT and Whisper APIs
541–550 of 696 posts
Re: Introducing ChatGPT and Whisper APIs
#542Earlier quoted context omitted.
Politeness, lack of hate, etc. generally increase trust; that's much of their purpose. How do racial slurs increase trust? How do you define "pc culture", and what specifically causes problems and how? Attacking other people's beliefs as "insufferable", and aggressively demonstrating close-mindedness to them, tends to reduce trust.
In general trust is increased when all parties are speaking openly about whatever they are thinking.
Re: Introducing ChatGPT and Whisper APIs
#543Earlier quoted context omitted.
I've never experienced that in any setting in my life. People will say yes to advocate a political point, but that's not how humans socialize anywhere, anytime in history afaik.
I agree with you for IRL interactions, but we need to accept that we now operate in two planes of (para-)socialization: IRL and online. There are plenty of humans who enjoy vulgar online socialization, and for many of them, online (para-)socializing is the increasingly dominant form of socialization. The mere fact that it's easier to socialize over the internet means it will always be the plane of least resistance. I…
There is a lot of evidence that says online experiences influence offline behavior (both are "real life"). Look at the very many, online-inspired, extremist attacks. Look at the impact of misinformation and disinformation - as a simple example, it killed possibly hundreds of thousands of Americans do to poor vaccination rates.
Re: Introducing ChatGPT and Whisper APIs
#544Feels like people running small websites monetised with ads will get killed. Why go to a recipe website to search for healthy meals for your kids if you can ask chat gpt in Instacart? :(
These small websites have been dead for years and replaced with SEO spam.
Re: Introducing ChatGPT and Whisper APIs
#545Whisper as an API is great, but having to send the whole payload upfront is a bummer. Most use cases I can build for would want streaming support. Like establish a WebRTC connection and stream audio to OpenAI and get back a live transcription until the audio channel closes.
I've ran Whisper locally via [1] with one of the medium sized models and it was damn good at transcribing audio from a video of two people having a conversation. I don't know exactly what the use case is where people would need to run this via API; the compute isn't huge, I used CPU only (an M1) and the memory requirements aren't much. [1] https://github.com/ggerganov/whisper.cpp
I'm using also whisper myself locally to transcribe my voice notes though.
Re: Introducing ChatGPT and Whisper APIs
#546Re: Introducing ChatGPT and Whisper APIs
#547Earlier quoted context omitted.
I think you mean GPT-4 since Chinchilla is a Deepmind project. But yes, I was also suspecting that also as it seems unlikely this was the full 175b parameter model with such big improvements in speed and price. In fact, given the pricing for OpenAI Foundry, that seems even more likely as this GPTTurbo model was listed along with two other models with much larger context windows of 8k and 32k tokens.
I just meant chinchilla optimal in terms of the corrected scaling curves from the chinchilla paper. The original GPT-3 was way larger than it needed to be for the amount of data they put into it based on the curves from the chinchilla paper.
Re: Introducing ChatGPT and Whisper APIs
#548> It is priced at $0.002 per 1k tokens, which is 10x cheaper than our existing GPT-3.5 models. This is a massive, massive deal. For context, the reason GPT-3 apps took off over the past few months before ChatGPT went viral is because a) text-davinci-003 was released and was a significant performance increase and b) the cost was cut from $0.06/1k tokens to $0.02/1k tokens, which made consumer applications feasible wit…
Re: Introducing ChatGPT and Whisper APIs
#549I always wondered if ChatGPT was somehow stateful. I assumed that it was not and the statefulness was simulated. Assumption validated.
It’s stateful in the web demo. But they do so by prepending chat history to new requests and automatically summarizing history once the model’s context window is exceeded.