Trotskyist
Trotskyist t1_jaxyg2b wrote
Reply to comment by DAlmighty in [P] LazyShell - GPT based autocomplete for zsh by rumovoice
Been using regex's regularly for like 10 years now...still don't know how the hell to write them. Shameful, I know.
Shout out to some random guy named Olaf Neumann, without whom I'd be screwed: https://regex-generator.olafneumann.org/
Trotskyist t1_jalk4j5 wrote
Reply to comment by Lychee7 in [D] OpenAI introduces ChatGPT and Whisper APIs (ChatGPT API is 1/10th the cost of GPT-3 API) by minimaxir
A token is (roughly) 4 characters. Both prompt and result are counted.
Trotskyist t1_j74x4um wrote
Reply to comment by ex_sanguination in ChatGPT: Use of AI chatbot in Congress and court rooms raises ethical questions by mossadnik
>Also, software to recognize AI generated content is already being made and I'm sure schools will implement a submit system that verifies their students work.
I wouldn't be so sure. As soon as an algorithm is created to detect AI content that exact same model can and will be used to further train the neural network to avoid detection. This is the basic premise behind generative adversarial networks (or GANs,) one of the bigger ML techniques.
Trotskyist t1_j74wmh1 wrote
Reply to comment by ex_sanguination in ChatGPT: Use of AI chatbot in Congress and court rooms raises ethical questions by mossadnik
I mean, self-driving taxis are a thing now in several cities/states and are actively expanding into new markets. Obviously, it hasn't taken over yet and become the norm (if it does at all) but it's absolutely a growing industry.
Trotskyist t1_j4slknp wrote
Reply to comment by 2017hayden in New study shows: Black Adults Experienced Early Signs of Brain Aging Faster Than Other Ethnic Minority Groups by PaulHasselbaink
This seems like it’d be relatively easy to control for.
Trotskyist t1_jdt8tx6 wrote
Reply to comment by enryu42 in [D] GPT4 and coding problems by enryu42
It's still an extremely useful tool if you accept its limitations, and I think it's being reductive to say it can only solve "dumb" problems or suggest boilerplate code.
I used GPT-4 the other day to refactor/optimize an extremely bespoke and fairly complicated geoprocessing script that we use at work that was written by a former employee who's no longer with the organization. Yes, it got some things wrong that had to be corrected (sometimes all it took was feeding it a stacktrace, other times this wasn't enough and I'd have to figure out the issue myself)
But at the end of the day (literally, this was over the course of an afternoon,) I'd managed to cut the runtime by more than half, using libraries I'd never before touched and wasn't previously familiar with. It probably would have taken a week to implement otherwise.