diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-11-03 22:13:33 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-11-03 22:13:33 +0100 |
commit | 6cb2259592a1868fda069d7f7b3f1688c56f1912 (patch) | |
tree | d1eb05b8ecbd004f2eff240d301268de1cae541a /training | |
parent | 913cf87dec92ed474a3c211ec8b305665513186a (diff) |
Remove pixelcnn
Diffstat (limited to 'training')
-rw-r--r-- | training/conf/network/decoder/pixelcnn_decoder.yaml | 5 | ||||
-rw-r--r-- | training/conf/network/encoder/pixelcnn_encoder.yaml | 5 | ||||
-rw-r--r-- | training/conf/network/vqvae_pixelcnn.yaml | 9 |
3 files changed, 0 insertions, 19 deletions
diff --git a/training/conf/network/decoder/pixelcnn_decoder.yaml b/training/conf/network/decoder/pixelcnn_decoder.yaml deleted file mode 100644 index cdddb7a..0000000 --- a/training/conf/network/decoder/pixelcnn_decoder.yaml +++ /dev/null @@ -1,5 +0,0 @@ -_target_: text_recognizer.networks.vqvae.pixelcnn.Decoder -out_channels: 1 -hidden_dim: 8 -channels_multipliers: [8, 2, 1] -dropout_rate: 0.25 diff --git a/training/conf/network/encoder/pixelcnn_encoder.yaml b/training/conf/network/encoder/pixelcnn_encoder.yaml deleted file mode 100644 index f12957b..0000000 --- a/training/conf/network/encoder/pixelcnn_encoder.yaml +++ /dev/null @@ -1,5 +0,0 @@ -_target_: text_recognizer.networks.vqvae.pixelcnn.Encoder -in_channels: 1 -hidden_dim: 8 -channels_multipliers: [1, 2, 8] -dropout_rate: 0.25 diff --git a/training/conf/network/vqvae_pixelcnn.yaml b/training/conf/network/vqvae_pixelcnn.yaml deleted file mode 100644 index cd850af..0000000 --- a/training/conf/network/vqvae_pixelcnn.yaml +++ /dev/null @@ -1,9 +0,0 @@ -defaults: - - encoder: pixelcnn_encoder - - decoder: pixelcnn_decoder - -_target_: text_recognizer.networks.vqvae.vqvae.VQVAE -hidden_dim: 64 -embedding_dim: 32 -num_embeddings: 1024 -decay: 0.99 |