Skip to content

Commit

Permalink
Fix: pyopenjtalk[marine] を pyopenjtalk-plus[marine] に置換
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukumijima committed Aug 10, 2024
1 parent 9475203 commit aba0b68
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyopenjtalk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def load_marine_model(model_dir: Union[str, None] = None, dict_dir: Union[str, N
try:
from marine.predict import Predictor
except ImportError:
raise ImportError("Please install marine by `pip install pyopenjtalk[marine]`")
raise ImportError("Please install marine by `pip install pyopenjtalk-plus[marine]`")
_global_marine = Predictor(model_dir=model_dir, postprocess_vocab_dir=dict_dir)


Expand Down Expand Up @@ -163,7 +163,7 @@ def extract_fullcontext(
text (str): Input text
run_marine (bool): Whether to estimate accent using marine.
Default is False. If you want to activate this option, you need to install marine
by `pip install pyopenjtalk[marine]`
by `pip install pyopenjtalk-plus[marine]`
use_vanilla (bool): If True, returns the vanilla NJDFeature list.
Default is False.
Expand Down Expand Up @@ -217,7 +217,7 @@ def tts(
half_tone (float): additional half-tone. Default is 0.
run_marine (bool): Whether to estimate accent using marine.
Default is False. If you want activate this option, you need to install marine
by `pip install pyopenjtalk[marine]`
by `pip install pyopenjtalk-plus[marine]`
Returns:
np.ndarray: speech waveform (dtype: np.float64)
Expand All @@ -235,7 +235,7 @@ def run_frontend(
text (str): Unicode Japanese text.
run_marine (bool): Whether to estimate accent using marine.
Default is False. If you want to activate this option, you need to install marine
by `pip install pyopenjtalk[marine]`
by `pip install pyopenjtalk-plus[marine]`
use_vanilla (bool): If True, returns the vanilla NJDFeature list.
Default is False.
Expand Down

0 comments on commit aba0b68

Please sign in to comment.