##HOW TO COMPILE THIS PROJECT IN WINDOWS

  • Step 0: Open cmd, and change directory to project directory. Use this command
    cd /your/project/path/SemiCRFSegmentation.
  • Step 1: Create a new directory in SemiCRFSegmentation.For example, use this command mkdir build
  • Step 2: Change your directory. Use this command cd build.
  • Step 3: Build project. Use this command
    cmake .. -DEIGEN3_DIR=/your/eigen/path -DN3LDG_DIR=/your/N3LDG/path.
  • Step 4: Then you can double click "SemiCRFSegmentation.sln" to open this project.
  • Step 5: Now you can compile this project by Visual Studio.
  • Step 6: If you want to run this project.Please open project properties and add this argument.
    -train /your/training/corpus -dev /your/development/corpus -test /your/test/corpus -option /your/option/file -l

##NOTE
Make sure you have eigen ,N3LDG, cmake and visual studio 2013 version (or newer).