Skip to content

Commit

Permalink
next set of run ymls
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-woodward committed Apr 23, 2024
1 parent c945536 commit 7e9db4f
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 4 deletions.
18 changes: 18 additions & 0 deletions runc-mobilenetv3small-epochs10-batch32-lr001.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
experiment_name: mobilenetv3small-epochs10-batch32-lr001
model_name: mobilenet_v3small
data_dir: tfrecords/train_test
val_data_dir: tfrecords/val
checkpoint: saved_models/mobilenetv3small-epochs10-batch32-lr001/best_model.h5
total_examples: 70000 # number of geotiffs not tfrecords
test_split: 0.2 # float or null

optimizer: adam
optimizer_use_lr_schedular: true
loss_function: binary_crossentropy

epochs: 10
learning_rate: 0.001
batch_size: 32
buffer_size: 70000

early_stopping_patience: 5 # null or int
18 changes: 18 additions & 0 deletions runc-mobilenetv3small-epochs10-batch32-lr01.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
experiment_name: mobilenetv3small-epochs10-batch32-lr01
model_name: mobilenet_v3small
data_dir: tfrecords/train_test
val_data_dir: tfrecords/val
checkpoint: saved_models/mobilenetv3small-epochs10-batch32-lr01/best_model.h5
total_examples: 70000 # number of geotiffs not tfrecords
test_split: 0.2 # float or null

optimizer: adam
optimizer_use_lr_schedular: true
loss_function: binary_crossentropy

epochs: 10
learning_rate: 0.01
batch_size: 32
buffer_size: 70000

early_stopping_patience: 5 # null or int
18 changes: 18 additions & 0 deletions runc-mobilenetv3small-epochs10-batch64-lr001.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
experiment_name: mobilenetv3small-epochs10-batch64-lr001
model_name: mobilenet_v3small
data_dir: tfrecords/train_test
val_data_dir: tfrecords/val
checkpoint: saved_models/mobilenetv3small-epochs10-batch64-lr001/best_model.h5
total_examples: 70000 # number of geotiffs not tfrecords
test_split: 0.2 # float or null

optimizer: adam
optimizer_use_lr_schedular: true
loss_function: binary_crossentropy

epochs: 10
learning_rate: 0.001
batch_size: 64
buffer_size: 70000

early_stopping_patience: 5 # null or int
18 changes: 18 additions & 0 deletions runc-mobilenetv3small-epochs10-batch64-lr01.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
experiment_name: mobilenetv3small-epochs10-batch64-lr01
model_name: mobilenet_v3small
data_dir: tfrecords/train_test
val_data_dir: tfrecords/val
checkpoint: saved_models/mobilenetv3small-epochs10-batch64-lr01/best_model.h5
total_examples: 70000 # number of geotiffs not tfrecords
test_split: 0.2 # float or null

optimizer: adam
optimizer_use_lr_schedular: true
loss_function: binary_crossentropy

epochs: 10
learning_rate: 0.01
batch_size: 64
buffer_size: 70000

early_stopping_patience: 5 # null or int
4 changes: 2 additions & 2 deletions runc-resnet-epochs10-batch32-lr001.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
experiment_name: resnet-epochs10-batch64-lr001
experiment_name: resnet-epochs10-batch32-lr001
model_name: resnet
data_dir: tfrecords/train_test
val_data_dir: tfrecords/val
checkpoint: saved_models/resnet-epochs10-batch64-lr001/best_model.h5
checkpoint: saved_models/resnet-epochs10-batch32-lr001/best_model.h5
total_examples: 70000 # number of geotiffs not tfrecords
test_split: 0.2 # float or null

Expand Down
4 changes: 2 additions & 2 deletions runc-resnet-epochs10-batch32-lr01.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
experiment_name: resnet-epochs10-batch64-lr01
experiment_name: resnet-epochs10-batch32-lr01
model_name: resnet
data_dir: tfrecords/train_test
val_data_dir: tfrecords/val
checkpoint: saved_models/resnet-epochs10-batch64-lr01/best_model.h5
checkpoint: saved_models/resnet-epochs10-batch32-lr01/best_model.h5
total_examples: 70000 # number of geotiffs not tfrecords
test_split: 0.2 # float or null

Expand Down

0 comments on commit 7e9db4f

Please sign in to comment.