rnnoise | Recurrent neural network for audio noise reduction | Machine Learning library

 by   xiph C Version: Current License: BSD-3-Clause

kandi X-RAY | rnnoise Summary

kandi X-RAY | rnnoise Summary

rnnoise is a C library typically used in Artificial Intelligence, Machine Learning, Deep Learning, Neural Network applications. rnnoise has no bugs, it has no vulnerabilities, it has a Permissive License and it has medium support. You can download it from GitHub.

RNNoise is a noise suppression library based on a recurrent neural network. To compile, just type: % ./autogen.sh % ./configure % make. Optionally: % make install.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              rnnoise has a medium active ecosystem.
              It has 3041 star(s) with 813 fork(s). There are 144 watchers for this library.
              OutlinedDot
              It had no major release in the last 6 months.
              There are 145 open issues and 39 have been closed. On average issues are closed in 94 days. There are 15 open pull requests and 0 closed requests.
              It has a neutral sentiment in the developer community.
              The latest version of rnnoise is current.

            kandi-Quality Quality

              rnnoise has no bugs reported.

            kandi-Security Security

              rnnoise has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.

            kandi-License License

              rnnoise is licensed under the BSD-3-Clause License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              rnnoise releases are not available. You will need to build from source code and install.

            Top functions reviewed by kandi - BETA

            kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
            Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of rnnoise
            Get all kandi verified functions for this library.

            rnnoise Key Features

            No Key Features are available at this moment for rnnoise.

            rnnoise Examples and Code Snippets

            No Code Snippets are available at this moment for rnnoise.

            Community Discussions

            QUESTION

            How to shape TFRecordDataset to meet Model API?
            Asked 2020-Mar-15 at 15:07

            I am building a model based on this code for noise suppression. My problem with the vanilla implementation is that it loads all data at once, which is not the best idea when the training data gets really large; my input file, denoted in the linked code as training.h5, is over 30 GB.

            I decided to instead go with tf.data interface that should allow me to work with large data sets; my problem here is that I don't know how to properly shape TFRecordDataset so that it meets what's required by the Model API.

            If you check model.fit(x_train, [y_train, vad_train], it essentially requires the following:

            • x_train, shape [nb_sequences, window, 42]
            • y_train, shape [nb_sequences, window, 22]
            • vad_train, shape [nb_sequences, window, 1]

            window one typically fixes (in the code: 2000), so the only variable nb_sequences that stems from how large is your data set. However, with tf.data, we don't supply x and y, but only x (see Model API docs).

            Saving tfrecord to file

            In an effort to make the code reproducible, I created the input file with the following code:

            ...

            ANSWER

            Answered 2020-Mar-15 at 15:07

            Given that your model has 1 input and 2 outputs, your tf.data.Dataset should have two entries:
            1) Input array of shape (window, 42)
            2) Tuple of two arrays each of shape (window, 22) and (window, 1)

            EDIT: Updated answer - you already return two element tuple

            I just noticed that your dataset has these two entries (similar to those described above) and the only thing that differs is the shape.
            The only operations you need to perfom is to batch your data twice:
            First - to restore the window parameter. Second - to pass a batch to a model.

            Source https://stackoverflow.com/questions/60684241

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install rnnoise

            You can download it from GitHub.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/xiph/rnnoise.git

          • CLI

            gh repo clone xiph/rnnoise

          • sshUrl

            git@github.com:xiph/rnnoise.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link