-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding single gaussian without viterbi code
- Loading branch information
Showing
160 changed files
with
740,931 additions
and
154,174 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
11,264 changes: 11,264 additions & 0 deletions
11,264
c_code/diarization_single/src/IS1007a_19mfcc.rttm
Large diffs are not rendered by default.
Oops, something went wrong.
19,137 changes: 19,137 additions & 0 deletions
19,137
c_code/diarization_single/src/IS1007a_mfcc_0.rttm
Large diffs are not rendered by default.
Oops, something went wrong.
193,201 changes: 96,598 additions & 96,603 deletions
193,201
c_code/diarization_single/src/feature_file_all.txt
Large diffs are not rendered by default.
Oops, something went wrong.
115,099 changes: 57,547 additions & 57,552 deletions
115,099
c_code/diarization_single/src/plot_data.txt
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
BASEDIR = /home/jitu/btp/iitm/preprocessing | ||
SRCDIR = $(BASEDIR)/src | ||
DSPLIB = $(BASEDIR)/src | ||
OBJDIR = $(BASEDIR)/obj | ||
BINDIR = $(BASEDIR)/bin | ||
|
||
all:$(BINDIR)/diarization | ||
|
||
$(BINDIR)/diarization: $(OBJDIR)/preprocessing.o $(OBJDIR)/VQ_Modified.o $(OBJDIR)/GMM.o $(OBJDIR)/viterbi_realign.o | ||
gcc $(OBJDIR)/preprocessing.o $(OBJDIR)/VQ_Modified.o $(OBJDIR)/GMM.o $(OBJDIR)/viterbi_realign.o -o $(BINDIR)/diarization | ||
|
||
$(OBJDIR)/viterbi_realign.o: $(SRCDIR)/viterbi_realign.c | ||
gcc -c $(SRCDIR)/viterbi_realign.c | ||
|
||
$(OBJDIR)/GMM.o: $(SRCDIR)/GMM.c | ||
gcc -c $(SRCDIR)/GMM.c | ||
|
||
$(OBJDIR)/VQ_Modified.o: $(SRCDIR)/VQ_Modified.c | ||
gcc -c $(SRCDIR)/VQ_Modified.c | ||
|
||
$(OBJDIR)/preprocessing.o: $(SRCDIR)/preprocessing.c | ||
gcc -c $(SRCDIR)/preprocessing.c | ||
clean: rm $(OBJDIR)/*.o | ||
rm bin/diarization |
Empty file.
Oops, something went wrong.