-
Notifications
You must be signed in to change notification settings - Fork 42
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
A full walkthrough to generate charts? #2
Comments
Thank you for raising this issue! I have added inference code and a trained model to the repository under the There are some details in the README about how to run the code to generate step charts. Please let me know if you run into further issues. |
Thanks. I'm looking into transferring inference code from tf v0.12 to tf v1 and this seems to involve a retrain. Where can I find the trained net that can be used by the inference code? |
The trained nets (step placement and step selection) are under server_aux. I tried running the inference code in tf v1 and it seemed like the only issue was some RNN variable naming convention had changed in the internal API. You should be able to either 1) fix the checkpoint to use the new naming convention, or 2) fix the code to use the old variable names. Also, you'll need to pull in the newer versions of |
The checkpoint problem is not trivial so I'm trying to get the model files corresponding to |
The checkpoints should show up in |
I realized that the Edit: Seems like the inference net is asking for 2 features, but the learning net is only providing 1, so my retrained nets never fit. What parameters should I look into to make these two nets consistent? Thanks! Also, the onset net phase seems to be working now. |
Ah, great catch! It looks like I forgot to include |
Nice, things seem to work now. Thanks again! |
No problem. Were you able to modify the checkpoint to fix the inference in tf 1.0? If so, could you make a PR? |
An intermediate file is used in my testing (to prove that the file structure is OK) so I don't have a fully trained model yet. The old model won't work in tf 1.x version so I'll make the PR as soon as I have code cleaned up and model retrained from scratch. |
Hi,
I realized that some of the steps in the setup guide are slightly off and the guides just ends at training stage. I would like to know that how I can get to the final part that evaluates an extra audio piece to generate a stepchart.
Also, it seems that when I do the following
1. Train a step selection (symbolic) model on a dataset:
./sml_sym_2_train.sh fraxtil``I also needed to do
./sml_sym_1_chart.sh fraxtil
But I don't know whether this is intended.
Thank you!
The text was updated successfully, but these errors were encountered: