The project recognises predefined ententes from predefined questions.
Install cmake on Linux
apt-get install cmake
Install cmake on Macintosh
brew install cmake
Install cmake on Windows Follow the link (https://cmake.org/download/)
Creating the build directory
mkdir build
cd build
Building the project.
cmake .. -G "Unix Makefiles"
cmake --build .
Running the Command line interface.
cd cli/intent_recognizer/
./IntentRecognizer data/state_machine_decription.csv "what is the weather like today"
Running the google test (inside the build folder)
ctest
Running the specific google test (inside the build folder)
cd test/state_machine
./StateMachineTests
or
cd test/state_machine_generator
./StateMachineGeneratorTests