summaryrefslogtreecommitdiff
path: root/klm
diff options
context:
space:
mode:
authorredpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-11-10 22:43:29 +0000
committerredpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-11-10 22:43:29 +0000
commit3a2f5ad616b9e3a0ba16841159f15cca3374564d (patch)
tree3fb0190a1b1842d3b9b300824df2c0ae0d9ed784 /klm
parent15b03336564d5e57e50693f19dd81b45076af5d4 (diff)
forgotten files
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@707 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'klm')
-rw-r--r--klm/lm/binary_format.hh91
-rw-r--r--klm/lm/lm_exception.hh42
2 files changed, 133 insertions, 0 deletions
diff --git a/klm/lm/binary_format.hh b/klm/lm/binary_format.hh
new file mode 100644
index 00000000..f95f05f7
--- /dev/null
+++ b/klm/lm/binary_format.hh
@@ -0,0 +1,91 @@
+#ifndef LM_BINARY_FORMAT__
+#define LM_BINARY_FORMAT__
+
+#include "lm/config.hh"
+#include "lm/read_arpa.hh"
+
+#include "util/file_piece.hh"
+#include "util/mmap.hh"
+#include "util/scoped.hh"
+
+#include <cstddef>
+#include <vector>
+
+#include <inttypes.h>
+
+namespace lm {
+namespace ngram {
+
+typedef enum {HASH_PROBING=0, HASH_SORTED=1, TRIE_SORTED=2} ModelType;
+
+struct FixedWidthParameters {
+ unsigned char order;
+ float probing_multiplier;
+ // What type of model is this?
+ ModelType model_type;
+ // Does the end of the file have the actual strings in the vocabulary?
+ bool has_vocabulary;
+};
+
+struct Parameters {
+ FixedWidthParameters fixed;
+ std::vector<uint64_t> counts;
+};
+
+struct Backing {
+ // File behind memory, if any.
+ util::scoped_fd file;
+ // Raw block of memory backing the language model data structures
+ util::scoped_memory memory;
+};
+
+namespace detail {
+
+bool IsBinaryFormat(int fd);
+
+void ReadHeader(int fd, Parameters &params);
+
+void MatchCheck(ModelType model_type, const Parameters &params);
+
+uint8_t *SetupBinary(const Config &config, const Parameters &params, std::size_t memory_size, Backing &backing);
+
+uint8_t *SetupZeroed(const Config &config, ModelType model_type, const std::vector<uint64_t> &counts, std::size_t memory_size, Backing &backing);
+
+void ComplainAboutARPA(const Config &config, ModelType model_type);
+
+} // namespace detail
+
+bool RecognizeBinary(const char *file, ModelType &recognized);
+
+template <class To> void LoadLM(const char *file, const Config &config, To &to) {
+ Backing &backing = to.MutableBacking();
+ backing.file.reset(util::OpenReadOrThrow(file));
+
+ Parameters params;
+
+ try {
+ if (detail::IsBinaryFormat(backing.file.get())) {
+ detail::ReadHeader(backing.file.get(), params);
+ detail::MatchCheck(To::kModelType, params);
+ std::size_t memory_size = To::Size(params.counts, config);
+ uint8_t *start = detail::SetupBinary(config, params, memory_size, backing);
+ to.InitializeFromBinary(start, params, config, backing.file.get());
+ } else {
+ detail::ComplainAboutARPA(config, To::kModelType);
+ util::FilePiece f(backing.file.release(), file, config.messages);
+ ReadARPACounts(f, params.counts);
+ std::size_t memory_size = To::Size(params.counts, config);
+ uint8_t *start = detail::SetupZeroed(config, To::kModelType, params.counts, memory_size, backing);
+
+ to.InitializeFromARPA(file, f, start, params, config);
+ }
+ } catch (util::Exception &e) {
+ e << " in file " << file;
+ throw;
+ }
+
+}
+
+} // namespace ngram
+} // namespace lm
+#endif // LM_BINARY_FORMAT__
diff --git a/klm/lm/lm_exception.hh b/klm/lm/lm_exception.hh
new file mode 100644
index 00000000..1216c4c7
--- /dev/null
+++ b/klm/lm/lm_exception.hh
@@ -0,0 +1,42 @@
+#ifndef LM_LM_EXCEPTION__
+#define LM_LM_EXCEPTION__
+
+// Named to avoid conflict with util/exception.hh.
+
+#include "util/exception.hh"
+#include "util/string_piece.hh"
+
+#include <exception>
+#include <string>
+
+namespace lm {
+
+class LoadException : public util::Exception {
+ public:
+ virtual ~LoadException() throw();
+
+ protected:
+ LoadException() throw();
+};
+
+class VocabLoadException : public LoadException {
+ public:
+ virtual ~VocabLoadException() throw();
+ VocabLoadException() throw();
+};
+
+class FormatLoadException : public LoadException {
+ public:
+ FormatLoadException() throw();
+ ~FormatLoadException() throw();
+};
+
+class SpecialWordMissingException : public VocabLoadException {
+ public:
+ explicit SpecialWordMissingException(StringPiece which) throw();
+ ~SpecialWordMissingException() throw();
+};
+
+} // namespace lm
+
+#endif // LM_LM_EXCEPTION