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

setup.cfg 623 B

[to #41669377] add speech AEC pipeline Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/8973072 * [to #41669377] docs and tools refinement and release 1. add build_doc linter script 2. add sphinx-docs support 3. add development doc and api doc 4. change version to 0.1.0 for the first internal release version Link: https://code.aone.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/8775307 * [to #41669377] add pipeline tutorial and fix bugs 1. add pipleine tutorial 2. fix bugs when using pipeline with certain model and preprocessor Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/8814301 * refine doc * feat: add audio aec pipeline and preprocessor * feat: add audio aec model classes * feat: add audio aec loss functions * refactor:delete no longer used loss function * [to #42281043] support kwargs in pipeline Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/8949062 * support kwargs in pipeline * update develop doc with CR instruction * Merge branch 'release/0.1' into dev/aec * style: reformat code by pre-commit tools * feat:support maas_lib pipeline auto downloading model * test:add aec test case as sample code * feat:aec pipeline use config from maashub * feat:aec pipeline use feature parameters from maashub * update setup.cfg to disable PEP8 rule W503 in flake8 and yapf * format:fix double quoted strings, indent issues and optimize import * refactor:extract some constant in aec pipeline * refactor: delete no longer used __main__ statement * chore:change all Chinese comments to English * fix: change file name style to lower case * refactor: rename model name * feat:load C++ .so from LD_LIBRARY_PATH * feat:register PROPROCESSOR for LinearAECAndFbank * refactory:move aec process from postprocess() to forward() and update comments * refactory:add more readable error message when audio sample rate is not 16000 * fix: package maas_lib renamed to modelscope in import statement * feat: optimize the error message of audio layer classes * format: delete empty lines * refactor: rename audio preprocessor and optimize error message * refactor: change aec model id to damo/speech_dfsmn_aec_psm_16k * refactor: change sample audio file url to public oss * Merge branch 'master' into dev/aec * feat: add output info for aec pipeline * fix: normalize output audio data to [-1.0, 1.0] * refactor:use constant from ModelFile * feat: AEC pipeline can use c++ lib in current working directory and the test will download it * fix: c++ downloading should work wherever test is triggerd
3 years ago
12345678910111213141516171819202122232425
  1. [isort]
  2. line_length = 79
  3. multi_line_output = 0
  4. known_standard_library = setuptools
  5. known_first_party = modelscope
  6. known_third_party = json,yaml
  7. no_lines_before = STDLIB,LOCALFOLDER
  8. default_section = THIRDPARTY
  9. [yapf]
  10. BASED_ON_STYLE = pep8
  11. BLANK_LINE_BEFORE_NESTED_CLASS_OR_DEF = true
  12. SPLIT_BEFORE_EXPRESSION_AFTER_OPENING_PAREN = true
  13. SPLIT_BEFORE_ARITHMETIC_OPERATOR = true
  14. [codespell]
  15. skip = *.ipynb
  16. quiet-level = 3
  17. ignore-words-list = patten,nd,ty,mot,hist,formating,winn,gool,datas,wan,confids
  18. [flake8]
  19. max-line-length = 120
  20. select = B,C,E,F,P,T4,W,B9
  21. ignore = F401,F405,F821,W503,E251
  22. exclude = docs/src,*.pyi,.git