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

Genlocale dev #3

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open

Genlocale dev #3

wants to merge 26 commits into from

Commits on Sep 19, 2023

  1. Optimize latency (#1259)

    * add attribute:   configs/config.py
    	Optimize latency:   tools/rvc_for_realtime.py
    
    * new file:   assets/Synthesizer_inputs.pth
    
    * fix:   configs/config.py
    	fix:   tools/rvc_for_realtime.py
    
    * fix bug:   infer/lib/infer_pack/models.py
    
    * new file:   assets/hubert_inputs.pth
    	new file:   assets/rmvpe_inputs.pth
    	modified:   configs/config.py
    	new features:   infer/lib/rmvpe.py
    	new features:   tools/jit_export/__init__.py
    	new features:   tools/jit_export/get_hubert.py
    	new features:   tools/jit_export/get_rmvpe.py
    	new features:   tools/jit_export/get_synthesizer.py
    	optimize:   tools/rvc_for_realtime.py
    
    * optimize:   tools/jit_export/get_synthesizer.py
    	fix bug:   tools/jit_export/__init__.py
    
    * Fixed a bug caused by using half on the CPU:   infer/lib/rmvpe.py
    	Fixed a bug caused by using half on the CPU:   tools/jit_export/__init__.py
    	Fixed CIRCULAR IMPORT:   tools/jit_export/get_rmvpe.py
    	Fixed CIRCULAR IMPORT:   tools/jit_export/get_synthesizer.py
    	Fixed a bug caused by using half on the CPU:   tools/rvc_for_realtime.py
    
    * Remove useless code:   infer/lib/rmvpe.py
    
    * Delete gui_v1 copy.py
    
    * Delete .vscode/launch.json
    
    * Delete jit_export_test.py
    
    * Delete tools/rvc_for_realtime copy.py
    
    * Delete configs/config.json
    
    * Delete .gitignore
    
    * Fix exceptions caused by switching inference devices:   infer/lib/rmvpe.py
    	Fix exceptions caused by switching inference devices:   tools/jit_export/__init__.py
    	Fix exceptions caused by switching inference devices:   tools/rvc_for_realtime.py
    
    * restore
    
    * replace(you can undo this commit)
    
    * remove debug_print
    
    ---------
    
    Co-authored-by: Ftps <ftpsflandre@gmail.com>
    ChasonJiang and Tps-F committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    a2739f7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    074605b View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2023

  1. fix import (#1280)

    * fix import
    
    * lint
    Tps-F committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    768ec52 View commit details
    Browse the repository at this point in the history
  2. 🎨 同步 locale (#1242)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    github-actions[bot] and github-actions[bot] committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    5be7f10 View commit details
    Browse the repository at this point in the history
  3. Fix jit load and import issue (#1282)

    * fix jit model loading :   infer/lib/rmvpe.py
    
    * modified:   assets/hubert/.gitignore
    	move file:    assets/hubert_inputs.pth -> assets/hubert/hubert_inputs.pth
    	modified:   assets/rmvpe/.gitignore
    	move file:    assets/rmvpe_inputs.pth -> assets/rmvpe/rmvpe_inputs.pth
    	fix import:   gui_v1.py
    ChasonJiang committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    5da2962 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e9d9f24 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a0ccf2c View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2023

  1. Add input wav and delay time monitor for real-time gui (#1293)

    * feat(workflow): trigger on dev
    
    * feat(workflow): add close-pr on non-dev branch
    
    * 🎨 同步 locale (#1289)
    
    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    
    * feat: edit PR template
    
    * add input wav and delay time monitor
    
    ---------
    
    Co-authored-by: 源文雨 <41315874+fumiama@users.noreply.github.com>
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    Co-authored-by: RVC-Boss <129054828+RVC-Boss@users.noreply.github.com>
    5 people committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    e65a8b4 View commit details
    Browse the repository at this point in the history
  2. Optimize latency using scripted jit (#1291)

    * feat(workflow): trigger on dev
    
    * feat(workflow): add close-pr on non-dev branch
    
    * 🎨 同步 locale (#1289)
    
    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    
    * feat: edit PR template
    
    * Optimize-latency-using-scripted:   configs/config.py
    	Optimize-latency-using-scripted:   infer/lib/infer_pack/attentions.py
    	Optimize-latency-using-scripted:   infer/lib/infer_pack/commons.py
    	Optimize-latency-using-scripted:   infer/lib/infer_pack/models.py
    	Optimize-latency-using-scripted:   infer/lib/infer_pack/modules.py
    	Optimize-latency-using-scripted:   infer/lib/jit/__init__.py
    	Optimize-latency-using-scripted:   infer/lib/jit/get_hubert.py
    	Optimize-latency-using-scripted:   infer/lib/jit/get_rmvpe.py
    	Optimize-latency-using-scripted:   infer/lib/jit/get_synthesizer.py
    	Optimize-latency-using-scripted:   infer/lib/rmvpe.py
    	Optimize-latency-using-scripted:   tools/rvc_for_realtime.py
    
    * modified:   infer/lib/infer_pack/models.py
    
    * fix some bug:   configs/config.py
    	fix some bug:   infer/lib/infer_pack/models.py
    	fix some bug:   infer/lib/rmvpe.py
    
    * Fixed abnormal reference of logger in multiprocessing:   infer/modules/train/train.py
    
    ---------
    
    Co-authored-by: 源文雨 <41315874+fumiama@users.noreply.github.com>
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    4 people committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    39b7582 View commit details
    Browse the repository at this point in the history
  3. Format code (#1298)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    github-actions[bot] and github-actions[bot] committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    1b7aa52 View commit details
    Browse the repository at this point in the history
  4. 🎨 同步 locale (#1299)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    github-actions[bot] and github-actions[bot] committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    66c2721 View commit details
    Browse the repository at this point in the history
  5. feat: optimize actions

    fumiama committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    1fdda81 View commit details
    Browse the repository at this point in the history
  6. feat(workflow): add sync dev

    fumiama committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    5dc35d3 View commit details
    Browse the repository at this point in the history
  7. feat: optimize actions

    fumiama committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    93a1244 View commit details
    Browse the repository at this point in the history
  8. feat: optimize actions

    fumiama committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    7041bb3 View commit details
    Browse the repository at this point in the history
  9. feat: optimize actions

    fumiama committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    527bfa6 View commit details
    Browse the repository at this point in the history
  10. feat: optimize actions

    fumiama committed Sep 21, 2023
    Configuration menu
    Copy the full SHA
    c6c310c View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2023

  1. feat: add jit options (#1303)

    Delete useless code:   infer/lib/jit/get_synthesizer.py
    	Optimized code:   tools/rvc_for_realtime.py
    ChasonJiang committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    430ca86 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2023

  1. Code refactor + re-design inference ui (#1304)

    * Code refacor + re-design inference ui
    
    * Fix tabname
    
    * i18n jp
    
    ---------
    
    Co-authored-by: Ftps <ftpsflandre@gmail.com>
    blaisewf and Tps-F committed Sep 23, 2023
    Configuration menu
    Copy the full SHA
    3848c7b View commit details
    Browse the repository at this point in the history
  2. feat: optimize actions

    fumiama committed Sep 23, 2023
    Configuration menu
    Copy the full SHA
    d69b026 View commit details
    Browse the repository at this point in the history
  3. feat: optimize actions

    fumiama committed Sep 23, 2023
    Configuration menu
    Copy the full SHA
    8f7a380 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    df08977 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2023

  1. critical: some bug fixes (#1322)

    * JIT acceleration switch does not support hot update
    
    * fix padding bug of rmvpe in torch-directml
    
    * fix padding bug of rmvpe in torch-directml
    yxlllc committed Sep 24, 2023
    Configuration menu
    Copy the full SHA
    81922b0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c31d909 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2023

  1. chore(format): run black on dev (#1318)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    github-actions[bot] and github-actions[bot] committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    ad3617b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3b27869 View commit details
    Browse the repository at this point in the history