-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolyaxonfile_exp_Group.yaml
72 lines (63 loc) · 1.58 KB
/
polyaxonfile_exp_Group.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
version: 1
kind: group
framework: pytorch
build:
image: pytorch/pytorch:1.1.0-cuda10.0-cudnn7.5-runtime # Image name to use
build_steps:
- apt update
- apt install -y libglib2.0-0 libsm6 libxext6 libxrender-dev
- pip install opencv-python
- pip install -r requirements.txt
environment:
resources:
cpu:
requests: 4
limits: 8
memory:
requests: 8192
limits: 8192
gpu:
requests: 1
limits: 1
params:
epochs: 100
batch_size: 15
save: True
gpu: True
notifications: True
polyaxon: True
expositions: 15
tensor_b: True
logg_freq: 100
checkpoint: $POLYAXON_RUN_OUTPUTS_PATH
#img_scale:
#momentum: 0.9
#log_interval: 100
#batch_size_test: 15
#val_percent=0.20,
hptuning:
#random_search:
# n_experiments: 10
matrix:
lr:
linspace: 0.002:0.003:2
lambda:
linspace: 5.0:7:4
#values: [0.01,1,5] #0.01:6:4
#loss:
#values: [MeanSquaredError, AbsoluteDifference]
run:
cmd: python -u ushdrcnn_train.py --epochs={{ epochs }} \
--save-cp={{ save }} \
--batch-size={{ batch_size }} \
--learning-rate={{ lr }} \
--loss-lambda={{ lambda }} \
--expo-num={{expositions}} \
--logg-freq={{logg_freq}} \
--outputs-path=$POLYAXON_RUN_OUTPUTS_PATH \
-p \
-g \
-n \
-t
#-m