[doc] update paper link in README.md (#124)

* [doc] update paper link in README.md

* [wekws] remove unused variables in wekws/utils/executor.py
This commit is contained in:
Hongji Wang 2023-02-09 17:01:28 +08:00 committed by GitHub
parent e08fb683de
commit 846524fc8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -71,7 +71,7 @@ Please scan the QR code on the right to join the chat group.
* Mining Effective Negative Training Samples for Keyword Spotting
([github]( https://github.com/jingyonghou/KWS_Max-pooling_RHE),
[paper](http://lxie.nwpu-aslp.org/papers/2020ICASSP_HJY.pdf))
[paper](https://www.microsoft.com/en-us/research/uploads/prod/2020/04/ICASSP2020_Max_pooling_KWS.pdf))
* Max-pooling Loss Training of Long Short-term Memory Networks for Small-footprint Keyword Spotting
([paper](https://arxiv.org/pdf/1705.02411.pdf))
* A depthwise separable convolutional neural network for keyword spotting on an embedded system

View File

@ -33,8 +33,6 @@ class Executor:
epoch = args.get('epoch', 0)
min_duration = args.get('min_duration', 0)
num_total_batch = 0
total_loss = 0.0
for batch_idx, batch in enumerate(data_loader):
key, feats, target, feats_lengths = batch
feats = feats.to(device)