From 8c3d0ea032eb703beca62ab5a04bb5bfd4679316 Mon Sep 17 00:00:00 2001 From: Paul Baltescu Date: Wed, 24 Apr 2013 14:32:48 +0100 Subject: README file for the grammar extractor. --- extractor/README.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 extractor/README.md (limited to 'extractor/README.md') diff --git a/extractor/README.md b/extractor/README.md new file mode 100644 index 00000000..d0ae70ed --- /dev/null +++ b/extractor/README.md @@ -0,0 +1,5 @@ +C++ implementation of the online grammar extractor originally developed by [Adam Lopez](http://www.cs.jhu.edu/~alopez/). + +To run the extractor you need to: + + cdec/extractor/run_extractor -a -b -g < > -- cgit v1.2.3 From 45c444b1967ffc2d5d45362b96593d79fb721c52 Mon Sep 17 00:00:00 2001 From: Paul Baltescu Date: Wed, 24 Apr 2013 14:32:48 +0100 Subject: README file for the grammar extractor. --- .gitignore | 1 + extractor/README.md | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 extractor/README.md (limited to 'extractor/README.md') 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 new file mode 100644 index 00000000..d0ae70ed --- /dev/null +++ b/extractor/README.md @@ -0,0 +1,5 @@ +C++ implementation of the online grammar extractor originally developed by [Adam Lopez](http://www.cs.jhu.edu/~alopez/). + +To run the extractor you need to: + + cdec/extractor/run_extractor -a -b -g < > -- cgit v1.2.3 From d189426a7ea56b71eb6e25ed02a7b0993cfb56a8 Mon Sep 17 00:00:00 2001 From: Paul Baltescu Date: Wed, 24 Apr 2013 17:05:34 +0100 Subject: Updated README for grammar extractor. --- extractor/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extractor/README.md') diff --git a/extractor/README.md b/extractor/README.md index e1c8509e..575f5ca5 100644 --- a/extractor/README.md +++ b/extractor/README.md @@ -4,11 +4,11 @@ To run the extractor you need to: cdec/extractor/run_extractor -a -b -g < > -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: +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= --with-gmock= Then, you simply need to: - cd extractor + cd cdec/extractor make check -- cgit v1.2.3