mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2026-01-20 11:00:23 +00:00
Bump tornado from 6.2 to 6.3.2 (#358)
* Bump tornado from 6.2 to 6.3.2 Bumps [tornado](https://github.com/tornadoweb/tornado) from 6.2 to 6.3.2. - [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst) - [Commits](https://github.com/tornadoweb/tornado/compare/v6.2.0...v6.3.2) --- updated-dependencies: - dependency-name: tornado dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Apply Code Formatter Change --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com> Co-authored-by: Ftps <63702646+Tps-F@users.noreply.github.com>
This commit is contained in:
4
gui.py
4
gui.py
@@ -159,7 +159,9 @@ class RVC:
|
||||
torch.cuda.synchronize()
|
||||
with torch.no_grad():
|
||||
logits = self.model.extract_features(**inputs)
|
||||
feats = self.model.final_proj(logits[0]) if self.version == "v1" else logits[0]
|
||||
feats = (
|
||||
self.model.final_proj(logits[0]) if self.version == "v1" else logits[0]
|
||||
)
|
||||
|
||||
####索引优化
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user