Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)TU
Posts
0
Comments
599
Joined
2 yr. ago

  • Really? What do you expect is the edit rate on sites like Lemmy and reddit? One in ten comments? I think more like one in 30 or something. That would increase the storage costs by 3% and a small amount of processing power.

    Hosting costs are dwarfed by media storage anyway.

  • Are updates authenticated? Or can I send an update to lemmy.world from 123.123.123.123 (which is not the IP address of feddit.de) that you have edited your comment to say "I don't like pizza"?

    If updates are not authenticated this really could be a big problem.

  • "we as people" - citation needed, lol.

    But I don't disagree with you. Of course we'd have to switch from kelvin to ... Was it Rankine? ... To keep everything consistent and some physics constants would have to change as well.

    The advantage of the metric system is the scaling. The base value does not matter. We could measure everything in feet for all I care, but no inches or miles then! Only kilofeet, centifeet, millifeet, etc! And we need a better distinction between force and weight than "pound" and "pound-force" - seriously, whoever came up with must have had negative creativity.

  • On one hand I agree with you, the way "chemicals" are used in everyday speech differs from the text book definition.

    On the other hand, if we take our heads out of our asses and stop the "well actually"s I kinda have to agree with being against "chemicals" in food. Arsenic is naturally occurring, sure, but at what concentration? Radioactive uranium is a naturally occurring element, but I would hardly call nuclear fallout something natural.

  • The placement of the x axis says nothing about the values on the y axis. By convention it's often placed at y=0, but plenty of plots make this impossible or impractical or simply not desired.

  • Run an open source one. Training requires lots of knowledge and even more hardware resources/time. Fine tuned models are available for free online, there is not much use in training it yourself.

    Options are

    https://github.com/oobabooga/text-generation-webui

    https://github.com/Mozilla-Ocho/llamafile

    https://github.com/ggerganov/llama.cpp

    I recommend llavafiles, as this is the easiest option to run. The GitHub has all the stuff you need in the "quick start" section.

    Though the default is a bit restricted on windows. Since the llavafiles are bundling the LLM weights with the executable and Windows has a 4GB limit on executables you're restricted to very small models. Workarounds are available though!

  • There are 4x the pixels so.....

    Totally agree, but then

    2k, 4k, and 8k

    Is internally inconsistent!

    If 4k is four times the pixel count of 1080, then 2k means 1440 (-ish, it should be 1530) - that's fine. But then 8k must be 3050, but it is actually 4320!!!

    So it can not refer to the number of pixels (quadratic scaling). On the other hand, if we assume linear scaling and 8k is 4320 and 4k is 2160, then 2k is 1080 - but 2k is never used in that context!

    Edit: as you can see I'm very passionate about this XD

  • but youre not recalling your remotely-transmitted posts anymore than you can recall the words you shout on a street corner.

    That is true, but the user must still have the ability to delete all their comments. The fact that someone could have scraped the data is irrelevant.

  • I have the opposite problem, llavafiles (a large language model, packages as a single files) can run on both Linux and Windows. They are written to be compatible with both.

    But when I ./file to run it, eine is started automatically!

    (The llava file GitHub has a workaround, but still by default it chooses wine for some reason)

  • File tree not a file tree like in a file explorer, more like the output of find, but with filtering. The letters you type to restrict your search only need to present in that order in the file path, not as a string.

    So "abc" would match "./assets/others/abort/cancel.png", not just "./assets/abc.png"

    Additionally, lower case letters match case insensitive, upper case letters match case sensitive. This is surprisingly helpful if you don't use exclusively lowercase file names.