taylorlu / ghostvlad-speaker

An tensorflow implementation of ghostvlad for speaker recognition
14 stars 9 forks source link

A question about decay_steps #1

Closed gogyzzz closed 5 years ago

gogyzzz commented 5 years ago

In the original paper, decaying step of learning rate is every 36 epochs.

But your code, the step is 5000 iterations.

How can I make the same configuration as in the original paper?

Thank you!

taylorlu commented 5 years ago

It's just depend on your dataset, you can put a placeholder in model.py which feed you learning rate into, and when you have run 36 epochs, change the placeholder value in sess.run The project is not designing to recur the original paper, just for reference only, hope you understand.

gogyzzz commented 5 years ago

@taylorlu Thank you!