mirror of
https://github.com/xiph/opus.git
synced 2025-06-02 08:37:43 +00:00
Oops, actually use the size of GRU B for training
This commit is contained in:
parent
346a96fa81
commit
4322c16335
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ opt = Adam(lr, decay=decay, beta_2=0.99)
|
|||
strategy = tf.distribute.experimental.MultiWorkerMirroredStrategy()
|
||||
|
||||
with strategy.scope():
|
||||
model, _, _ = lpcnet.new_lpcnet_model(rnn_units1=args.grua_size, training=True, quantize=quantize)
|
||||
model, _, _ = lpcnet.new_lpcnet_model(rnn_units1=args.grua_size, rnn_units2=args.grub_size, training=True, quantize=quantize)
|
||||
model.compile(optimizer=opt, loss='sparse_categorical_crossentropy', metrics='sparse_categorical_crossentropy')
|
||||
model.summary()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue