Skip to content

Commit

Permalink
Merge pull request #60 from blaisewf/formatter-main
Browse files Browse the repository at this point in the history
chore(format): run black on main
  • Loading branch information
blaisewf authored Jul 22, 2024
2 parents dbfb33a + 364eafb commit a557174
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rvc/infer/infer.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ def __init__(self):
Initializes the VoiceConverter with default configuration, and sets up models and parameters.
"""
self.config = Config() # Load RVC configuration
self.hubert_model = None # Initialize the Hubert model (for embedding extraction)
self.hubert_model = (
None # Initialize the Hubert model (for embedding extraction)
)
self.tgt_sr = None # Target sampling rate for the output audio
self.net_g = None # Generator network for voice conversion
self.vc = None # Voice conversion pipeline instance
Expand Down

0 comments on commit a557174

Please sign in to comment.