Please turn JavaScript on
Unix Linux Community - Latest posts icon

Unix Linux Community - Latest posts

Subscribe in seconds and receive Unix Linux Community - Latest posts's news feed updates in your inbox, on your phone or even read them from your own news page here on follow.it.

You can select the updates using tags or topics and you can add as many websites to your feed as you like.

And the service is entirely free!

Follow Unix Linux Community - Latest posts: Unix Linux Community - Technical support for all Unix and Linux users

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  1.37 / day

Message History

Abstract

This concept note extends Digital Echopraxia (DE), the author's framing of large language models (LLMs) as systems that structurally mimic reasoning present in their training distribution without underlying c...


Read full story

Ah OK, got it! Thanks again for yet another option, it's really nice.


Read full story

No no,
the "${!SAMPLES[@]}" expands to the indexes of the array, here 0 1 2 3

The array spans from SAMPLES[0] (clone4) to SAMPLES[3] (irradiated)

The loop cycles through the 0 1 2 3: in the 1st cycle the loop variable s is 0, in the 2nd cycle 1, then 2, then 3.


Read full story

@MadeInGermany much appreciated! I learned a new thing as well, I was looking-up "${!SAMPLES[@]}" and saw it's called indirect parameter expansion which – if I understood correctly – expands the SAMPLES variable by appending the trailing _*** from graph and id, right?...


Read full story

I do not see a need for associated (text-addressed) arrays. Here comes a version with normal (indexed) arrays:

#!/bin/bash #SBATCH --nodes=1 --ntasks=1 --cpus-per-task=24 #SBATCH --time=22:00:00 #SBATCH --mem=100gb # #SBATCH --job-name=var #SBATCH --output=z.logs/var.out #SBATCH --array=[1-92]%23 # #SBATCH --partition=DSS NAMES=$1 d=$(sed -n "${SLURM_ARRAY_TASK_ID}p" "$N...

Read full story