├── .idea ├── misc.xml ├── modules.xml ├── vcs.xml ├── wide_deep.iml └── workspace.xml ├── README.md ├── __init__.py ├── census_input.csv ├── data_download.py ├── wide_deep.py └── wide_deep_predict.py /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshutoshDongare/Tensorflow-Wide-Deep-Local-Prediction/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshutoshDongare/Tensorflow-Wide-Deep-Local-Prediction/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshutoshDongare/Tensorflow-Wide-Deep-Local-Prediction/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/wide_deep.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshutoshDongare/Tensorflow-Wide-Deep-Local-Prediction/HEAD/.idea/wide_deep.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshutoshDongare/Tensorflow-Wide-Deep-Local-Prediction/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshutoshDongare/Tensorflow-Wide-Deep-Local-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /census_input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshutoshDongare/Tensorflow-Wide-Deep-Local-Prediction/HEAD/census_input.csv -------------------------------------------------------------------------------- /data_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshutoshDongare/Tensorflow-Wide-Deep-Local-Prediction/HEAD/data_download.py -------------------------------------------------------------------------------- /wide_deep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshutoshDongare/Tensorflow-Wide-Deep-Local-Prediction/HEAD/wide_deep.py -------------------------------------------------------------------------------- /wide_deep_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshutoshDongare/Tensorflow-Wide-Deep-Local-Prediction/HEAD/wide_deep_predict.py --------------------------------------------------------------------------------