-
Notifications
You must be signed in to change notification settings - Fork 5.4k
TS-VAD based diarization in CHiME-6 #4164
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
Conversation
…ripts, worn_audio_list
Chime6 Vimal's pull request
Track 2 pipeline with SAD and Diarization
…ipt; update RESULTS
TS-VAD diarization
… into ts_vad_final
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.
Desh, mostly code formatting and code style nits. I did not duplicate stuff like spacing around operators, code looks like it has been copypasted, so most comments to multiply.cc apply to paste.cc.
@desh2608 yes I will. Should I make it in kaldi_chime6 repo or in https://github.com/desh2608/kaldi/tree/ts_vad_final? |
@ipmedenn You can push it to this branch (ts_vad_final) so that this PR will get updated automatically. |
I think paste- is fine for the name, for consistency; just change the error
message to clarify what it actually does.
…On Fri, Jul 17, 2020 at 9:08 PM kkm000 ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In src/featbin/paste-vectors.cc
<#4164 (comment)>:
> + in[i].Range(0, this_dim));
+ dim_offset += this_dim;
+ }
+ return true;
+}
+
+
+}
+
+int main(int argc, char *argv[]) {
+ try {
+ using namespace kaldi;
+ using namespace std;
+
+ const char *usage =
+ "Paste vector files \n"
@danpovey <https://github.com/danpovey>, I'm kinda torn on this, the
naming would be inconsistent either. We already have binaries with a
similar semantics called paste-*, and dissimilar called concat-*. Maybe
combine-vectors would work?
Yes, of course I understand these are not usually text files.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#4164 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAZFLO3AFXTIAVDTMEAIAD3R4BENPANCNFSM4OY6YCCA>
.
|
@desh2608 it seems that I have no permission to commit in your repo |
paste-vectors and multiply-vectors fix
I believe all the comments have now been addressed by @ipmedenn. |
@kkm000 check the updated versions, please. |
@ipmedenn, Thanks, I'll do my best to review today.
|
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, almost there. We only need to add a sensible usage message, and handle the case of non-ark: input (print an error).
[src] fix paste-vectors.cc
LGTM, thanks guys, merging this! |
The implementation is from @ipmedenn and it has also been tested by @aarora8 and me.