Skip to content
This repository has been archived by the owner on Sep 7, 2022. It is now read-only.

Latest commit

 

History

History
26 lines (16 loc) · 793 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 793 Bytes

MAB

R package MAB is created to implement strategies for stationary and non-stationary multi-armed bandit problems. Various widely-used strategies and their ensembles are included in this package. This package is designed to compare different strategies in multi-armed bandit problems and help users to choose suitable strategies with suitable tuning parameters in different scenarios. This is not an official Google product.

Install the Package

MAB depends on R package emre. To install MAB package, download the package and run the following code in command line:

R CMD INSTALL FILE.PATH

Another way is to install devtools package first and then run the following code in R:

library(devtools)

install_github("google/MAB")