├── LICENSE ├── Makefile ├── README.md ├── bin └── .gitignore ├── fm_predict.cpp ├── fm_train.cpp ├── model_bin_tool.cpp └── src ├── FTRL ├── ftrl_model.h ├── ftrl_predictor.h ├── ftrl_trainer.h ├── model_bin_file.h └── predict_model.h ├── Frame ├── Makefile ├── pc_frame.cpp ├── pc_frame.h ├── pc_task.h ├── test_main.cpp └── test_task.h ├── Lock └── lock_pool.h ├── Mem ├── mem_pool.h └── my_allocator.h ├── Sample └── fm_sample.h └── Utils ├── utils.cpp └── utils.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/bin/.gitignore -------------------------------------------------------------------------------- /fm_predict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/fm_predict.cpp -------------------------------------------------------------------------------- /fm_train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/fm_train.cpp -------------------------------------------------------------------------------- /model_bin_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/model_bin_tool.cpp -------------------------------------------------------------------------------- /src/FTRL/ftrl_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/FTRL/ftrl_model.h -------------------------------------------------------------------------------- /src/FTRL/ftrl_predictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/FTRL/ftrl_predictor.h -------------------------------------------------------------------------------- /src/FTRL/ftrl_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/FTRL/ftrl_trainer.h -------------------------------------------------------------------------------- /src/FTRL/model_bin_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/FTRL/model_bin_file.h -------------------------------------------------------------------------------- /src/FTRL/predict_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/FTRL/predict_model.h -------------------------------------------------------------------------------- /src/Frame/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/Frame/Makefile -------------------------------------------------------------------------------- /src/Frame/pc_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/Frame/pc_frame.cpp -------------------------------------------------------------------------------- /src/Frame/pc_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/Frame/pc_frame.h -------------------------------------------------------------------------------- /src/Frame/pc_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/Frame/pc_task.h -------------------------------------------------------------------------------- /src/Frame/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/Frame/test_main.cpp -------------------------------------------------------------------------------- /src/Frame/test_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/Frame/test_task.h -------------------------------------------------------------------------------- /src/Lock/lock_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/Lock/lock_pool.h -------------------------------------------------------------------------------- /src/Mem/mem_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/Mem/mem_pool.h -------------------------------------------------------------------------------- /src/Mem/my_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/Mem/my_allocator.h -------------------------------------------------------------------------------- /src/Sample/fm_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/Sample/fm_sample.h -------------------------------------------------------------------------------- /src/Utils/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/Utils/utils.cpp -------------------------------------------------------------------------------- /src/Utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastellanZhang/alphaFM/HEAD/src/Utils/utils.h --------------------------------------------------------------------------------