Coder Social home page Coder Social logo

keras-seq2seq-example's Introduction

Keras sequence to sequence example

Very simple Keras implementation of a sequence to sequence model with several examples.

license dep1 dep2


An example of a sequence to sequence model: Encoder Decoder

Japanese postal Addresses ⇄ ZIP Code (seq2seq)

Problem explained

Based on a Japanese postal address, predict the corresponding ZIP Code.

This address 福島県会津若松市栄町2−4 corresponds to 965-0871.

The current data set (~300k samples) is composed of postal addresses, scraped from the Japanese yellow pages itp.ne.jp. One line looks like this:


Row of the data set

We extract the left part (target) and the right part (inputs) and we build a supervised learning problem.

We expect the accuracy to be very very high because finding the zip code based on the address is a deterministic function (cf. Zip codes in Japan).

Let's also mention that Google contains a big database and lookups are possible. It should give a nearly perfect accuracy.

The question is: Why do we bother building this model?

  • For the sake of learning!

  • Google does not deal with unseen addresses (permute numbers and see if Google knows about it).

  • If one or more characters are missing, Google hardly handles it. Deep learning can still make a prediction.

  • We can add noise in the addresses (such as Dropout or character replacement) and train a model on this augmented data set.

  • Also it works totally offline (nowadays, it's less important though!)


Screenshot of Google.

Training

What you need before executing the scripts

  • Keras and tensorflow installed
  • One NVIDIA GPU (>GTX1070)
  • A lot of RAM (>32GB). The vectorization is highly unoptimized.
git clone https://github.com/philipperemy/keras-seq2seq-example.git
cd keras-seq2seq-example
rm -rf *.npz *.pkl nohup.out
python3 utils.py # build the vocabulary and the characters.
python3 vectorization.py
export CUDA_VISIBLE_DEVICES=0; nohup python3 -u model.py &

Results

After a while, you should see an accuracy very close to 1.0 for both the training and the validation set.

This is what I have after the first 10 epochs:

Iteration 1
Train on 382617 samples, validate on 42513 samples
Epoch 1/10
382617/382617 [==============================] - 216s - loss: 0.8973 - acc: 0.6880 - val_loss: 0.3011 - val_acc: 0.8997
Epoch 2/10
382617/382617 [==============================] - 197s - loss: 0.1868 - acc: 0.9401 - val_loss: 0.1296 - val_acc: 0.9589
Epoch 3/10
382617/382617 [==============================] - 196s - loss: 0.0921 - acc: 0.9718 - val_loss: 0.0790 - val_acc: 0.9763
Epoch 4/10
382617/382617 [==============================] - 200s - loss: 0.0586 - acc: 0.9825 - val_loss: 0.0562 - val_acc: 0.9839
Epoch 5/10
382617/382617 [==============================] - 201s - loss: 0.0440 - acc: 0.9871 - val_loss: 0.0535 - val_acc: 0.9848
Epoch 6/10
382617/382617 [==============================] - 197s - loss: 0.0345 - acc: 0.9900 - val_loss: 0.0334 - val_acc: 0.9908
Epoch 7/10
382617/382617 [==============================] - 198s - loss: 0.0279 - acc: 0.9920 - val_loss: 0.0305 - val_acc: 0.9918
Epoch 8/10
382617/382617 [==============================] - 196s - loss: 0.0239 - acc: 0.9932 - val_loss: 0.0234 - val_acc: 0.9938
Epoch 9/10
382617/382617 [==============================] - 199s - loss: 0.0207 - acc: 0.9942 - val_loss: 0.0253 - val_acc: 0.9935
Epoch 10/10
382617/382617 [==============================] - 200s - loss: 0.0180 - acc: 0.9950 - val_loss: 0.0263 - val_acc: 0.9933

You might have to run it a second time if it gets blocked around an accuracy of 0.38 after the first epoch. I ran it several times and the accuracy on the testing set was always around 0.90 after the 1st epoch.

After 75 epochs, the accuracy is around 0.9984. So roughly 16 mistakes per 10,000 calls. Not too bad. And the loss is still decreasing!

After 199 epochs, the accuracy is around 0.9986. So roughly 14 mistakes per 10,000 calls. Almost flawless.

The script evaluates some examples once in a while. You can check the training procedure this way. - means pad. All the addresses are padded up to the length of the longest address in the dataset.

Q -------------------福島県会津若松市栄町2−4
T 965-0871
☑ 965-0871
---
Q -----------------東京都品川区西品川3丁目5−4
T 141-0033
☑ 141-0033
---
Q -------------------滋賀県愛知郡愛荘町市157
T 529-1313
☑ 529-1313
---
Q ----------------青森県つがる市木造赤根13−40
T 038-3142
☑ 038-3142
---
Q ---------------大阪府東大阪市中鴻池町1丁目6−6
T 578-0975
☑ 578-0975
---
Q ------------------東京都千代田区一番町27−4
T 102-0082
☑ 102-0082
---
Q ------------神奈川県横須賀市太田和4丁目2550−1
T 238-0311
☑ 238-0311
---
Q ------------鹿児島県南さつま市笠沙町片浦2347−6
T 897-1301
☑ 897-1301
---
Q ---------------千葉県東金市田間115−1−102
T 283-0005
☑ 283-0005
---
Q ---------------千葉県匝瑳市八日市場イ2404−1
T 289-2144
☑ 289-2144

References

keras-seq2seq-example's People

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.