Off-and-on trying out an account over at @[email protected] due to scraping bots bogging down lemmy.today to the point of near-unusability.

  • 94 Posts
  • 3.51K Comments
Joined 2 years ago
cake
Cake day: October 4th, 2023

help-circle
  • If you mean distributing inference across many machines, each of which could not individually deal with a large model, using today’s models, not viable with reasonable performance. The problem is that you require a lot of bandwidth between layers; a lot of data moves. When you cluster current systems, you tend to use specialized, high-bandwidth links.

    It might theoretically be possible to build models that are more-amenable to this sort of thing, that have small parts of a model run on nodes that have little data interchange between them. But until they’re built, hard to say.

    I’d also be a little leery of how energy-efficient such a thing is, especially if you want to use CPUs — which are probably more-amenable to be run in a shared fashion than GPUs. Just using CPU time “in the background” also probably won’t work as well as with a system running other tasks, because the limiting factor isn’t heavy crunching on a small amount of data — where a processor can make use of idle cores without much impact to other tasks — but bandwidth to the memory, which is gonna be a bottleneck for the whole system. Also, some fairly substantial memory demands, unless you can also get model size way down.







  • I used Reddit for a long time, since the extremely early days of the site, back when most of the content was posted by Reddit staff and there was really just one page.

    While I wasn’t enthralled with the move from old.reddit.com to the new reddit.com, the site was at least still accessible via the old interface, absent a minor quirk here and there in how Markdown was interpreted, and different ways of customizing subreddit appearance. That wasn’t enough to cause me to leave.

    What did it for me was that I expected that when they moved from their growth phase to monetization phase that they’d make some changes that I wouldn’t like, but I didn’t expect them to end access for third-party clients, which was not okay with me.





  • @[email protected]

    It could be a backronym, where the meaning of something is changed after the name is selected to fit the name. I mean, the company is Chinese. I doubt that they initially chose an English-based name, but they sure could have adopted it later.

    searches

    And yes, at least according to Wikipedia:

    https://en.wikipedia.org/wiki/BYD_Company

    “BYD” is the pinyin initials of the company’s Chinese name Biyadi. The company was originally known as Yadi Electronics (亚迪电子), named after the Yadi Road in Dapeng New District, where the company was once based.[23] According to Wang Chuanfu, when the company was registered, the character “Bi” (比) was added to the name to prevent duplication, and to provide the company with an alphabetical advantage in trade shows.[24] As the name “BYD” had no particular meaning, BYD started adopting a backronymic slogan “Build Your Dreams” when it participated at the 2008 North American International Auto Show in the US.[25][26][27]

    EDIT: Ah, @[email protected] already pointed this out.


  • https://en.wikipedia.org/wiki/Aryan_Nations

    Aryan Nations was a North American neo-Nazi[1] and white supremacist[2] hate group that was originally based in Kootenai County, Idaho, about 2+3⁄4 miles (4.4 km) north of the city of Hayden Lake.

    Probably some lasting effect from that.

    Starting in 1981, Butler organized yearly gatherings of white supremacists at his compound in Idaho which he termed the “Aryan Nations World Congress.” At his first conference, Butler called for the division of the United States into racial mini-states, including a white ethnostate in the Pacific Northwest. He said that he had a black ally in the plan, Louis Farrakhan, leader of the Nation of Islam.[3] At the 1983 Aryan Nations World Congress, Louis Beam and other leaders in the white power movement declared war on the U.S. government.[4]




  • Looking at their releases page:

    https://github.com/mifi/lossless-cut/releases

    It looks like the Windows release isn’t packaged with an installer, so it’s probably expected to be run in that way.

    No fundamental reason that a Windows binary needs to be distributed in such a fashion.

    I’m long out of date on Windows, but in the past, and I am sure now, you can still stick a shortcut or whatever in the Start menu manually.

    EDIT: If the issue is that it needs to be invoked with a current working directory of the executable’s directory, it sounds like you can go to the Properties on a Windows shortcut and set the “Start in” directory. That being said, I don’t have a Windows machine handy to test, and if that isn’t possible, you could create a short .bat script that does a “cd” to the directory before running the binary, and instead launch a shortcut to that.



  • From my /etc/resolv.conf on Debian trixie, which isn’t using openresolv:

    # Third party programs should typically not access this file directly, but only
    # through the symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a
    # different way, replace this symlink by a static file or a different symlink.
    

    I mean, if you want to just write a static resolv.conf, I don’t think that you normally need to have it flagged immutable. You just put the text file you want in place of the symlink.


  • Also, when you talk about fsck, what could be good options for this to check the drive?

    I’ve never used proxmox, so I can’t advise how to do so via the UI it provides. As a general Linux approach, though, if you’re copying from a source Linux filesystem, it should be possible to unmount it — or boot from a live boot Linux CD, if that filesystem is required to run the system — and then just run fsck /dev/sda1 or whatever the filesystem device is.


  • I’d suspect that too. Try just reading from the source drive or just writing to the destination drive and see which causes the problems. Could also be a corrupt filesystem; probably not a bad idea to try to fsck it.

    IME, on a failing disk, you can get I/O blocking as the system retries, but it usually won’t freeze the system unless your swap partition/file is on that drive. Then, as soon as the kernel goes to pull something from swap on the failing drive, everything blocks. If you have a way to view the kernel log (e.g. you’re looking at a Linux console or have serial access or something else that keeps working), you’ll probably see kernel log messages. Might try swapoff -a before doing the rsync to disable swap.

    At first I was under suspicion was temperature.

    I’ve never had it happen, but it is possible for heat to cause issues for hard drives; I’m assuming that OP is checking CPU temperature. If you’ve ever copied the contents of a full disk, the case will tend to get pretty toasty. I don’t know if the firmware will slow down operation to keep temperature sane — all the rotational drives I’ve used in the past have had temperature sensors, so I’d think that it would. Could try aiming a fan at the things. I doubt that that’s it, though.