We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
動作させることを目標として配列操作の中身をブラックボックス化してNumSharpを使用したが、配列操作で何が行われているのかを把握するため、ネイティブの配列操作で書き直したい。
これが実現されることによって、Numpyのバインディングがない言語でも本実装を参考実装として、単純な配列操作でEngineの再実装が行うことが可能となる。
The text was updated successfully, but these errors were encountered:
https://github.com/yamachu/VoicevoxEngineSharp/blob/b00bb08972e6fe03c8283872a9ce481e16b635a9/src/Core/src/Acoustic/Models/SamplingData.cs https://github.com/yamachu/VoicevoxEngineSharp/blob/b00bb08972e6fe03c8283872a9ce481e16b635a9/src/Core/src/Acoustic/Usecases/SynthesisEngine.cs
の2ファイルが依存している。
例えば
VoicevoxEngineSharp/src/Core/src/Acoustic/Models/SamplingData.cs
Line 24 in b00bb08
は連番の配列を作り出し、それに対してindexやrandの値を足し合わせ定数をかけることで作り出せて
Line 30 in b00bb08
は上記の配列の中身をindexとして扱い、渡された配列のElementAt(index)みたいな感じの取得を行うみたいな感じ。
Sorry, something went wrong.
No branches or pull requests
動作させることを目標として配列操作の中身をブラックボックス化してNumSharpを使用したが、配列操作で何が行われているのかを把握するため、ネイティブの配列操作で書き直したい。
これが実現されることによって、Numpyのバインディングがない言語でも本実装を参考実装として、単純な配列操作でEngineの再実装が行うことが可能となる。
The text was updated successfully, but these errors were encountered: