-
Notifications
You must be signed in to change notification settings - Fork 297
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
Add doc about installation and usage #7
Conversation
@@ -124,19 +127,20 @@ def get_params() -> AttributeDict: | |||
""" | |||
params = AttributeDict( | |||
{ | |||
"exp_dir": Path("conformer_ctc/exp"), | |||
"exp_dir": Path("conformer_ctc/exp_new"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would suggest to put the exp_dir to the parent folder, e.g. "exp_dir": Path("exp/conformer_ctc"), Path("exp/tdnn_lstm")
. So we will not copy the exp data when we need a new version model, say, conformer_ctc_v2, confomer_ctc_v3. It is better to keep only source code in the model directory.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mm, it was my idea to co-locate the models and code like this. The idea is, it's easier to keep them in sync, and given a model, it would generally be fairly clear which code generated it. And we'd add the code to git (at least that was my idea.. although of course that would mean the code would disappear once you switched branches, which might not be ideal.)
Please refer to [k2's installation documentation][k2-install] to install k2. | ||
If you have any issues about installing k2, please open an issue at | ||
<https://github.com/k2-fsa/k2/issues>. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It will be more friendly to put conda or pip installation guide here rather than build from source code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. I just removed this kind of information and refer the reader to the documentation of k2 for installation instructions.
Will add WERs later.