• 0 Posts
  • 9 Comments
Joined 11 months ago
cake
Cake day: August 8th, 2023

help-circle





  • 31337@sh.itjust.workstoRisa@startrek.websiteBait
    link
    fedilink
    English
    arrow-up
    7
    arrow-down
    2
    ·
    edit-2
    5 months ago

    TBH, I initially had a strange reaction to Discovery. It seemed to me like it was virtue-signalling and pandering to an audience to increase viewership or profit. Similar to how you sometimes see fake stock-photos of a business where they contains exactly one person from every ethnicity. I think the word I’m thinking of is “tokenism.” I still watched it for a couple seasons, and it was decent. I didn’t really realize at the time how prevalent and dangerous bigotry still was in the U.S… Now I think it’s probably good some shows and movies over-represent minorities.



  • It’s good at refactoring smaller bits of code. The longer the input, the more likely it is to make errors (and you should prefer to start a new chat than continue a long chat for the same reason). It’s also pretty good at translating code to other languages (e.g. MySQL->PG, Python->C#), reading OpenAPI json definitions and creating model classes to match, and stuff like that.

    Basically, it’s pretty good when it doesn’t have to generate stuff that requires creating complex logic. If you ask it about tasks, languages, and libraries that it has likely trained a lot on (i.e. the most popular stuff in FOSS software and example repos), it doesn’t hallucinate libraries too much. And, GPT4 is a lot better than GPT3.5 at coding tasks. GPT3.5 is pretty bad. GPT4 is a bit better to Copilot as well.


  • I haven’t ran into a good use-case to try out server-less yet. Either cold starts would be a problem (for example, I have an endpoint that needs to load a 5GB model into RAM, and it takes about 45 seconds). Or, it’s just much more expensive than a VPS if the service is projected to constantly serve many requests all day. Containerized services on a VPS doesn’t require much server maintenance (unless you have a dozen or so micro-services, then yeah, Kubernetes maintenance adds a lot of overhead).