├── IceLR ├── SConstruct └── src │ ├── common │ ├── auc.hpp │ ├── common.hpp │ ├── model.pb.cc │ ├── model.pb.h │ ├── model.proto │ ├── timer.cpp │ └── timer.h │ ├── ffm.cpp │ ├── fm.cpp │ └── fm_model │ ├── ffm.hpp │ └── fm.hpp ├── README.md ├── doc.pdf ├── ensemble ├── ensemble.sh ├── merge.py └── stack.py ├── ins └── gen_data.py ├── ins2 └── gen_data.py ├── ins20 └── gen_data.py ├── ins3 └── gen_data.py ├── ins5 └── gen_data.py ├── ins_bag └── gen_data.py ├── license.txt ├── prepare ├── gen_cnt.py ├── gen_cnt_part.py ├── gen_filter.py ├── gen_params.py └── split_by_uid.py ├── run.py ├── run.sh ├── util.py ├── xgb.py └── xgb5 └── gen_data.py /IceLR/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/IceLR/SConstruct -------------------------------------------------------------------------------- /IceLR/src/common/auc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/IceLR/src/common/auc.hpp -------------------------------------------------------------------------------- /IceLR/src/common/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/IceLR/src/common/common.hpp -------------------------------------------------------------------------------- /IceLR/src/common/model.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/IceLR/src/common/model.pb.cc -------------------------------------------------------------------------------- /IceLR/src/common/model.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/IceLR/src/common/model.pb.h -------------------------------------------------------------------------------- /IceLR/src/common/model.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/IceLR/src/common/model.proto -------------------------------------------------------------------------------- /IceLR/src/common/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/IceLR/src/common/timer.cpp -------------------------------------------------------------------------------- /IceLR/src/common/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/IceLR/src/common/timer.h -------------------------------------------------------------------------------- /IceLR/src/ffm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/IceLR/src/ffm.cpp -------------------------------------------------------------------------------- /IceLR/src/fm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/IceLR/src/fm.cpp -------------------------------------------------------------------------------- /IceLR/src/fm_model/ffm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/IceLR/src/fm_model/ffm.hpp -------------------------------------------------------------------------------- /IceLR/src/fm_model/fm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/IceLR/src/fm_model/fm.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/README.md -------------------------------------------------------------------------------- /doc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/doc.pdf -------------------------------------------------------------------------------- /ensemble/ensemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/ensemble/ensemble.sh -------------------------------------------------------------------------------- /ensemble/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/ensemble/merge.py -------------------------------------------------------------------------------- /ensemble/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/ensemble/stack.py -------------------------------------------------------------------------------- /ins/gen_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/ins/gen_data.py -------------------------------------------------------------------------------- /ins2/gen_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/ins2/gen_data.py -------------------------------------------------------------------------------- /ins20/gen_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/ins20/gen_data.py -------------------------------------------------------------------------------- /ins3/gen_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/ins3/gen_data.py -------------------------------------------------------------------------------- /ins5/gen_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/ins5/gen_data.py -------------------------------------------------------------------------------- /ins_bag/gen_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/ins_bag/gen_data.py -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/license.txt -------------------------------------------------------------------------------- /prepare/gen_cnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/prepare/gen_cnt.py -------------------------------------------------------------------------------- /prepare/gen_cnt_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/prepare/gen_cnt_part.py -------------------------------------------------------------------------------- /prepare/gen_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/prepare/gen_filter.py -------------------------------------------------------------------------------- /prepare/gen_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/prepare/gen_params.py -------------------------------------------------------------------------------- /prepare/split_by_uid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/prepare/split_by_uid.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/run.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/run.sh -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/util.py -------------------------------------------------------------------------------- /xgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/xgb.py -------------------------------------------------------------------------------- /xgb5/gen_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gzsiceberg/kaggle-avito/HEAD/xgb5/gen_data.py --------------------------------------------------------------------------------