Interaction-side integration library for Reinforcement Learning loops: Predict, Log, [Learn,] Update
git clone --recursive https://github.com/VowpalWabbit/reinforcement_learning.git
cd reinforcement_learning- CMake 3.20+
- Ninja
cmake --preset=vcpkg-release
cmake --build --preset=vcpkg-releaseInstall the dependencies for this project with the following commands. We recommend the use of vcpkg for installing cpprestsdk and flatbuffers.
sudo apt-get install libboost-all-dev libssl-dev
vcpkg install cpprestsdk flatbuffersWhen configuring a CMake project using vcpkg dependencies, we must provide the full path to the vcpkg.cmake toolchain file.
# Configure
cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=</path/to/vcpkg>/scripts/buildsystems/vcpkg.cmake
# Build
cmake --build build -j `nproc`
# Test
cmake --build build --target rltest -j `nproc`
cmake --build build --target testMacOS dependencies can be managed through homebrew.
brew install cpprestsdk flatbuffers opensslIn order to build using homebrew dependencies, you must invoke cmake this way:
cmake -S . -B build -DOPENSSL_ROOT_DIR=`brew --prefix openssl` -DOPENSSL_LIBRARIES=`brew --prefix openssl`/lib
cmake --build build --target all -j 4Dependencies on Windows should be managed using vcpkg.
vcpkg install --triplet x64-windows zlib boost-system boost-program-options boost-test boost-align boost-foreach boost-math boost-uuid cpprestsdk flatbuffers opensslIf needed, add the flatbuffers executables to your PATH: <vcpkg_root>\installed\x64-windows\tools\flatbuffers
Open the project directory in Visual Studio. Building the library can be easily done in the GUI.
- Edit CMake command line settings with
Project > CMake Settings for <project name> - Run CMake configuration with
Project > Configure Cache. UseProject > Delete Cache and Reconfigureto force a full reconfiguration starting from a clean working directory. - Compile with
Build > Build All - Run tests with
Test > Run CTests for <project name>
This procedure has been verified to work well in Visual Studio 2022.
Alternatively, CMake configuration can be done in the command line.
cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=<vcpkg_root>\scripts\buildsystems\vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows -A x64 -G "Visual Studio 16 2019"
rem Generates a solution you can open and use in Visual Studio
.\build\reinforcement_learning.slnSet VcpkgIntegration environment variable to vcpkg.targets file on your machine. Example:
VcpkgIntegration=c:\s\vcpkg\scripts\buildsystems\msbuild\vcpkg.targets
Open reinforcement_learning.sln in Visual Studio. Build Release or Debug x64 configuration.
If you get an error similar to the following on MacOS when running cmake .., then you may be able to fix it by supplying the OpenSSL path to CMake.
Make Error at /usr/local/Cellar/cmake/3.14.4/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:137 (message):
Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the
system variable OPENSSL_ROOT_DIR (missing: OPENSSL_INCLUDE_DIR)
Call Stack (most recent call first):
/usr/local/Cellar/cmake/3.14.4/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:378 (_FPHSA_FAILURE_MESSAGE)
/usr/local/Cellar/cmake/3.14.4/share/cmake/Modules/FindOpenSSL.cmake:413 (find_package_handle_standard_args)
/usr/local/Cellar/cmake/3.14.4/share/cmake/Modules/CMakeFindDependencyMacro.cmake:48 (find_package)
/usr/local/lib/cpprestsdk/cpprestsdk-config.cmake:11 (find_dependency)
CMakeLists.txt:9 (find_package)
This can be fixed by invoking CMake similar to the following:
cmake -DOPENSSL_ROOT_DIR=`brew --prefix openssl` -DOPENSSL_LIBRARIES=`brew --prefix openssl`/lib ..Installing cpprestsdk on Ubuntu18.04 using apt-get may result in cmake failing with:
CMake Error at CMakeLists.txt:9 (find_package):
By not providing "Findcpprestsdk.cmake" in CMAKE_MODULE_PATH this project
has asked CMake to find a package configuration file provided by
"cpprestsdk", but CMake did not find one.
Could not find a package configuration file provided by "cpprestsdk" with
any of the following names:
cpprestsdkConfig.cmake
cpprestsdk-config.cmake
Add the installation prefix of "cpprestsdk" to CMAKE_PREFIX_PATH or set
"cpprestsdk_DIR" to a directory containing one of the above files. If
"cpprestsdk" provides a separate development package or SDK, be sure it has
been installed.
The workaround is to specify where to search
cmake .. -DCMAKE_PREFIX_PATH=/usr/lib/x86_64-linux-gnu/cmake