summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--extractor/README.md9
2 files changed, 10 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index d368a3ad..d963db32 100644
--- a/.gitignore
+++ b/.gitignore
@@ -188,6 +188,7 @@ utils/small_vector_test
utils/ts
utils/weights_test
training/crf/mpi_batch_optimize
+training/crf/mpi_baum_welch
training/crf/mpi_compute_cllh
training/crf/mpi_extract_features
training/crf/mpi_extract_reachable
diff --git a/extractor/README.md b/extractor/README.md
index d0ae70ed..e1c8509e 100644
--- a/extractor/README.md
+++ b/extractor/README.md
@@ -3,3 +3,12 @@ C++ implementation of the online grammar extractor originally developed by [Adam
To run the extractor you need to:
cdec/extractor/run_extractor -a <alignment> -b <parallel_corpus> -g <grammar_output_path> < <input_sentences> > <sgm_file>
+
+To run unit tests you need first to configure cdec with the [Google Test](https://code.google.com/p/googletest/) and [Google Mock](https://code.google.com/p/googlemock/) libraries:
+
+ ./configure --with-gtest=</absolute/path/to/gtest> --with-gmock=</absolute/path/to/gmock>
+
+Then, you simply need to:
+
+ cd extractor
+ make check