├── .gitignore ├── LICENSE ├── README.md ├── code ├── lr_schedule.py ├── main.py ├── metrics.py ├── nn_module.py ├── optimizer.py ├── topk.py ├── utils.py └── xnn.py ├── doc └── Mercari_Price_Suggesion_Competition_ChenglongChen_4th_Place.pdf ├── fig └── architecture.png └── log └── hyperopt-201802230245.log /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/README.md -------------------------------------------------------------------------------- /code/lr_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/code/lr_schedule.py -------------------------------------------------------------------------------- /code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/code/main.py -------------------------------------------------------------------------------- /code/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/code/metrics.py -------------------------------------------------------------------------------- /code/nn_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/code/nn_module.py -------------------------------------------------------------------------------- /code/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/code/optimizer.py -------------------------------------------------------------------------------- /code/topk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/code/topk.py -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/code/utils.py -------------------------------------------------------------------------------- /code/xnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/code/xnn.py -------------------------------------------------------------------------------- /doc/Mercari_Price_Suggesion_Competition_ChenglongChen_4th_Place.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/doc/Mercari_Price_Suggesion_Competition_ChenglongChen_4th_Place.pdf -------------------------------------------------------------------------------- /fig/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/fig/architecture.png -------------------------------------------------------------------------------- /log/hyperopt-201802230245.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenglongChen/tensorflow-XNN/HEAD/log/hyperopt-201802230245.log --------------------------------------------------------------------------------