generated from victoresque/pytorch-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
c2.sh
executable file
·24 lines (15 loc) · 1.07 KB
/
c2.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
source ~/anaconda3/etc/profile.d/conda.sh
conda activate pytorch18cuda10
cd ~/Desktop/AntiDriftDeepMalware/
echo "starting second RSRE"
/home/john/anaconda3/envs/pytorch18cuda10/bin/python train.py --shuffled_epochs --dataset_path=../miller60K_80dev_20future/rand_split/ --samples_count=0 --batch_size=30 --train_procedure=all --architecture=GRU+AvgPool -e 80 --save_checkpoints=all
echo "done second RSRE"
echo "starting first TSTE"
/home/john/anaconda3/envs/pytorch18cuda10/bin/python train.py --dataset_path=../miller60K_80dev_20future/time_split/ --samples_count=0 --batch_size=30 --train_procedure=all --architecture=GRU+AvgPool -e 80 --save_checkpoints=all
echo "done first TSTE"
echo "done third TSRE"
/home/john/anaconda3/envs/pytorch18cuda10/bin/python train.py --shuffled_epochs --dataset_path=../miller60K_80dev_20future/time_split/ --samples_count=0 --batch_size=30 --train_procedure=all --architecture=GRU+LastPool -e 80 --save_checkpoints=all
echo "done third TSRE"
echo "done all"
# find GRU+AvgPool/ -name '*.gz' -exec cp --parents \{\} /run/media/john/NR/ \;