running minimal example recipes and checking output
See original GitHub issuehi, i’m trying to figure out where the output goes when I run a recipe. According to the docs it would be specified in the hyperparams.yaml
file but none of the recipes i’ve tried have an output_folder
already specified to modify (or verify) and so I assume it would use a sensible default if none is given?
But in any case even if I explicitly add an entry for output_folder
in the yaml file, or as a runtime flag eg --output_folder <foo>
, I don’t see any outputs where i’d expect, whether in the current directory or relative to the speechbrain root, nor does anything change under speechbrain/results.
Is it me or am I missing something? I can run the tests just fine (one or two fail but the rest complete fine). Also training does take place when I run the recipe, I just don’t know where to check the results.
Issue Analytics
- State:
- Created 3 years ago
- Comments:6
Top GitHub Comments
We discussed this in a call today, and we had a couple of ideas:
tests/integration_tests
(which is currently a symlink, but we’d make it a real path).recipes
into a top-levelminimal_examples
path. This would make it clear that their primary function is to serve as examples. In addition, to work better as examples, we should add a bunch of documentation explaining the structure of those minimal recipes, and we should add all the normal scaffolding code that recipes have (like creating an output directory and logging and storing results).My path was following the doc which described how to run an experiment. I started with the minimal examples because the tutorial in the google colab did the same,
And that’s where I got stuck.
What I would have liked to see instead, was the result of the training so I could experiment and try to see how it all works by changing inputs, hyperparams and maybe when i’m more comfortable, the code for the recipe, then comparing the results by checking outputs. If this is unreasonable, that’s fair enough, i’m a beginner so it’s possible I don’t know yet what I should be doing! The linked pull request by @pplantinga looks very close to what i’d hoped.