Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.4 KB

README.md

File metadata and controls

37 lines (23 loc) · 1.4 KB

Named Entity Recognition with Kubeflow and Keras

Now officially part of Kubeflow examples https://github.com/kubeflow/examples 🎉

This example demonstrates how you can use Kubeflow to train and deploy a Keras model with a custom prediction routine.

Goals

  • Demonstrate how to use Keras only models
  • Demonstrate how to train a Named Entity Recognition model
  • Demonstrate how to deploy a Keras model to AI Platform
  • Demonstrate how to use a custom prediction routine
  • Demonstrate how to use Kubeflow metrics
  • Demonstrate how to use Kubeflow visualizations

What is Named Entity Recognition

Named Entity Recognition is a word classification problem, which extract data called entities from text.

solution

Usage

  1. Setup Kubeflow and clone repository
  2. Build the pipeline components
  3. Upload the dataset
  4. Custom prediction routine
  5. Run the pipeline
  6. Monitor the training
  7. Predict

Model

Bi-LSTM (Bidirectional long Short term memory) a type of RNN (Recurrent Neural Network).