Avatar

0ops

0ops@lemm.ee
Joined
0 posts • 43 comments
Direct message

Straight badass

permalink
report
reply

This is it. Trying multiple browsers in parallel isn’t nearly the pita that trying multiple operating systems is. Just install a few browsers and try them out

permalink
report
parent
reply
2 points

But it equals 3.14159265359

permalink
report
parent
reply

New Dead Kennedies when?

permalink
report
reply

For me when I’m daydreaming it’s like watching a movie, my eyes might be open but I don’t see shit, my brain’s doing other things. Or when I’m visualizing something it’s like free and organic AR. But yeah, no dialogue necessary, it’s like a hallucination that I control.

permalink
report
parent
reply

But the actions taken by the model in the virtual environments can always be described as discrete steps.

That’s technically correct, but practically useless information. Neural networks are stochastic by design, and while Turing machines are technically deterministic, most operating systems’ random number generators will try to introduce noise from the environment (current time, input devices data, temperature readings, etc). So because of that randomness, those discrete steps you’d have to walk through would require knowing intimate details of the environment that the PC was in at precisely the time it ran, which isn’t stored. And even if it was or you used a deterministic psuedo-random number generator, you’d still essentially be stuck reverse engineering the world’s worse spaghetti code written entirely in huge matrix multiplications, code that we already know can’t possibly be optimal anyway.

If a software needs guaranteed optimality, then a neural network (or any stochastic algorithm) is simply the wrong tool for the job. No need to shove a square peg in a round hole.

Also I can’t speak for AI devs, in fact I’ve only taken an applied neural networks course myself, but I can tell you that computer architecture was like a prerequisite of a prerequisite of a prerequisite of that course.

permalink
report
parent
reply

It’s totally statistics, but that second paragraph really isn’t how it works at all. You don’t “code” neural networks the way you code up website or game. There’s no “if (userAskedForThis) {DoThis()}”. All the coding you do in neutral networks is to define a model and training process, but that’s it; Before training that behavior is completely random.

The neural network engineer isn’t directly coding up behavior. They’re architecting the model (random weights by default), setting up an environment (training and evaluation datasets, tweaking some training parameters), and letting the models weights be trained or “fit” to the data. It’s behavior isn’t designed, the virtual environment that it evolved in was. Bigger, cleaner datasets, model architectures suited for the data, and an appropriate number of training iterations (epochs) can improve results, but they’ll never be perfect, just an approximation.

permalink
report
parent
reply