Code Monkey home page Code Monkey logo

wide_deep's Introduction

Wide and Deep Learning for CTR Prediction in tensorflow

Overview

A general Wide and Deep Joint Learning Framework. Deep part can be a simple Dnn, Dnn Variants(ResDnn, DenseDnn), MultiDnn or even combine with Cnn (Dnn-Cnn).

Here, we use the wide and deep model to predict the click labels. The wide model is able to memorize interactions with data with a large number of features but not able to generalize these learned interactions on new data. The deep model generalizes well but is unable to learn exceptions within the data. The wide and deep model combines the two models and is able to generalize while learning exceptions.

The code uses the high level tf.estimator.Estimator API. This API is great for fast iteration and quickly adapting models to your own datasets without major code overhauls. It allows you to move from single-worker training to distributed training, and it makes it easy to export model binaries for prediction.

The input function for the Estimator uses tf.data.Dataset API, which creates a Dataset object. The Dataset API makes it easy to apply transformations (map, batch, shuffle, etc.) to the data. Read more here.

The code is based on the TensorFlow wide and deep tutorial.

Extensions

  1. provide very flexible feature configuration and train configuration.
  2. scalable to arbitrarily train data size in production environment.
  3. support multi value feature input (multihot).
  4. support distributed tensorflow
  5. support custom dnn network (arbitrary connections between layers) with flexible options.
  6. add BN layer; activation_fn; l1,l2 reg; weight decay lr options for training.
  7. support dnn, multidnn joint learning, even combine with cnn.
  8. support 3 types normalization for continuous features.
  9. support weight column for imbalance sample.
  10. provide tensorflow serving for tf.estimator.
  11. provide scripts to do data proprocess using pyspark (generate continuous features from category features).

Running the code

Setup

cd conf
vim feature.yaml
vim model.yaml
vim train.yaml
...

Training

You can run the code locally as follows:

cd python
python train.py

or use shell scripts as follows:

cd scripts
bash train.sh

Testing

python eval.py

or use shell scripts as follows:

bash test.sh

Distributed Training

run the code on ps as follows:

cd scripts
bash run_ps.sh

TensorBoard

Run TensorBoard to inspect the details about the graph and training progression.

tensorboard --logdir=./model/wide_deep

wide_deep's People

Contributors

lapis-hong avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.