Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnburrows committed Mar 3, 2022
1 parent 794db14 commit 12d7a94
Show file tree
Hide file tree
Showing 9 changed files with 9,841 additions and 2,072 deletions.
556 changes: 476 additions & 80 deletions .ipynb_checkpoints/CCM_eval-checkpoint.ipynb

Large diffs are not rendered by default.

5,010 changes: 4,071 additions & 939 deletions .ipynb_checkpoints/CCM_run-checkpoint.ipynb

Large diffs are not rendered by default.

268 changes: 266 additions & 2 deletions .ipynb_checkpoints/LCE-checkpoint.ipynb

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions .ipynb_checkpoints/kedm_script-checkpoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/bash

#Define input variables
pref="single"
data_type="trace"


#Define list
datapath="/mnlsc/data/MCBL4/dburrows/${pref}/"
array=($(find $datapath . -maxdepth 1 -name "*kmeans*$data_type*CCM*.h5*" ))

#Loop through and run kEDM


for i in "${array[@]}"
do
echo "Running $i"
filename=$i
searchstring="run"
rest=${filename#*$searchstring}
savename="${filename:0:$(( ${#filename} - ${#rest} - ${#searchstring} + 6 ))}_${data_type}_CCMxmap.h5"

edm-xmap -d, --dataset "data" --rho --rho-diff $filename $savename


done

echo "Finished!"

556 changes: 476 additions & 80 deletions CCM_eval.ipynb

Large diffs are not rendered by default.

5,140 changes: 4,171 additions & 969 deletions CCM_run.ipynb

Large diffs are not rendered by default.

354 changes: 352 additions & 2 deletions LCE.ipynb

Large diffs are not rendered by default.

Loading

0 comments on commit 12d7a94

Please sign in to comment.