From 6fd61e82b0965381cb6905b57ebf5048f641e71e Mon Sep 17 00:00:00 2001 From: root Date: Wed, 15 Jan 2020 12:38:04 +0100 Subject: [PATCH] seq_len_norm set in config --- config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/config.json b/config.json index ef999fa9..1829fde8 100644 --- a/config.json +++ b/config.json @@ -53,6 +53,7 @@ "lr": 0.0001, // Initial learning rate. If Noam decay is active, maximum learning rate. "wd": 0.000001, // Weight decay weight. "warmup_steps": 4000, // Noam decay steps to increase the learning rate from 0 to "lr" + "seq_len_norm": false, // Normalize eash sample loss with its length to alleviate imbalanced datasets. Use it if your dataset is small or has skewed distribution of sequence lengths. // TACOTRON PRENET "memory_size": -1, // ONLY TACOTRON - size of the memory queue used fro storing last decoder predictions for auto-regression. If < 0, memory queue is disabled and decoder only uses the last prediction frame.