Skip to content

Commit

Permalink
IbPRIA23 code uploaded
Browse files Browse the repository at this point in the history
  • Loading branch information
IsabelJimenez99 authored Nov 3, 2023
1 parent 36cad97 commit 41db794
Show file tree
Hide file tree
Showing 7 changed files with 1,341 additions and 0 deletions.
35 changes: 35 additions & 0 deletions base_model_main/auto_ConvNeXt.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/bin/bash

for set in 1 2;
do
for o in SGD Adam;
do
for mo in base large;
do

echo '##############################################################################################################'
echo ' NEW TRAINING'
echo '##############################################################################################################'
echo 'set ' $set , 'Opt' $o , batch 6, modeltype $mo

rm -Rf wandb/
rm -Rf /home/isajim/.local/share/wandb/
rm -Rf /tmp/wandb/
wandb artifact cache cleanup 1GB
TF_CPP_MIN_LOG_LEVEL=2 TF_ENABLE_ONEDNN_OPTS=0 WANDB_CACHE_DIR="/tmp/" python3 base_model_main_convNext.py --datasetDIR /opt/data/isa/proxemics/dataset/ --outModelsDIR /opt/data/isa/proxemics/models/ --modeltype $mo --b 6 --o $o --set $set --lr 0.01

rm -Rf wandb/
rm -Rf /home/isajim/.local/share/wandb/
rm -Rf /tmp/wandb/
wandb artifact cache cleanup 1GB
TF_CPP_MIN_LOG_LEVEL=2 TF_ENABLE_ONEDNN_OPTS=0 WANDB_CACHE_DIR="/tmp/" python3 base_model_main_convNext.py --datasetDIR /opt/data/isa/proxemics/dataset/ --outModelsDIR /opt/data/isa/proxemics/models/ --modeltype $mo --b 6 --o $o --set $set --lr 0.01 --onlyPairRGB

rm -Rf wandb/
rm -Rf /home/isajim/.local/share/wandb/
rm -Rf /tmp/wandb/
wandb artifact cache cleanup 1GB

done
done
done

36 changes: 36 additions & 0 deletions base_model_main/auto_ViT.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/bin/bash

for set in 1 2;
do
for o in Adam SGD;
do
for b in 6 8;
do
echo '##############################################################################################################'
echo ' NEW TRAINING'
echo '##############################################################################################################'
echo 'set ' $set , 'Opt' $o , batch $b

rm -Rf wandb/
rm -Rf /home/isajim/.local/share/wandb/
rm -Rf /tmp/wandb/
wandb artifact cache cleanup 1GB
TF_CPP_MIN_LOG_LEVEL=2 python3 base_model_main_ViT.py --datasetDIR /opt/data/isa/proxemics/dataset/ --outModelsDIR /pub/experiments/isajim/proxemics/models/ --b $b --o $o --set $set --lr 0.01

rm -Rf wandb/
rm -Rf /home/isajim/.local/share/wandb/
rm -Rf /tmp/wandb/
wandb artifact cache cleanup 1GB
TF_CPP_MIN_LOG_LEVEL=2 python3 base_model_main_ViT.py --datasetDIR /opt/data/isa/proxemics/dataset/ --outModelsDIR /pub/experiments/isajim/proxemics/models/ --b $b --o $o --set $set --lr 0.01 --onlyPairRGB

rm -Rf wandb/
rm -Rf /home/isajim/.local/share/wandb/
rm -Rf /tmp/wandb/
wandb artifact cache cleanup 1GB




done
done
done
Loading

0 comments on commit 41db794

Please sign in to comment.