You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
701 B

2 years ago
  1. #!/usr/bin/env python
  2. # coding: utf8
  3. """
  4. Spleeter is the Deezer source separation library with pretrained models.
  5. The library is based on Tensorflow:
  6. - It provides already trained model for performing separation.
  7. - It makes it easy to train source separation model with tensorflow
  8. (provided you have a dataset of isolated sources).
  9. This module allows to interact easily from command line with Spleeter
  10. by providing train, evaluation and source separation action.
  11. """
  12. __email__ = "spleeter@deezer.com"
  13. __author__ = "Deezer Research"
  14. __license__ = "MIT License"
  15. class SpleeterError(Exception):
  16. """ Custom exception for Spleeter related error. """
  17. pass