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
Currently the model parameters set globally when loading the lib. This makes changing the parameters when loading a new model a little bit cumbersome.
Therefore we should allow to load a model and also pass its parameters. The following ones are necessary:
// Fourier Params const FRAME_LENGTH = config.fourierParams.frameLength const HOP_LENGTH = config.fourierParams.hopLength const FFT_SIZE = config.fourierParams.fftSize // MODEL input dimensions const N_FREQUENCIES = config.modelInput.N_FREQUENCIES const N_FRAMES = config.modelInput.N_FRAMES const N_CHANNELS = config.modelInput.N_CHANNELS const N_BATCHES = config.modelInput.N_BATCHES
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the model parameters set globally when loading the lib. This makes changing the parameters when loading a new model a little bit cumbersome.
Therefore we should allow to load a model and also pass its parameters. The following ones are necessary:
The text was updated successfully, but these errors were encountered: