Skip to content

Commit

Permalink
fixed incorrect argument type in dump_lpcnet.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Buethe committed Aug 19, 2023
1 parent f715414 commit c5d58b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion training_tf2/dump_lpcnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def dump_embedding_layer(self, f, hf):
parser.add_argument('--nnet-header', type=str, help='name of c header file for dumped model', default='nnet_data.h')
parser.add_argument('--nnet-source', type=str, help='name of c source file for dumped model', default='nnet_data.c')
parser.add_argument('--lpc-gamma', type=float, help='LPC weighting factor. If not specified I will attempt to read it from the model file with 1 as default', default=None)
parser.add_argument('--lookahead', type=float, help='Features lookahead. If not specified I will attempt to read it from the model file with 2 as default', default=None)
parser.add_argument('--lookahead', type=int, help='Features lookahead. If not specified I will attempt to read it from the model file with 2 as default', default=None)

args = parser.parse_args()

Expand Down

0 comments on commit c5d58b5

Please sign in to comment.