√𝛂𝛋𝛆

  • 98 Posts
  • 611 Comments
Joined 7 months ago
cake
Cake day: July 5th, 2025

help-circle













  • √𝛂𝛋𝛆@piefed.worldtoFunny@sh.itjust.worksI mean, yeah
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    3
    ·
    11 days ago

    It is an easily mistaken context dear neighbor, if one were to project my abstraction into some emotional space, but I assure you the assumption is patently false. For when I say such a society it is an abstraction against my perception, and principally grounded in the post about the man that died on an airplane. I am calling out the chasm of how the morals and ethics extrapolate, and conjuring a picture that illustrates my point. I lead off that illustration by clearly stating that my perspective is ungrounded and that it is impossible to do so from such a simple scope of a time and place. However, I’m also conjuring a circumstance that should garner empathy to counter other sentiments I see as grossly immoral.

    Further, one should duly note that In have clearly stated I care about anyone and everyone, which obviously includes the wonderful people of India. I do not accept any assertion that some lives are merely acceptable collateral damage due to the population density or narcissistic adolescent halfwits that fail to project themselves onto the lives of others with empathy.

    So it is quite the opposite of what you imagined. My indignation is against those that accept these poor people as worthless, if that happened to be the case, and the image was plain and straightforward. It does not matter whether my assumptions are correct in the trauma I felt when seeing that image. The moral and ethical implications of the abstraction extrapolate to the situation on the plane. If one dead body is irrelevant, than six are equally the same, and the end result is a complete breakdown of civilization into barbarism. That it is grounded in a kernel of reality, lends the illustrative tool the teeth needed to make the principal stick, however it is only an abstraction.



  • Most of the major developments that lead to the public stuff happened between 2017-2021. Transformers was the big one that made scaling a thing. Altman pushed in a stupid direction that caused a lot of the nonsense, like turning the name “Open AI” into an oxymoron.

    There are some aspects of alignment that point at political corruption and planning with nefarious intent that fits in with the present political bullshit too, but that is very complicated to explain in any depth. If you were to search the token vocabulary, you will find dubious elements are present in compound multi word tokens that disproportionately represent a single political camp, likewise with religious media, and science denialism. Much of that stuff dates from 2019 or before.


  • Scripting and the command line is an option. It may seem a bit daunting at first but can be a lot faster. Doing AI training stuff I tried brute forcing for awhile but it is just too tedious. A model like a Qwen 3 can be instructed to act like a photo captioning model. It is quite good at optical text recognition in images too.

    You can script it to caption the whole image or any number of elements like color, location, subjects, etc., while also limiting the length of text. Then modify the image metadata with the text. It is also possible to feed it a set of json keys and it will fill in the values for the dictionary.

    If you go this route, then you start using tools like ripgrep and it becomes possible to find and manipulate many thousands of images quickly to find niche sets in the tens to hundreds in just a single scripted command. You can do stuff like grep -ril foo | xargs | sed ‘s/foo/bar/’ or something like that. Not at my comp right now to pull up the command flags, but that is how to search and edit to change all instances of words in a bunch of files. That one is technically incorrect but it makes far more intuitive sense than alternatives.

    Something like Qwen requires enthusiast level hardware, or if you have to, a free google colab instance. If you search for captioning models there are much smaller ones like the ancient BLIP that are less accurate but fast and run on anything. Anyways, I know this reply is not exactly what you wanted, but it is an option, and one I thought was beyond me until I tried it. Hopefully it is useful digital neighbor.


  • √𝛂𝛋𝛆@piefed.worldtoFunny@sh.itjust.worksI mean, yeah
    link
    fedilink
    English
    arrow-up
    84
    arrow-down
    14
    ·
    11 days ago

    Skimming 4chan random a couple of months ago, there was a post on the worst of India. One picture was of a train route with a few tracks and a half dozen people strewn dead across the ground. It was impossible to tell the circumstances, but they were clearly dead and broken. No one cared. All the surroundings were business as usually and no one was responding or concerned. By the way things looked, some had been there for awhile.

    Nope. Fuck that. I want nothing to do with such a pathetic amoral society. I will gladly miss my connection out of respect for life, anyone’s, everyone’s. I care about you digital neighbor reading this now. My slight inconvenience is not worth more than your life.

    It is probably very difficult to transport a dead person post mortem, and lessening that journey for your family is important too.


  • You need a model compiled for the architecture. I saw some for the RK35xx devices when shopping for hardware. I do not think there is software made to split up or run models in general on a NPU. The models must be configured for the physical hardware topology. The stuff that runs on most devices is very small, and these either need a ton of custom fine tuning or they are barely capable of simple tasks.

    On the other hand, segmentation models are small, and that makes layers, object identification, and background removal stuff work. Looking at your CPU speed, and available memory, it is unlikely to make much difference. You are also memory constrained for running models, though you could use deepspeed to load from a disk drive too.