-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
45 lines (39 loc) · 899 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
GPU=0
all:
python examples/anil-kfo.py --help
anil-cfs:
CUDA_VISIBLE_DEVICES=$(GPU) \
python examples/anil-kfo.py \
--dataset='cifarfs' \
--layers=2 \
--fast-lr=0.1 \
--meta-lr=0.001 \
--num-iterations=20000 \
--seed=1234
anil-mi:
CUDA_VISIBLE_DEVICES=$(GPU) \
python examples/anil-kfo.py \
--dataset='mini-imagenet' \
--layers=2 \
--fast-lr=0.05 \
--meta-lr=0.001 \
--num-iterations=3500 \
--seed=1234
maml-cfs:
CUDA_VISIBLE_DEVICES=$(GPU) \
python examples/maml-kfo.py \
--dataset='cifarfs' \
--layers=2 \
--fast-lr=0.1 \
--meta-lr=0.0005 \
--num-iterations=20000 \
--seed=1234
maml-mi:
CUDA_VISIBLE_DEVICES=$(GPU) \
python examples/maml-kfo.py \
--dataset='mini-imagenet' \
--layers=2 \
--fast-lr=0.001 \
--meta-lr=0.0005 \
--num-iterations=20000 \
--seed=1234