this post was submitted on 01 Jan 2025
21 points (95.7% liked)

Ask Lemmy

27340 readers
3896 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either [email protected] or [email protected]. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email [email protected]. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try [email protected] or [email protected]


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
all 15 comments
sorted by: hot top controversial new old
[–] [email protected] 3 points 2 days ago

Three concurrent processes.

Process 1 is running mission-critical maintenance tasks -- Making backups, defragmenting memory, checking hardware, updating software (...)

Process 2 is just in real time taking whatever Process 1 reads or writes and dumping it raw into a file without any interpretation.

Process 3 then takes whatever Process 2 has spat out, and attempts to interpret it through various AI models, generating images, sounds, text, whatever, based on the input from Process 2.

[–] nycki 8 points 4 days ago (2 children)

step one, defragment ram to free up space

step two, read the now-unallocated ram directly to the screen

[–] steeznson 2 points 1 day ago

This is exactly what happens. Sometimes I think of comparisons between humans and machines as being too reductivist but sometimes there are cases like dreaming where it is uncanny.

[–] CheeseNoodle 2 points 4 days ago

step three, ask an llm what the image is and feed the result into an image generator.

[–] [email protected] 9 points 4 days ago

Probably what an AI picture generator looks like procedurally

[–] [email protected] 4 points 3 days ago

it would probably be some markov chain generator or something.

Also known as an llm

[–] [email protected] 7 points 4 days ago
while(true) {
    scenario = Scenarios.rand()
    time = DateTime.now()
    while DateTime.now() - time < DateTime.minutes(5) {
        scenario.continue()
    }
}
[–] mumblerfish 5 points 4 days ago

I've been thinking of a dreaming-like algorithm for neural networks (NN) which I have wanted to try.

When training an NN, you have a large set of inputs and corresponding desired outputs. You make random subsets of this and for each subset you adjust the NN to correspond more to the outputs. You do this over and over and eventually your NN is close to the outputs (hopefully). This training takes a long time and will only be done this initial time. (This is very a simplified picture of the training)

Now for the dreaming. When the NN is "awake" it accumulates new input/output entries. We want to adjust the NN to also incorporate these entries. But if we use only these for training we will lose some of the information the NN has learned in the initial training. We might want to train on the original data + the new data, but that is a lot, so no. Lets assume we do no longer even have the original data. We want to train on what we know and what we have accumulated during the waking time. Here comes the dreaming:

  1. Get an "orthogonal" set of input/outputs of what the NN already knows (e.g. if the network outputs vectors, take some random input, save vector. Use a global optimization algorithm to find the next vector such that is orthogonal to the first. Do this until you have a spanning set).
  2. Repeat point 1 until you have maybe one set per newly accumulated input/output entry, or however much appears to not move you too far from the optimization extrema your NN is in -- this set should still be a lot smaller than the original training set.
  3. Fine-tune train your NN on the accumulated data and this data we have generated. The generated data should act as an anchor, not allowing the NN deviate too much from the optimization extrema and the new data will also be invorporated.

I see this as a form of dreaming as we have a wake and sleep portion. During waking we accumulate new experiences. During sleeping we incorporate these experiences into what we already know by "dreaming", that is make small training sessions on our NN.

[–] einlander 5 points 4 days ago

Spaghetti code, race conditions, concurrency issues and random bit flips, all running on non ecc memory.

[–] [email protected] 5 points 4 days ago
self.disconnect_motors();
self.disconnect_nonvital_senses();

let memory = self.neurons.dump();

while self.asleep {
    let scenario = load_real_scenario()
        .randomize_params();

    self.neurons.apply(scenario);
}

self.neurons.load(memory);

self.connect_senses();
self.connect_motors();
[–] over_clox 4 points 4 days ago

Fuzzed Spaghetti Code

[–] Battle_Masker 2 points 3 days ago

if my dreams are anything to go by, it be a fragmented mess

or that cannibalized AI slop where it makes weird things like Shrimp Jesus

[–] [email protected] 2 points 4 days ago

AI generated random youtube shorts that are just combined into one long video of total nonsense

[–] frankenswine 1 points 4 days ago