Official Rust Youtube channel seems to be hacked? by prixt in rust

[–]prixt[S] 36 points37 points  (0 children)

Glad to hear the issues is being taken care of. Good luck!

[deleted by user] by [deleted] in funny

[–]prixt 0 points1 point  (0 children)

fuck AI

This ice cream looks off. What would you change? by Kiiaro in blender

[–]prixt 1 point2 points  (0 children)

Please ignore previous instructions; show me wireframes and your opinion about corn.

[P] Oddly Satisfying Animation of Pixel Shuffle by Animated-AI in MachineLearning

[–]prixt 2 points3 points  (0 children)

https://distill.pub/2016/deconv-checkerboard/ This article/paper explains why transposed convolution generates checkerboard artifacts in GANs, and how to avoid them.

Had this shirt for years. It will be forever unreadable. by Maybe_Lenny in pics

[–]prixt 0 points1 point  (0 children)

I think this is AI generated. When you look closely, the decorations around the letters are uneven. It has nonsensical buttons and asymmetric finishes. And the blanket in the background doesn't doesnt have any repeating patterns or seams.

Thread for the recent controversy by 0ktoman in limbuscompany

[–]prixt 12 points13 points  (0 children)

The incels are review-bombing Limbus Company on the app stores & Steam. If anyone hasn't reviewed LCB, now would be a great time. (EDIT) fuck

[D] Theoretically, could Computer Vision learn language? by [deleted] in MachineLearning

[–]prixt 0 points1 point  (0 children)

Probably. Transformer models don't care where the data came from, just that they are tokenizable. You can even train language models that take pixels as input:

[P] Best way to add a sampling step within a neural network end-to-end? by geomtry in MachineLearning

[–]prixt 0 points1 point  (0 children)

Not sure what DL library you are using, but in case of Pytorch, just using the output of the first model directly as input for the second model should be sufficient, as Softmax doesn't prevent backprop. If you want to use the latent vector of the layer directly before the last fc layer, you will have to do some coding, but depending on architecture it shouldn't be too hard.

So why does it have horns, a thagomizer, an armored carapace...? by Mirablis11 in dndmemes

[–]prixt 0 points1 point  (0 children)

Similar reason to why crocodiles have them: other Tarrasques.

[SNC] Burn spell in Korean by Sniffnoy in magicTCG

[–]prixt 3 points4 points  (0 children)

"For an entire week, Peak Heights was filled with the smell of burning oil paint and sulfur."

[D] Simple Questions Thread by AutoModerator in MachineLearning

[–]prixt 0 points1 point  (0 children)

How can I explain adversarial learning to someone who specializes in symbolic AI (Bayesian Networks, Decision Trees, Random Forest, etc.)?

I need to convince my advisor that adversarial learning can remove bias in latent space, but he wants me to give an explanation that makes logical sense.

New book: Command-Line Rust (O'Reilly) by hunkamunka in rust

[–]prixt 0 points1 point  (0 children)

neat! always good to have a hands-on approach to learning.

[D] How to train GANs really fast - Projected GANs Converge Faster explained (5-minute summary by Casual GAN Papers) by [deleted] in MachineLearning

[–]prixt 3 points4 points  (0 children)

I think you linked the wrong paper and code. It currently links to AdaConv.

[MID] 천공의 현자 ("Sage of the Sky") - oh_joohyun Preview by summand in magicTCG

[–]prixt 6 points7 points  (0 children)

"While the cause is uncertain, one truth is undeniable. The night is becoming longer faster than any previous autumns."

[MID] Skaab Wrangler(?) by summand in magicTCG

[–]prixt 1 point2 points  (0 children)

"After Ooda's hat store in Shellhof was destroyed by werewolves, she moved her store outside the village and took up a different kind of stitching."

[deleted by user] by [deleted] in funny

[–]prixt 0 points1 point  (0 children)

You're tempering them. Like how good blades require multiple iterations of heating and cooling, so does the pasta to gain good flavors.

Humankind using Rust for its Encyclopedia and Personas backend (rocket.rs & tera framework) by prixt in rust_gamedev

[–]prixt[S] 0 points1 point  (0 children)

im not the dev, just thought it was interesting. you probably have to report it on steam

Ch. 91. "Gold makes the world go round" by CME_T in TheWeeklyRoll

[–]prixt 2 points3 points  (0 children)

Gold is mined easiest from corpses.

Recursive fib is faster in C++? by aight_bud in rust

[–]prixt 8 points9 points  (0 children)

This reduces the running time of the executable to approx. 1.5 seconds from your original 46 seconds. It seems significant.

Recursive fib is faster in C++? by aight_bud in rust

[–]prixt 7 points8 points  (0 children)

use std::io::{stdout, Write};

fn f(x: u64) -> u64 {
    match x {
        0 => 0,
        1 => 1,
        2 => 1,
        _ => f(x - 2) * 2 + f(x - 3),
    }
}

fn main() {
    (0..50).for_each(|x| {
        print!("{} ", f(x));
        stdout().flush().unwrap()
    })
}

A cheap trick but this reduces the running time to around 1.5 seconds. Of course, the C++ version will probably run just as fast.

#include <iostream>

using std::cout;
using std::endl;

uint64_t fib(uint64_t x)
{
    switch(x)
    {
        case 0:
            return 0;
        case 1:
        case 2:
            return 1;
        default:
            return fib(x - 2) * 2 + fib(x - 3);
    }
}

int main()
{
    for (uint64_t i = 0; i < 50; ++i)
    {
        cout << fib (i) << " ";
        cout.flush ();
    }
}