Giter VIP home page Giter VIP logo

archisound's Introduction

ArchiSound

A collection of pre-trained audio models in PyTorch from audio-encoders-pytorch and audio-diffusion-pytorch.

Install

pip install archisound

PyPI - Python Version

Autoencoders

  • dmae1d-ATC32-v3

    Usage and Info
    from archisound import ArchiSound
    
    autoencoder = ArchiSound.from_pretrained("dmae1d-ATC32-v3")
    
    x = torch.randn(1, 2, 2**18)
    z = autoencoder.encode(x) # [1, 32, 512]
    y = autoencoder.decode(z, num_steps=20) # [1, 2, 262144]
    Info
    Input type Audio (stereo @ 48kHz)
    Number of parameters 86M
    Compression Factor 32x
    Downsampling Factor 512x
    Bottleneck Type Tanh
  • dmae1d-ATC64-v2

    Usage and Info
    from archisound import ArchiSound
    
    autoencoder = ArchiSound.from_pretrained("dmae1d-ATC64-v2")
    
    x = torch.randn(1, 2, 2**18)
    z = autoencoder.encode(x) # [1, 32, 256]
    y = autoencoder.decode(z, num_steps=20) # [1, 2, 262144]
    Info
    Input type Audio (stereo @ 48kHz)
    Number of parameters 185M
    Compression Factor 64x
    Downsampling Factor 1024x
    Bottleneck Type Tanh
  • autoencoder1d-AT-v1

    Usage and Info
    from archisound import ArchiSound
    
    autoencoder = ArchiSound.from_pretrained('autoencoder1d-AT-v1')
    
    x = torch.randn(1, 2, 2**18)    # [1, 2, 262144]
    z = autoencoder.encode(x)       # [1, 32, 8192]
    y = autoencoder.decode(z)       # [1, 2, 262144]
    Info
    Input type Audio (stereo @ 48kHz)
    Number of parameters 20.7M
    Compression Factor 2x
    Downsampling Factor 32x
    Bottleneck Type Tanh
    Known Limitations Slight blurriness in high frequency spectrogram reconstruction
  • dmae1d-ATC64-v1

    Usage and Info

    A diffusion based autoencoder with high compression ratio. Requires audio_diffusion_pytorch==0.0.92.

    from archisound import ArchiSound
    
    autoencoder = ArchiSound.from_pretrained("dmae1d-ATC64-v1")
    
    x = torch.randn(1, 2, 2**18)
    z = autoencoder.encode(x) # [1, 32, 256]
    y = autoencoder.decode(z, num_steps=20) # [1, 2, 262144]
    Info
    Input type Audio (stereo @ 48kHz)
    Number of parameters 234.2M
    Compression Factor 64x
    Downsampling Factor 1024x
    Bottleneck Type Tanh

archisound's People

Contributors

flavioschneider avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

archisound's Issues

Dataset used

Hello,
Thanks for this amazing contribution !

Is it possible to have some informations about the dataset used, especially for the 'autoencoder1d-AT-v1' model ?

It would be very nice to know what dataset was used for each model, are they from the audio-data-pytorch repo ?

Thank you very much

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.