├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── FTRL.Rproj ├── NAMESPACE ├── R ├── FTRL.R └── RcppExports.R ├── README.md ├── docs └── FTRL_algo.png ├── man └── FTRL.Rd ├── src ├── Makevars ├── Makevars.win ├── RcppExports.cpp └── ftrl.cpp └── tests ├── testthat.R └── testthat └── test-ftrl.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /FTRL.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/FTRL.Rproj -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/FTRL.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/R/FTRL.R -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/README.md -------------------------------------------------------------------------------- /docs/FTRL_algo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/docs/FTRL_algo.png -------------------------------------------------------------------------------- /man/FTRL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/man/FTRL.Rd -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/ftrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/src/ftrl.cpp -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-ftrl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dselivanov/FTRL/HEAD/tests/testthat/test-ftrl.R --------------------------------------------------------------------------------