From 3a0e8131920b046e354a3d429cf67f6d9d4dafa2 Mon Sep 17 00:00:00 2001 From: Dubslow Date: Wed, 16 May 2018 07:42:30 -0500 Subject: [PATCH] Add training configs to version control --- training/tf/configs/279-286.yaml | 27 +++++++++++++++++++++++++++ training/tf/configs/287-301.yaml | 27 +++++++++++++++++++++++++++ training/tf/configs/current.yaml | 27 +++++++++++++++++++++++++++ 3 files changed, 81 insertions(+) create mode 100644 training/tf/configs/279-286.yaml create mode 100644 training/tf/configs/287-301.yaml create mode 100644 training/tf/configs/current.yaml diff --git a/training/tf/configs/279-286.yaml b/training/tf/configs/279-286.yaml new file mode 100644 index 000000000..aa131e703 --- /dev/null +++ b/training/tf/configs/279-286.yaml @@ -0,0 +1,27 @@ +%YAML 1.2 +--- +name: 'online-192x15' +gpu: 0 + +dataset: + num_chunks: 500000 + train_ratio: 0.90 + input: '/home/folkert/data/run1/' + +training: + batch_size: 1024 + total_steps: 50000 + shuffle_size: 1000000 + lr_values: + - 0.0005 + - 0.0001 + lr_boundaries: + - 25000 + policy_loss_weight: 1.0 + value_loss_weight: 1.0 + path: '/home2/networks' + +model: + filters: 192 + residual_blocks: 15 +... diff --git a/training/tf/configs/287-301.yaml b/training/tf/configs/287-301.yaml new file mode 100644 index 000000000..78814ab83 --- /dev/null +++ b/training/tf/configs/287-301.yaml @@ -0,0 +1,27 @@ +%YAML 1.2 +--- +name: 'online-192x15' +gpu: 0 + +dataset: + num_chunks: 500000 + train_ratio: 0.90 + input: '/home/folkert/data/run1/' + +training: + batch_size: 1024 + total_steps: 50000 + shuffle_size: 1000000 + lr_values: + - 0.0005 + - 0.0001 + lr_boundaries: + - 25000 + policy_loss_weight: 1.0 + value_loss_weight: 0.25 + path: '/home2/networks' + +model: + filters: 192 + residual_blocks: 15 +... diff --git a/training/tf/configs/current.yaml b/training/tf/configs/current.yaml new file mode 100644 index 000000000..b3d9bea15 --- /dev/null +++ b/training/tf/configs/current.yaml @@ -0,0 +1,27 @@ +%YAML 1.2 +--- +name: 'online-192x15' +gpu: 0 + +dataset: + num_chunks: 500000 + train_ratio: 0.90 + input: '/home/folkert/data/run1/' + +training: + batch_size: 1024 + total_steps: 50000 + shuffle_size: 1000000 + lr_values: + - 0.0005 + - 0.0001 + lr_boundaries: + - 10000 + policy_loss_weight: 1.0 + value_loss_weight: 0.25 + path: '/home2/networks' + +model: + filters: 192 + residual_blocks: 15 +...