Architeuthis

joined 2 years ago
[–] Architeuthis@awful.systems 10 points 2 years ago* (last edited 2 years ago)

Siskind's always been pretty explicit about it, you get banned if you broach so-called culture war topics in the open threads. They ended up with two subreddits for similar reasons.

Between this and EY seemingly being a huge fan of employing gullibility filters, one might argue that many of the most prominent rationalists aren't necessarily the most candid of characters.

[–] Architeuthis@awful.systems 4 points 2 years ago

Day 4: Scratchcards

Late to the party and never done advents before, I liked how this problem reminded me that tree traversal is thing, almost as much as I don't that so much of my career involves powershell now.

I'm putting everything up at https://github.com/SpaceAntelope/advent-of-code-2023 except the input files.

Using command abbreviations like % and ? to keep the horizontal length friendly to lemmy post areas, they are expanded in git.

Part 2 in Powershell

function calculate([string]$data) {
  # code for parsing data and calculating matches from pt1 here, check the github link if you like banal regexps
  # returns objects with the relevant fields being the card index and the match count
}

function calculateAccumulatedCards($data) {
    $cards = calculate $data # do pt1 calculations

    $cards 
    | ? MatchCount -gt 0 # otherwise the losing card becomes its own child and the search cycles to overflow
    | % { 
        $children = ($_.Index + 1) .. ($_.Index + $_.MatchCount)  # range of numbers corresponding to indices of cards won
        | % { $cards[$_ - 1] } # map to the actual cards
        | ? { $null -ne $_ }  # filter out overflow when index exceeds input length

        $_ | Add-Member -NotePropertyName Children -NotePropertyValue $children # add cards gained as children property
    }

    # do depth first search on every card and its branching children while counting every node
    # the recursive function is inlined in the foreach block because it's simpler than referencing it 
    # from outside the parallel scope
    $cards | % -Parallel {
        function traverse($card) {
            $script:count++        
            foreach ($c in $card.Children) { traverse($c) }
        }
        
        $script:count = 0 # script: means it's basically globally scoped
        traverse $_ 
        $script:count # pass node count to pipeline     
    } 
    | measure -sum    
    | % sum
}

[–] Architeuthis@awful.systems 5 points 2 years ago* (last edited 2 years ago) (1 children)

Must be another one of those hundred hostile bloggers who inexplicably have it in for EA, according to siskind.

[–] Architeuthis@awful.systems 20 points 2 years ago (2 children)

To be clear, it's because he played Edward Snowden in a movie. That's the conspiracy.

[–] Architeuthis@awful.systems 17 points 2 years ago* (last edited 2 years ago)

'We are the sole custodians of this godlike technology that we can barely control but that we will let you access for a fee' has been a mainstay of OpenAI marketing as long as Altman has been CEO, it's really no surprise this was 'leaked' as soon as he was back in charge.

It works, too! Anthropic just announced they are giving chat access to a 200k token context model (chatgtp4 is <10k I think) where they supposedly cut the rate of hallucinations in half and it barely made headlines.

[–] Architeuthis@awful.systems 12 points 2 years ago

So far I like best that he was probably fired for not being enough of an AI doomer, i.e. deprioritizing AI safety and diverting too many resources from research to product service, all the while only paying lip service to the ea/rationalist orthodoxy about heading off the impending birth of AI Cthulhu.

Any remaining weirdness can be explained away by the OpenAI board being sheltered oddballs who honestly though they could boot the CEO and face of the company on a dime and without repercussions, in order to bring in an ideologically purer replacement.

[–] Architeuthis@awful.systems 11 points 2 years ago (1 children)

It certainly looks like more of the same. Maybe the negative publicity on EA is a silver lining.

[–] Architeuthis@awful.systems 17 points 2 years ago* (last edited 2 years ago)

This certainly looks like both venture and established capital saying that while it was fun pretending to take EA concerns about AI seriously, it's time to move on.

Also the increasing number of anti-EA effortposts that started cropping up in the OpenAI subreddit over the last few days is deilghtful.

[–] Architeuthis@awful.systems 16 points 2 years ago

Every ends-justify-the-means worldview has a defense for terrorism readily baked in.

[–] Architeuthis@awful.systems 21 points 2 years ago* (last edited 2 years ago) (1 children)

On one hand it's encouraging that the comments are mostly pushing back.

On the other hand a lot of them do so on the basis of a disagreement over the moral calculus of how many chickens a first trimester fetus should be worth, and whether that makes pushing for abortion bans inefficient compared to efforts to reduce the killing of farm animals for food.

Which, while pants-on-head bizarre in any other context, seems fairly normal by EA standards.

[–] Architeuthis@awful.systems 2 points 2 years ago* (last edited 2 years ago) (4 children)

edit: accidentally removed the quote i was commenting on when editing in Stross' comment, here it is again:

a belief in psi powers implicitly supports an ideology of racial supremacy, and indeed, that's about the only explanation I can see for Campbell's publication of the weirder stories of A. E. Van Vogt.

Maybe it's me but I don't think that is so self evident a claim to be posited without further explanation.

Best I can come up is he means the necessary implication of having superabled people in a fictional setting is that you have a de facto racial elite, even if the concept rarely breaches the surface of the text, like in the unfortunate sequel to the Dark Knight Returns by Frank Miller.

Edit: he addresses it in the comments (can't find a way to direct link from phone, its comment #14) I wasn't far off:

If you're a glutton for punishment, (re-)read Slan by A. E. Van Vogt.

Secret superrace with super-mind powers! It's totally a meme in vintage SF (goes back at least as far as Bulwer-Lytton's The Coming Race in the 19th century) and you rapidly end up with eugenics and breeding for desired traits (eg. psi powers).

[–] Architeuthis@awful.systems 1 points 2 years ago

Maybe he hopes that if he mentions shady crypto shenanigans often enough twitter's algorithm will take the hint and start pushing his stuff on a fresh batch of suckers who already self-select for gullibility.

view more: ‹ prev next ›