├── .gitignore ├── .idea ├── dictionaries │ └── lapis_hong.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ └── train.xml ├── vcs.xml ├── wide_deep.iml └── workspace.xml ├── README.md ├── conf ├── README.md ├── avazu │ ├── feat_mean_std.txt │ ├── feat_val_cnt.txt │ ├── feature.yaml │ ├── schema.yaml │ └── train.yaml └── criteo │ ├── feat_mean_std.txt │ ├── feat_val_cnt.txt │ ├── feature.yaml │ ├── schema.yaml │ └── train.yaml ├── data ├── avazu │ ├── dev.csv │ ├── test.csv │ └── train.csv └── criteo │ ├── dev.csv │ ├── test.csv │ └── train.csv ├── requirements.txt ├── scripts ├── cal_feat_val_cnt.sh ├── cal_mean_std.sh ├── ps.sh ├── rsync.sh ├── sample.py ├── sample.sh ├── split.py ├── test.sh ├── train.sh ├── update_feature_conf.py └── update_feature_conf.sh ├── test.py ├── train.py └── wide_resdnn ├── __init__.py ├── build_estimator.py ├── dataset.py ├── dnn.py ├── joint.py ├── linear.py ├── read_conf.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/dictionaries/lapis_hong.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/.idea/dictionaries/lapis_hong.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/train.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/.idea/runConfigurations/train.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/wide_deep.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/.idea/wide_deep.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/README.md -------------------------------------------------------------------------------- /conf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/conf/README.md -------------------------------------------------------------------------------- /conf/avazu/feat_mean_std.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/conf/avazu/feat_mean_std.txt -------------------------------------------------------------------------------- /conf/avazu/feat_val_cnt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/conf/avazu/feat_val_cnt.txt -------------------------------------------------------------------------------- /conf/avazu/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/conf/avazu/feature.yaml -------------------------------------------------------------------------------- /conf/avazu/schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/conf/avazu/schema.yaml -------------------------------------------------------------------------------- /conf/avazu/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/conf/avazu/train.yaml -------------------------------------------------------------------------------- /conf/criteo/feat_mean_std.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/conf/criteo/feat_mean_std.txt -------------------------------------------------------------------------------- /conf/criteo/feat_val_cnt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/conf/criteo/feat_val_cnt.txt -------------------------------------------------------------------------------- /conf/criteo/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/conf/criteo/feature.yaml -------------------------------------------------------------------------------- /conf/criteo/schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/conf/criteo/schema.yaml -------------------------------------------------------------------------------- /conf/criteo/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/conf/criteo/train.yaml -------------------------------------------------------------------------------- /data/avazu/dev.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/data/avazu/dev.csv -------------------------------------------------------------------------------- /data/avazu/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/data/avazu/test.csv -------------------------------------------------------------------------------- /data/avazu/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/data/avazu/train.csv -------------------------------------------------------------------------------- /data/criteo/dev.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/data/criteo/dev.csv -------------------------------------------------------------------------------- /data/criteo/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/data/criteo/test.csv -------------------------------------------------------------------------------- /data/criteo/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/data/criteo/train.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow >=1.10 2 | numpy 3 | pyyaml 4 | -------------------------------------------------------------------------------- /scripts/cal_feat_val_cnt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/scripts/cal_feat_val_cnt.sh -------------------------------------------------------------------------------- /scripts/cal_mean_std.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/scripts/cal_mean_std.sh -------------------------------------------------------------------------------- /scripts/ps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/scripts/ps.sh -------------------------------------------------------------------------------- /scripts/rsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/scripts/rsync.sh -------------------------------------------------------------------------------- /scripts/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/scripts/sample.py -------------------------------------------------------------------------------- /scripts/sample.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | shuf $1 -o $2 -n $3 -------------------------------------------------------------------------------- /scripts/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/scripts/split.py -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/scripts/train.sh -------------------------------------------------------------------------------- /scripts/update_feature_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/scripts/update_feature_conf.py -------------------------------------------------------------------------------- /scripts/update_feature_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/scripts/update_feature_conf.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/train.py -------------------------------------------------------------------------------- /wide_resdnn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/wide_resdnn/__init__.py -------------------------------------------------------------------------------- /wide_resdnn/build_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/wide_resdnn/build_estimator.py -------------------------------------------------------------------------------- /wide_resdnn/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/wide_resdnn/dataset.py -------------------------------------------------------------------------------- /wide_resdnn/dnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/wide_resdnn/dnn.py -------------------------------------------------------------------------------- /wide_resdnn/joint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/wide_resdnn/joint.py -------------------------------------------------------------------------------- /wide_resdnn/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/wide_resdnn/linear.py -------------------------------------------------------------------------------- /wide_resdnn/read_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/wide_resdnn/read_conf.py -------------------------------------------------------------------------------- /wide_resdnn/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapis-Hong/Wide-ResDNN/HEAD/wide_resdnn/util.py --------------------------------------------------------------------------------