Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Train rnn with microsoft SNSD #161

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
4787439
Modularizing the RNN model
GregorR Aug 28, 2018
931e946
Fix some warnings
GregorR Aug 28, 2018
2809066
Made dump_rnn output in nu format.
GregorR Aug 28, 2018
b13c533
Neural network model files
GregorR Aug 29, 2018
56701ea
Since the library itself is incompatible, reset the versioning.
GregorR Aug 29, 2018
473e872
Trimming some fat.
GregorR Aug 29, 2018
bbeb920
Adding the 'cb' model, and some fixes to make model files work.
GregorR Aug 29, 2018
6f257df
Corrected a buggy lack of allocation.
GregorR Aug 30, 2018
76d0821
Added parameterizable maximum attenuation.
GregorR Aug 30, 2018
60a8fa7
Trimming more fat
GregorR Aug 30, 2018
63ee148
Merge branch 'master' of github.com:GregorR/rnnoise-nu
GregorR Aug 30, 2018
8a81924
Adding marathon-prescription model.
GregorR Aug 30, 2018
81ce39d
Updated README
GregorR Aug 30, 2018
c384577
Adding instructions on training.
GregorR Aug 30, 2018
0093ba9
Adding my own copyright lines would be wise...
GregorR Sep 1, 2018
c7e342c
More neural network models
GregorR Sep 1, 2018
8fb77f3
Merge branch 'master' of github.com:GregorR/rnnoise-nu
GregorR Sep 1, 2018
53f34de
Made sample rate a changeable parameter.
GregorR Sep 2, 2018
b049de3
Adding somnolent-hogwash model
GregorR Sep 2, 2018
6fc4199
Whoops, forgot to add sh to the Makefile!
GregorR Sep 2, 2018
da55528
Fixing !SMOOTH_BANDS mode
GregorR Sep 3, 2018
6c45a6d
Let's scale our maximum attenuation correctly...
GregorR Sep 3, 2018
925c2ba
Less ridiculous inter-band interpolation.
GregorR Sep 4, 2018
877bb95
Switching the default model to 'cb'
GregorR Sep 10, 2018
2626930
Backing out bad interpolation change.
GregorR Sep 16, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,14 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_DEFINE([RNNOISE_BUILD], [], [This is a build of the library])

dnl Library versioning for libtool.
dnl Please update these for releases.
dnl CURRENT, REVISION, AGE
dnl - library source changed -> increment REVISION
dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
dnl - interfaces added -> increment AGE
dnl - interfaces removed -> AGE = 0

OP_LT_CURRENT=4
OP_LT_REVISION=1
OP_LT_AGE=4
dnl For some inane reason, in .so.major.minor.revision:
dnl - major = CURRENT-AGE
dnl - minor = AGE
dnl - revision = REVISION
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am relatively sure this is not how libtool versioning works. These do not correspond to major, minor, revision, see the libtool documentation. So I believe this change is wrong.


OP_LT_CURRENT=1
OP_LT_REVISION=0
OP_LT_AGE=0

AC_SUBST(OP_LT_CURRENT)
AC_SUBST(OP_LT_REVISION)
Expand Down