Skip to content

Commit

Permalink
makefile: add targets for training models on the five datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
cdluminate committed Aug 28, 2022
1 parent 7604479 commit 798eeca
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,28 @@ runtest:
legion:
#rsync -rvlz . 169.254.169.219:~/Git/2021-robrank/ $(RSYNC_FLAGS)
rsync -rvlz . 192.168.1.106:$(RSYNC_DEST) $(RSYNC_FLAGS)

train-mnist:
python3 bin/train.py -C mnist:rc2f2:ptripletN # Vanilla
python3 bin/train.py -C mnist:rc2f2d:ptripletN # EST
python3 bin/train.py -C mnist:rc2f2p:ptripletN # ACT

train-fashion:
python3 bin/train.py -C fashion:rc2f2:ptripletN # Vanilla
python3 bin/train.py -C fashion:rc2f2d:ptripletN # EST
python3 bin/train.py -C fashion:rc2f2p:ptripletN # ACT

train-cub:
python3 bin/train.py -C cub:rres18:ptripletN # Vanilla
python3 bin/train.py -C cub:rres18d:ptripletN # EST
python3 bin/train.py -C cub:rres18p:ptripletN # ACT

train-cars:
python3 bin/train.py -C cars:rres18:ptripletN # Vanilla
python3 bin/train.py -C cars:rres18d:ptripletN # EST
python3 bin/train.py -C cars:rres18p:ptripletN # ACT

train-sop:
python3 bin/train.py -C sop:rres18:ptripletN # Vanilla
python3 bin/train.py -C sop:rres18d:ptripletN # EST
python3 bin/train.py -C sop:rres18p:ptripletN # ACT

0 comments on commit 798eeca

Please sign in to comment.