Skip to content

Commit 0b38c66

Browse files
authored
Update core.py
Lowered NANO's channels from 4 to 3. It used to much CPU before.
1 parent 2dafb35 commit 0b38c66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nam/train/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ def _get_wavenet_config(architecture):
879879
{
880880
"input_size": 1,
881881
"condition_size": 1,
882-
"channels": 5, #!#
882+
"channels": 4, #!#
883883
"head_size": 3, #!#
884884
"kernel_size": 3,
885885
"dilations": [384,192,96,32,16,8,4,2,1,24], #!#
@@ -889,7 +889,7 @@ def _get_wavenet_config(architecture):
889889
},
890890
{
891891
"condition_size": 1,
892-
"input_size": 5, #!#
892+
"input_size": 4, #!#
893893
"channels": 3, #!#
894894
"head_size": 1,
895895
"kernel_size": 3,

0 commit comments

Comments
 (0)