-
Notifications
You must be signed in to change notification settings - Fork 117
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
Merge 0.15.5
#894
base: main
Are you sure you want to change the base?
Merge 0.15.5
#894
Conversation
* remove contour and rename to talk xxx * fix speaker id map * rename functions and variables * add models to model file * add sing style and source filter models to model file set * add new models to status * rename get model index and speaker id * add new models session * change i32 to i64 * add new predictor to inference core * add new predictor to core * add new predictor to compatible engine * rename source filter to sf decode * fix rename miss * rename sing style to sing teacher * fix rename miss * remove vector * add TODO comment (add sing tests) Co-authored-by: Hiroshiba <[email protected]> * fix comment out * lint --------- Co-authored-by: Hiroshiba <[email protected]>
* fix is model loaded bug * Apply suggestions from code review --------- Co-authored-by: Hiroshiba <[email protected]>
* update shape * using f0 * fmt
project-s用のテストの枠組みだけ作った
* add models * remove comment out * fix merge miss * add tests to status * add onnx file to typos exclude files * rename model file * fmt --------- Co-authored-by: Hiroshiba <[email protected]>
* style_typeの名称変更 * いらない変更が入ってた
* release-0.15のmacos-11をmacos-12にアップデートしておく * 空コミット * --locked * 戻した * 要らない変更
SINGING_TEACHER = "singing_teacher" | ||
"""歌唱音声合成用のクエリの作成が可能。""" | ||
|
||
FRAME_DECODE = "frame_decode" | ||
"""歌唱音声合成が可能。""" | ||
|
||
SING = "sing" | ||
"""歌唱音声合成用のクエリの作成と歌唱音声合成が可能。""" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
これは入れ忘れだったものなので、別PRを作るべき。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
以下のようにしてマージ。 - ソングのモデルもsample.vvmの中に入れて一つにする。それに伴い、 `release-0.15`で増えた一部のテストは削除 - モデルのロードに関しては、現行のVVMを前提にした処理に置き換える。 - 推論の実行に関しては`ndarray`を前提とした処理に置き換える。 - 以下に示す、その他の今の`main`にそぐわないコードは、fixmeを付けて残 す。 - 暫定対応のはずの、cargo-binstallへの`--locked` - デッドコードである、`UnsupportedModel`と `VOICEVOX_RESULT_UNSUPPORTED_MODEL_ERROR` - 嘘コメントと化している、"TODO: sing系のテストを足す"
テストはhttps://github.com/VOICEVOX/voicevox_core/tree/release-0.15にあるものしか入れておらず、動作はまだ未確認。 |
@@ -148,6 +148,7 @@ pub enum ErrorKind { | |||
StyleNotFound, | |||
/// 音声モデルIDに対する音声モデルが見つからなかった。 | |||
ModelNotFound, | |||
UnsupportedModel, // FIXME: dead code |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
もしかしたら、release-0.15
にリファクタPRを発射した方が良いかもしれない。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!!!
とりあえず一通り見てみました、問題なさそう!!
マージありがとうございます!!!!
内容
詳細はマージコミットのコミットメッセージに書きました。このコミットメッセージもレビュー対象にして頂きたく。
関連 Issue
Resolves: #737
その他
参考: 0.14.6...0.15.5