The project recognises predefined ententes from predefined questions.
Install cmake on Linux
apt-get install cmakeInstall cmake on Macintosh
brew install cmakeInstall cmake on Windows Follow the link (https://cmake.org/download/)
Creating the build directory
mkdir build
cd buildBuilding 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)
ctestRunning the specific google test (inside the build folder)
cd test/state_machine
./StateMachineTestsor
cd test/state_machine_generator
./StateMachineGeneratorTests