Blass Rose

  • 0 Posts
  • 30 Comments
Joined 2 years ago
cake
Cake day: July 4th, 2023

help-circle
  • And as all my chemistry classes taught: if there’s a common name for something just use that. “Table salt” is completely acceptable as a term. As is “Vinegar” and “Water”. When the exact source/concentration/purity begins to matter is when you can use your fancy terms.







  • Oh I’m glad this tech went somewhere useful! I remember reading the paper and toying with the models they released as a proof of concept like… 8 years ago? It was really powerful back then. The ability to do TTS of someone’s voice given literally 3 seconds of training data?! (In fact I found that it worked best with short, nonsense audio clips than actually saying anything. Saying “test test test” worked way better than reading an actual sentence.) But now it looks like it can actually handle tone well. It’s also probably way better now, and less… Asthmatic sounding.




  • Blass Rosetomemes@lemmy.worldYour pets are pissed!
    link
    fedilink
    arrow-up
    19
    ·
    7 months ago

    I found out my automatic feeder is just ignoring daylight savings time. I’m getting the notifications “an hour early”, and the app acknowledges them as being an hour early, but it still checks off the correct feeding time in the app, so I guess it all works out?





  • Blass Rosetomemes@lemmy.worldLooking at you Verizon
    link
    fedilink
    arrow-up
    1
    ·
    11 months ago

    I found this out when an old phone stopped getting updates, so I was gonna push a third-party OS, but no, even though it was a carrier unlocked MODEL, Verizon locked it and refuses to unlock it. So the phone is just gonna be out of date forever, I guess!


  • To be fair, I caused a massive problem when I accidentally filled the drive completely, so I’ve been a little more conservative while I shop for a larger HDD. Thinking of getting a 20TB HDD so I don’t have to have 4 different drives plugged into my computer. (I remember when my 3TB drive was considered crazy big…)




  • Two-Dice Pig. So not a super complicated game, but still fun to try to leverage the… 3 point totals to calculate a risk vs desperation factor. Though looking at the code again, the hard limits feel weird. Like just straight up not allowing the risk of more than 35 points at a time (100 is a winning score, tho)? Though I do remember that I HAD to add the condition to force it to claim victory or it’d essentially get too cocky and would lose everything. I know that two-dice pig is essentially a solved game (as much as you can solve a game that relies on random chance), but I felt using a lookup table was boring, and wanted it to feel like it was actually an AI that could make mistakes, and had a semblance of a personality.


  • Honestly one of my most competent “AIs” (that wasn’t ML) just did a whole bunch of math to calculate an optimal strategy, but to make it feel more human, I added a few other things, like how desperate it was to win this round so it could have a chance of continuing, a bit of arrogance if it was winning (it was a bit heavy in the beginning. Had to add checks for “if you’ve already won, submit your victory instead of becoming so arrogant you lose everything!”), and to top it all off: a random number generator that could make it pick the opposite of what it wanted to if the confidence strength wasn’t high enough. Just made it a little less predictable.

    Honestly made every competition against it really close. And certainly way better than the people who solved it with a simple “randomly choose an action to complete”… Which was most of the class.