Open blazejkotowski opened 10 months ago
I have the same problem, I think @ballerburg9005 suggests to train with msprior here: https://github.com/acids-ircam/RAVE/discussions/300
But I'm not sure it works, and how.
Same error here. Has anyone managed to train and export a prior (not msprior) model that can be used with nn~
, using a version of this repo later than v1?
I have preprocessed the data following way:
rave preprocess --channels 1 --input_path <input_path> --output_path <db_path>
Then I trained the model with following command
rave train --batch 2 --channels 1 --db_path <db_path> --name <run_name> --out_path <run_out> --val_every 2500 --config v2.gin
Then I trained the prior
rave train_prior --db_path <db_path> --name <prior_name> --out_path <prior_out_path> --val_every 2500 --gpu 0
Finally, on the export with the following command
rave export --name organizmo_fire --streaming true --run <run_out_path> --prior <prior_out_path> --output ts_models/
I get the following exception
At the same time, I am able to export the model without prior. What is the issue?