Open sriranjanr opened 6 years ago
Hi, the configuration file is located in the repository https://github.com/ALIZE-Speaker-Recognition/android-alize/blob/master/AlizeConfigurationExample.cfg and as for the world.gmm file you would have to generate that yourself. Look at this tutorial to help you generate the world.gmm file Tutorial for LIA_SpkDet — GMM/UBM System from http://alize.univ-avignon.fr/
I looked at the tutorial you pointed to. The information is very cryptic and is not sufficient to know how to generate the GMM file. It is mentioned that the instruction are in README file but the information in the readme file is not sufficient. I am pasting the steps given in the readme file. I am working on a windows machines and it appears the files provided in bin are for Ubuntu.
This tutorial is organised in three parts:
Feature extraction using SPRO or HTK configuration files provided with this tutorial extract 60 dimension MFCC feature vectors (19 MFCC + log-energy and first and second order derivative)
To Run the tutorial, you need:
sfbcep from the SPRO toolkit (http://www.irisa.fr/metiss/guig/spro/)
note that if SPRO is not lined to the SPHERE library, you will need
w_decode and h_strip from the NIST speech processing toolkit (http://www.speech.cs.cmu.edu/comp.speech/Section1/AudioSoftware/nist.html)
to convert the SPHERE files in raw PCM format.
or:
HCopy from the HTK toolkit (http://htk.eng.cam.ac.uk/)
Feature selection and normalization In this part, simple feature processing is applied using NormFeat and EnergyDetector from the LIA_SpkDet toolkit
Training of a standard GMM/UBM speaker verification system
3.1. Train a Universal Background Model (UBM) using TrainWorld
3.2. Adapt speaker dependent GMM models using TrainTarget
3.3. Compare test segments to the speaker models using ComputeTest
3.4. Normalize the scores with a T or Z or ZT-norm using ComputeNorm (also possible to compute TZ-norm)
WARNING: All binaries included in the ./bin/ directory have been compiled using LINUX Ubuntu 13.04 For another OS you MUST recompile the executables. Authors recommend to recompile the executables on your machines anyway.
Basically what you have to do is run the shell scripts, if you read those you would get a better understanding of the process being followed to generate the world.gmm.
01_RUN_feature_extraction in this file you will be extracting the features from your audio files (sample audio files in sphere format are provided in the tutorial) using sfbcep which is an exe that you can get by downloading spro and compiling it and in that folder you would find the sfbcep exe file.
02a_RUN_spro_front-end in this file you would be applying the normalization functions to the features extracted in the first step from the audio files.
03_RUN_gmm-ubm in this file you would be generating the world model file along with the target speaker models but you can choose to comment out the other lines and leave only the following lines in the file
echo "Train Universal Background Model by EM algorithm"
bin/TrainWorld --config cfg/TrainWorld.cfg &> log/TrainWorld.log
echo " done, see log/TrainWorld.log for details"
Regarding the binaries, i've been using the tutorial on a macos system, i had to recompile the binaries and that was done by downloading the alize-core library and the LIA_RAL library, following the steps in the readme of the libraries to compile them and subsequently you would find all your relevant binaries in the LIA_RAL folder directory.
Also, be sure to look at the cfg folder if you want to have a better understanding of how the various steps are being done as these configurations are provided to the binaries that are being executed in the various steps.
To summarize for binaries:
1) sfbcep look in spro compiled 2) ComputeNorm, ComputeTest, TrainWorld, TrainTarget, NormFeat, EnergyDetector look in the compiled LIA_RAL folder directory. 3) w_decode and h_strip look in https://github.com/imanel/nist-sphere
Hope this helps !
I tried to compile LIA RAL in visual studio 2017 community edition and I get these errors
[ion: Debug Win32 ------
1>liatools.cpp
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(120): error C2373: 'Eigen::DenseBase<Derived>::segment': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(291): note: see declaration of 'Eigen::DenseBase<Derived>::segment'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(121): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(152): error C2373: 'Eigen::DenseBase<Derived>::head': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(294): note: see declaration of 'Eigen::DenseBase<Derived>::head'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(153): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(184): error C2373: 'Eigen::DenseBase<Derived>::tail': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(297): note: see declaration of 'Eigen::DenseBase<Derived>::tail'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(185): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\generaltools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>UnsupervisedTools.cpp
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(120): error C2373: 'Eigen::DenseBase<Derived>::segment': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(291): note: see declaration of 'Eigen::DenseBase<Derived>::segment'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(121): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(152): error C2373: 'Eigen::DenseBase<Derived>::head': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(294): note: see declaration of 'Eigen::DenseBase<Derived>::head'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(153): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(184): error C2373: 'Eigen::DenseBase<Derived>::tail': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(297): note: see declaration of 'Eigen::DenseBase<Derived>::tail'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(185): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\generaltools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>TrainTools.cpp
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(120): error C2373: 'Eigen::DenseBase<Derived>::segment': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(291): note: see declaration of 'Eigen::DenseBase<Derived>::segment'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(121): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(152): error C2373: 'Eigen::DenseBase<Derived>::head': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(294): note: see declaration of 'Eigen::DenseBase<Derived>::head'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(153): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(184): error C2373: 'Eigen::DenseBase<Derived>::tail': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(297): note: see declaration of 'Eigen::DenseBase<Derived>::tail'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(185): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\generaltools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>TopGauss.cpp
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(120): error C2373: 'Eigen::DenseBase<Derived>::segment': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(291): note: see declaration of 'Eigen::DenseBase<Derived>::segment'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(121): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(152): error C2373: 'Eigen::DenseBase<Derived>::head': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(294): note: see declaration of 'Eigen::DenseBase<Derived>::head'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(153): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(184): error C2373: 'Eigen::DenseBase<Derived>::tail': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(297): note: see declaration of 'Eigen::DenseBase<Derived>::tail'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(185): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\generaltools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>SuperVectors.cpp
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(120): error C2373: 'Eigen::DenseBase<Derived>::segment': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(291): note: see declaration of 'Eigen::DenseBase<Derived>::segment'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(121): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(152): error C2373: 'Eigen::DenseBase<Derived>::head': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(294): note: see declaration of 'Eigen::DenseBase<Derived>::head'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(153): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(184): error C2373: 'Eigen::DenseBase<Derived>::tail': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(297): note: see declaration of 'Eigen::DenseBase<Derived>::tail'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(185): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\generaltools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>SegTools.cpp
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\segtools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>ScoreWarp.cpp
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\traintools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>PldaTools.cpp
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\pldatools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>IOFormat.cpp
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(120): error C2373: 'Eigen::DenseBase<Derived>::segment': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(291): note: see declaration of 'Eigen::DenseBase<Derived>::segment'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(121): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(152): error C2373: 'Eigen::DenseBase<Derived>::head': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(294): note: see declaration of 'Eigen::DenseBase<Derived>::head'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(153): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(184): error C2373: 'Eigen::DenseBase<Derived>::tail': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(297): note: see declaration of 'Eigen::DenseBase<Derived>::tail'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(185): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\generaltools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>Hmm.cpp
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\src\hmm.cpp(58): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>GeneralTools.cpp
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(120): error C2373: 'Eigen::DenseBase<Derived>::segment': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(291): note: see declaration of 'Eigen::DenseBase<Derived>::segment'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(121): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(152): error C2373: 'Eigen::DenseBase<Derived>::head': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(294): note: see declaration of 'Eigen::DenseBase<Derived>::head'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(153): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(184): error C2373: 'Eigen::DenseBase<Derived>::tail': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(297): note: see declaration of 'Eigen::DenseBase<Derived>::tail'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(185): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\generaltools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>FileInfo.cpp
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\fileinfo.h(70): fatal error C1083: Cannot open include file: 'Object.h': No such file or directory
1>FactorAnalysis.cpp
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(120): error C2373: 'Eigen::DenseBase<Derived>::segment': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(291): note: see declaration of 'Eigen::DenseBase<Derived>::segment'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(121): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(152): error C2373: 'Eigen::DenseBase<Derived>::head': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(294): note: see declaration of 'Eigen::DenseBase<Derived>::head'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(153): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(184): error C2373: 'Eigen::DenseBase<Derived>::tail': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(297): note: see declaration of 'Eigen::DenseBase<Derived>::tail'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(185): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\generaltools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>ClusteringCriterion.cpp
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\traintools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>AccumulateTVStat.cpp
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\accumulatetvstat.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>AccumulateStat.cpp
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(120): error C2373: 'Eigen::DenseBase<Derived>::segment': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(291): note: see declaration of 'Eigen::DenseBase<Derived>::segment'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(121): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(152): error C2373: 'Eigen::DenseBase<Derived>::head': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(294): note: see declaration of 'Eigen::DenseBase<Derived>::head'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(153): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(184): error C2373: 'Eigen::DenseBase<Derived>::tail': redefinition; different type modifiers
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(297): note: see declaration of 'Eigen::DenseBase<Derived>::tail'
1>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(185): error C2447: '{': missing function header (old-style formal list?)
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\generaltools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>AccumulateJFAStat.cpp
1>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\accumulatejfastat.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
1>Generating Code...
1>Done building project "liatools_2010.vcxproj" -- FAILED.
2>------ Build started: Project: IvNorm, Configuration: Debug Win32 ------
3>------ Build started: Project: ComputeNorm, Configuration: Debug Win32 ------
4>------ Build started: Project: ComputeTest, Configuration: Debug Win32 ------
5>------ Build started: Project: EigenChannel, Configuration: Debug Win32 ------
2>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
2>IvNormMain.cpp
3>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
4>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
5>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
4>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
4>ComputeTest.cpp
4>c:\research\speaker recognition\lia_ral-master\lia_spkdet\computetest\src\computetest.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
4>ComputeTestMain.cpp
4>c:\research\speaker recognition\lia_ral-master\lia_spkdet\computetest\src\computetestmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
4>Generating Code...
4>Done building project "ComputeTest_2010.vcxproj" -- FAILED.
3>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
3>ComputeNorm.cpp
3>c:\research\speaker recognition\lia_ral-master\lia_spkdet\computenorm\src\computenorm.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
3>ComputeNormMain.cpp
3>c:\research\speaker recognition\lia_ral-master\lia_spkdet\computenorm\src\computenormmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
3>Generating Code...
3>Done building project "ComputeNorm_2010.vcxproj" -- FAILED.
6>------ Build started: Project: EigenVoice, Configuration: Debug Win32 ------
5>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
5>EigenChannel.cpp
5>c:\research\speaker recognition\lia_ral-master\lia_spkdet\eigenchannel\src\eigenchannel.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
5>EigenChannelMain.cpp
5>c:\research\speaker recognition\lia_ral-master\lia_spkdet\eigenchannel\src\eigenchannelmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
5>Generating Code...
5>Done building project "EigenChannel_2010.vcxproj" -- FAILED.
7>------ Build started: Project: EnergyDetector, Configuration: Debug Win32 ------
8>------ Build started: Project: EstimateDMatrix, Configuration: Debug Win32 ------
6>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
8>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
8>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
6>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
6>EigenVoice.cpp
6>c:\research\speaker recognition\lia_ral-master\lia_spkdet\eigenvoice\src\eigenvoice.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
6>EigenVoiceMain.cpp
6>c:\research\speaker recognition\lia_ral-master\lia_spkdet\eigenvoice\src\eigenvoicemain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
6>Generating Code...
2>c:\research\speaker recognition\lia_ral-master\lia_spkdet\ivnorm\src\ivnormmain.cpp(56): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
8>EstimateDMatrix.cpp
8>c:\research\speaker recognition\lia_ral-master\lia_spkdet\estimatedmatrix\src\estimatedmatrix.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
8>EstimateDMatrixMain.cpp
8>c:\research\speaker recognition\lia_ral-master\lia_spkdet\estimatedmatrix\src\estimatedmatrixmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
8>Generating Code...
6>Done building project "EigenVoice_2010.vcxproj" -- FAILED.
7>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
7>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
7>EnergyDetector.cpp
7>c:\research\speaker recognition\lia_ral-master\lia_spkdet\energydetector\src\energydetector.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
7>EnergyDetectorMain.cpp
7>c:\research\speaker recognition\lia_ral-master\lia_spkdet\energydetector\src\energydetectormain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
7>Generating Code...
7>Done building project "EnergyDetector_2010.vcxproj" -- FAILED.
8>Done building project "EstimateDMatrix_2010.vcxproj" -- FAILED.
9>------ Build started: Project: NormFeat, Configuration: Debug Win32 ------
10>------ Build started: Project: NormFeatWindowMode, Configuration: Debug Win32 ------
11>------ Build started: Project: PLDA, Configuration: Debug Win32 ------
2>IvNorm.cpp
10>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
9>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
11>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
10>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
11>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
11>PLDA.cpp
11>c:\research\speaker recognition\lia_ral-master\lia_spkdet\plda\src\plda.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
11>PLDAMain.cpp
10>NormFeatWindowMode.cpp
10>c:\research\speaker recognition\lia_ral-master\lia_spkdet\normfeatwindowmode\src\normfeatwindowmode.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
10>NormFeatWindowModeMain.cpp
9>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
10>c:\research\speaker recognition\lia_ral-master\lia_spkdet\normfeatwindowmode\src\normfeatwindowmodemain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
10>Generating Code...
10>Done building project "NormFeatWindowMode_2010.vcxproj" -- FAILED.
11>c:\research\speaker recognition\lia_ral-master\lia_spkdet\plda\src\pldamain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
11>Generating Code...
11>Done building project "PLDA_2010.vcxproj" -- FAILED.
9>NormFeat.cpp
9>c:\research\speaker recognition\lia_ral-master\lia_spkdet\normfeat\src\normfeat.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
9>NormFeatMain.cpp
9>c:\research\speaker recognition\lia_ral-master\lia_spkdet\normfeat\src\normfeatmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
9>Generating Code...
9>Done building project "NormFeat_2010.vcxproj" -- FAILED.
12>------ Build started: Project: ShiftedDeltaFeat, Configuration: Debug Win32 ------
13>------ Build started: Project: SpkAdapt, Configuration: Debug Win32 ------
14>------ Build started: Project: TotalVariability, Configuration: Debug Win32 ------
13>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
14>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
13>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
12>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
13>SpkAdapt.cpp
13>c:\research\speaker recognition\lia_ral-master\lia_spkdet\spkadapt\src\spkadapt.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
13>SpkAdaptMain.cpp
13>c:\research\speaker recognition\lia_ral-master\lia_spkdet\spkadapt\src\spkadaptmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
13>Generating Code...
14>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
14>TotalVariability.cpp
14>c:\research\speaker recognition\lia_ral-master\lia_spkdet\totalvariability\src\totalvariability.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
14>TotalVariabilityMain.cpp
14>c:\research\speaker recognition\lia_ral-master\lia_spkdet\totalvariability\src\totalvariabilitymain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
13>Done building project "SpkAdapt_2010.vcxproj" -- FAILED.
14>Generating Code...
14>Done building project "TotalVariability_2010.vcxproj" -- FAILED.
15>------ Build started: Project: TrainTarget, Configuration: Debug Win32 ------
12>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
12>ShiftedDeltaFeat.cpp
12>c:\research\speaker recognition\lia_ral-master\lia_spkdet\shifteddeltafeat\src\shifteddeltafeat.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
12>ShiftedDeltaFeatMain.cpp
12>c:\research\speaker recognition\lia_ral-master\lia_spkdet\shifteddeltafeat\src\shifteddeltafeatmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
12>Generating Code...
12>Done building project "ShiftedDeltaFeat_2010.vcxproj" -- FAILED.
16>------ Build started: Project: TrainWorld, Configuration: Debug Win32 ------
17>------ Build started: Project: ComputeJFAStats, Configuration: Debug Win32 ------
16>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj). This can lead to incorrect clean and rebuild behavior.
15>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
2>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(120): error C2373: 'Eigen::DenseBase<Derived>::segment': redefinition; different type modifiers
2>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(291): note: see declaration of 'Eigen::DenseBase<Derived>::segment'
2>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(121): error C2447: '{': missing function header (old-style formal list?)
2>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(152): error C2373: 'Eigen::DenseBase<Derived>::head': redefinition; different type modifiers
2>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(294): note: see declaration of 'Eigen::DenseBase<Derived>::head'
2>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(153): error C2447: '{': missing function header (old-style formal list?)
2>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(184): error C2373: 'Eigen::DenseBase<Derived>::tail': redefinition; different type modifiers
2>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\densebase.h(297): note: see declaration of 'Eigen::DenseBase<Derived>::tail'
2>c:\research\speaker recognition\lia_ral-master\include\eigen\src\core\vectorblock.h(185): error C2447: '{': missing function header (old-style formal list?)
16>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
15>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
16>TrainWorld.cpp
16>c:\research\speaker recognition\lia_ral-master\lia_spkdet\trainworld\src\trainworld.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
16>TrainWorldMain.cpp
16>c:\research\speaker recognition\lia_ral-master\lia_spkdet\trainworld\src\trainworldmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
16>Generating Code...
16>Done building project "TrainWorld_2010.vcxproj" -- FAILED.
15>TrainTarget.cpp
15>c:\research\speaker recognition\lia_ral-master\lia_spkdet\traintarget\src\traintarget.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
15>TrainTargetMain.cpp
15>c:\research\speaker recognition\lia_ral-master\lia_spkdet\traintarget\src\traintargetmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
15>Generating Code...
15>Done building project "TrainTarget_2010.vcxproj" -- FAILED.
18>------ Build started: Project: ExtractParams, Configuration: Debug Win32 ------
17>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
17>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
17>ComputeJFAStats.cpp
17>c:\research\speaker recognition\lia_ral-master\lia_spkdet\computejfastats\src\computejfastats.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
17>ComputeJFAStatsMain.cpp
17>c:\research\speaker recognition\lia_ral-master\lia_spkdet\computejfastats\src\computejfastatsmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
17>Generating Code...
17>Done building project "ComputeJFAStats_2010.vcxproj" -- FAILED.
19>------ Build started: Project: FusionScore, Configuration: Debug Win32 ------
20>------ Build started: Project: Hist, Configuration: Debug Win32 ------
2>c:\research\speaker recognition\lia_ral-master\lia_spktools\include\generaltools.h(68): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
2>Generating Code...
18>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
19>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
20>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
2>Done building project "IvNorm_2010.vcxproj" -- FAILED.
21>------ Build started: Project: LabelFusion, Configuration: Debug Win32 ------
21>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
19>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
20>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
19>FusionScore.cpp
19>c:\research\speaker recognition\lia_ral-master\lia_utils\fusionscore\src\fusionscore.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
19>FusionScoreMain.cpp
19>c:\research\speaker recognition\lia_ral-master\lia_utils\fusionscore\src\fusionscoremain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
19>Generating Code...
19>Done building project "FusionScore_2010.vcxproj" -- FAILED.
22>------ Build started: Project: ModelToSv, Configuration: Debug Win32 ------
21>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
20>Hist.cpp
20>c:\research\speaker recognition\lia_ral-master\lia_utils\hist\src\hist.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
20>HistMain.cpp
20>c:\research\speaker recognition\lia_ral-master\lia_utils\hist\src\histmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
20>Generating Code...
20>Done building project "Hist_2010.vcxproj" -- FAILED.
23>------ Build started: Project: NAPSV, Configuration: Debug Win32 ------
21>LabelFusion.cpp
21>c:\research\speaker recognition\lia_ral-master\lia_utils\labelfusion\src\labelfusion.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
21>LabelFusionMain.cpp
21>c:\research\speaker recognition\lia_ral-master\lia_utils\labelfusion\src\labelfusionmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
21>Generating Code...
23>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
22>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
21>Done building project "LabelFusion_2010.vcxproj" -- FAILED.
24>------ Build started: Project: PolyExp, Configuration: Debug Win32 ------
24>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
23>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
23>NAPSVMain.cpp
23>c:\research\speaker recognition\lia_ral-master\lia_utils\napsv\src\napsvmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
23>Done building project "NAPSV_2010.vcxproj" -- FAILED.
25>------ Build started: Project: ReadFeatFile, Configuration: Debug Win32 ------
22>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
22>ModelToSvMain.cpp
22>c:\research\speaker recognition\lia_ral-master\lia_utils\modeltosv\src\modeltosvmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
22>Done building project "ModelToSv_2010.vcxproj" -- FAILED.
24>PolyExpandMain.cpp
26>------ Build started: Project: ReadModel, Configuration: Debug Win32 ------
24>c:\research\speaker recognition\lia_ral-master\lia_utils\polyexp\src\polyexpandmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
24>PolyExpand.cpp
24>c:\research\speaker recognition\lia_ral-master\lia_utils\polyexp\src\polyexpand.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
24>Generating Code...
24>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
25>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
24>Done building project "PolyExp_2010.vcxproj" -- FAILED.
27>------ Build started: Project: ScoreWarp, Configuration: Debug Win32 ------
26>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
27>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
25>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
26>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
25>ReadFeatFile.cpp
25>c:\research\speaker recognition\lia_ral-master\lia_utils\readfeatfile\src\readfeatfile.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
25>ReadFeatFileMain.cpp
25>c:\research\speaker recognition\lia_ral-master\lia_utils\readfeatfile\src\readfeatfilemain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
25>Generating Code...
25>Done building project "ReadFeatFile_2010.vcxproj" -- FAILED.
26>ReadModel.cpp
26>c:\research\speaker recognition\lia_ral-master\lia_utils\readmodel\src\readmodel.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
26>ReadModelMain.cpp
26>c:\research\speaker recognition\lia_ral-master\lia_utils\readmodel\src\readmodelmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
26>Generating Code...
26>Done building project "ReadModel_2010.vcxproj" -- FAILED.
28>------ Build started: Project: Scoring, Configuration: Debug Win32 ------
29>------ Build started: Project: Svm, Configuration: Debug Win32 ------
27>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
27>ScoreWarpMain.cpp
27>c:\research\speaker recognition\lia_ral-master\lia_utils\scorewarp\src\scorewarpmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
28>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
29>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
27>Done building project "ScoreWarp_2010.vcxproj" -- FAILED.
18>ExtractParamsMain.cpp
30>------ Build started: Project: TimeCluster, Configuration: Debug Win32 ------
18>c:\research\speaker recognition\lia_ral-master\lia_utils\extractparams\include\extractparams.h(58): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
18>ExtractParams.cpp
18>c:\research\speaker recognition\lia_ral-master\lia_utils\extractparams\include\extractparams.h(58): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
18>Generating Code...
18>Done building project "ExtractParams_2010.vcxproj" -- FAILED.
31>------ Build started: Project: IvExtractor, Configuration: Debug Win32 ------
30>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
29>libsvm.cpp
29>c:\research\speaker recognition\lia_ral-master\lia_utils\svm\src\libsvm.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
29>SvmMain.cpp
29>c:\research\speaker recognition\lia_ral-master\lia_utils\svm\src\svmmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
29>Svm.cpp
29>c:\research\speaker recognition\lia_ral-master\lia_utils\svm\src\svm.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
29>Generating Code...
29>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
31>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvNorm.vcxproj, IvTest.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
29>Done building project "Svm_2010.vcxproj" -- FAILED.
32>------ Build started: Project: IvTest, Configuration: Debug Win32 ------
30>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
30>TimeClusterMain.cpp
30>c:\research\speaker recognition\lia_ral-master\lia_utils\timecluster\src\timeclustermain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
30>Done building project "TimeCluster_2010.vcxproj" -- FAILED.
32>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppBuild.targets(391,5): warning MSB8028: The intermediate directory (C:\research\speaker recognition\LIA_RAL-master\/bin/Win32/tmp/) contains files shared from another project (ComputeJFAStats.vcxproj, ComputeNorm.vcxproj, ComputeTest.vcxproj, EigenChannel.vcxproj, EigenVoice.vcxproj, EnergyDetector.vcxproj, EstimateDMatrix.vcxproj, ExtractParams.vcxproj, FusionScore.vcxproj, Hist.vcxproj, IvExtractor.vcxproj, IvNorm.vcxproj, LabelFusion.vcxproj, ModelToSv.vcxproj, NAPSV.vcxproj, NormFeatWindowMode.vcxproj, NormFeat.vcxproj, PLDA.vcxproj, PolyExp.vcxproj, ReadFeatFile.vcxproj, ReadModel.vcxproj, ScoreWarp.vcxproj, Scoring.vcxproj, ShiftedDeltaFeat.vcxproj, SpkAdapt.vcxproj, Svm.vcxproj, TimeCluster.vcxproj, TotalVariability.vcxproj, TrainTarget.vcxproj, TrainWorld.vcxproj). This can lead to incorrect clean and rebuild behavior.
31>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
31>IvExtractor.cpp
31>c:\research\speaker recognition\lia_ral-master\lia_spkdet\ivextractor\src\ivextractor.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
31>IvExtractorMain.cpp
31>c:\research\speaker recognition\lia_ral-master\lia_spkdet\ivextractor\src\ivextractormain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
31>Generating Code...
31>Done building project "IvExtractor_2010.vcxproj" -- FAILED.
32>cl : Command line warning D9028: minimal rebuild failure, reverting to normal build
32>IvTest.cpp
32>c:\research\speaker recognition\lia_ral-master\lia_spkdet\ivtest\src\ivtest.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
32>IvTestMain.cpp
32>c:\research\speaker recognition\lia_ral-master\lia_spkdet\ivtest\src\ivtestmain.cpp : fatal error C1041: cannot open program database 'C:\research\speaker recognition\LIA_RAL-master\bin\Win32\tmp\vc141.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
32>Generating Code...
32>Done building project "IvTest_2010.vcxproj" -- FAILED.
28>ScoringMain.cpp
28>c:\research\speaker recognition\lia_ral-master\lia_utils\scoring\include\scoring.h(58): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
28>Scoring.cpp
28>c:\research\speaker recognition\lia_ral-master\lia_utils\scoring\include\scoring.h(58): fatal error C1083: Cannot open include file: 'alize.h': No such file or directory
28>Generating Code...
28>Done building project "Scoring_2010.vcxproj" -- FAILED.
========== Build: 0 succeeded, 32 failed, 0 up-to-date, 0 skipped ==========](url)
have you tried compiling without visual studio rather following the steps in the readme of the LIA_RAL library:
Follow these four steps:
Install the ALIZE library.
Run, in this order aclocal automake autoconf
Then run ./configure. By default, the ALIZE library is searched for in ../alize-core. It may be in a folder with a different name, depending on how you downloaded the library, or if you have decided to install it in a non-default location. If so, you can specify the absolute path by using the --with-alize=ABSOLUTE_PATH option.
Finally, run make. Note: At step 2, you may need to use automake --add-missing if the file compile cannot be found.
I am on a windows machine...will "make" and all the above commands work in command line in windows?
sorry forgot about that for a moment.
http://alize.univ-avignon.fr/mediawiki/index.php/Frequently_asked_questions
Question How to compile on Windows/VisualC++ Solution Use Visual C++ 2005 with the project file and compile If your version is more recent, you have to convert the solution file with your version of VisualC++
[Edit] Seems that in the readme of LIA_RAL the version has been updated How to compile the LIA_RAL tools under Windows with Visual C++ Use the LIA_RAL.sln solution file. If your version of Visual Studio is newer than 2010, you just have to convert it using Visual studio tools Hope this helps !
On windows visual studio 2017 community edition converted the file to the latest version but there are many compile errors as I pasted the errors above.
have you checked out @padmalcom solution for visual studio 2015 ? might be that it works for you.
here are the reference to his solution, https://github.com/ALIZE-Speaker-Recognition/LIA_RAL/issues/17 http://www.jofre.de/?p=1501
I download visual studio 2010 and was able to compile the alize solution which gave me the dll files and .lib files. I was not able to combile LIA-RAL solution as it gave me the error missing Alize.h . What shall I do?
solved!
I was able to get the exes for LIA RAL which are ComputeNorm, ComputeTest, TrainWorld, TrainTarget, NormFeat, EnergyDetector but I could not find the visual studio project for SPRO. Is there a visual studio project for SPRO? And similarly is there one for w_decode and h_strip?
Another question, what and where is the sphere library?
I just saw the NIST sphere github page. Looks like lot of libraries like SPRO, Sphere,w_decode and h_strip all can be compiled only on a Linux machine.. I will have to leave this project and looks for windows alternatives. I came across the Microsoft cognitive speaker recognition library but there is no sample android app which tell us how to use it. Were you able to use the microsoft library?
I have not used the microsoft library, however I would suggest if possible that you try compiling the tutorial and the relevant binaries on a linux VM as you only require the world.gmm file from the tutorial and the actual verification you would be performing using android-alize.
I do have a sample world.gmm file created using the tutorial with the sample .sph files provided with the tutorial. However i've not had good results using it. For running the android-alize, you can use it, it should work.
I would still recommend trying out the tutorial on a VM for better understanding. I am also still learning about android-alize and how to use it successfully.
@sriranjanr i am tying to use the the Microsoft cognitive speaker recognition library on Android. Have you applied the library on your project successfully? I got a failed result and had no idea about that. I spent a lot of days on the implementation of speaker recognition and in a really big hurry.
If someone has successfully built the android project , i would like to ask a few things. Thanks!
I am on a windows machine...will "make" and all the above commands work in command line in windows?
I met the same problem. Could you tell me how you make it work?
Thanks
Has anyone tried downloading Cygwin on Windows and building the project? That should work. Note that downloading Cygwin is not entirely straight forward as you have to select the gcc compiler to install it.
checking for /home/hanane/Bureau/PACK-ALIZE/LIA_RAL-master/../alize-core/lib/libalize_Linux_x86_64.a... no checking for /home/hanane/Bureau/PACK-ALIZE/LIA_RAL-master/../alize-core/lib/libalize.a... no configure: error: alize library (libalize.a or libalize_Linux_x86_64) not found - searched in "/home/hanane/Bureau/PACK-ALIZE/LIA_RAL-master/../alize-core/lib" I have tihs error when i run ./configure In LIA-RAL
hanane@hanane-HP-Pavilion-g6-Notebook-PC:~/Bureau/PACK-ALIZE/LIA_RAL-master$ automake --add-missing configure.ac:6: installing './compile' LIA_SpkTools/src/Makefile.am:1: error: required directory LIA_SpkTools/src/src does not exist Makefile.am:1: error: required directory ./src does not exist also this error
Making all in LIA_SpkTools make[1] : on entre dans le répertoire « /home/hanane/Bureau/PACK-ALIZE/LIA_RAL-master/LIA_SpkTools » Making all in src make[2] : on entre dans le répertoire « /home/hanane/Bureau/PACK-ALIZE/LIA_RAL-master/LIA_SpkTools/src » mv libliatools.a ../../lib/libliatools_Linux_x86_64.a
I am try to build a test code to run the library. Where do we get the MyConfig.cfg and world.gmm files from? Is it possible to generate these or are they provided with the library? Please let me know.