This commit is contained in:
yzhang87 2016-02-23 16:04:31 -05:00
Родитель ee92cf1d1c
Коммит 367db5e76e
3 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -6,7 +6,7 @@
// //
#include "stdafx.h" #include "stdafx.h"
#include "basetypes.h" #include "Basics.h"
#include "htkfeatio.h" // for reading HTK features #include "htkfeatio.h" // for reading HTK features

Просмотреть файл

@ -2007,6 +2007,7 @@ bool HTKMLFReader<ElemType>::DataEnd()
return m_sentenceEnd[0]; return m_sentenceEnd[0];
else else
return true; // useless in current condition return true; // useless in current condition
}
template <class ElemType> template <class ElemType>
void HTKMLFReader<ElemType>::SetSentenceEndInBatch(vector<size_t>& sentenceEnd) void HTKMLFReader<ElemType>::SetSentenceEndInBatch(vector<size_t>& sentenceEnd)

Просмотреть файл

@ -6,6 +6,7 @@
// //
#pragma once #pragma once
#include "DataWriter.h" #include "DataWriter.h"
#include "ScriptableObjects.h"
#include <map> #include <map>
#include <vector> #include <vector>
@ -57,5 +58,6 @@ public:
virtual void GetSections(std::map<std::wstring, SectionType, nocase_compare>& sections); virtual void GetSections(std::map<std::wstring, SectionType, nocase_compare>& sections);
virtual bool SaveData(size_t recordStart, const std::map<std::wstring, void*, nocase_compare>& matrices, size_t numRecords, size_t datasetSize, size_t byteVariableSized); virtual bool SaveData(size_t recordStart, const std::map<std::wstring, void*, nocase_compare>& matrices, size_t numRecords, size_t datasetSize, size_t byteVariableSized);
virtual void SaveMapping(std::wstring saveId, const std::map<LabelIdType, LabelType>& labelMapping); virtual void SaveMapping(std::wstring saveId, const std::map<LabelIdType, LabelType>& labelMapping);
virtual bool SupportMultiUtterances() const { return false; };
}; };
} } } } } }