All Projects → IBM → MAX-Text-Summarizer

IBM / MAX-Text-Summarizer

Licence: Apache-2.0 license
Generate a summarized description of a body of text

Programming Languages

python
139335 projects - #7 most used programming language
Dockerfile
14818 projects

Projects that are alternatives of or similar to MAX-Text-Summarizer

Wgan
Tensorflow Implementation of Wasserstein GAN (and Improved version in wgan_v2)
Stars: ✭ 228 (+744.44%)
Mutual labels:  tensorflow-models
TensorFlow-Multiclass-Image-Classification-using-CNN-s
Balanced Multiclass Image Classification with TensorFlow on Python.
Stars: ✭ 57 (+111.11%)
Mutual labels:  tensorflow-models
gans-2.0
Generative Adversarial Networks in TensorFlow 2.0
Stars: ✭ 76 (+181.48%)
Mutual labels:  tensorflow-models
Open model zoo
Pre-trained Deep Learning models and demos (high quality and extremely fast)
Stars: ✭ 2,925 (+10733.33%)
Mutual labels:  tensorflow-models
Machine-Learning
🌎 I created this repository for educational purposes. It will host a number of projects as part of the process .
Stars: ✭ 38 (+40.74%)
Mutual labels:  tensorflow-models
TensorFlow
Swift high-level API for TensorFlow.
Stars: ✭ 49 (+81.48%)
Mutual labels:  tensorflow-models
Automatic Speech Recognition
🎧 Automatic Speech Recognition: DeepSpeech & Seq2Seq (TensorFlow)
Stars: ✭ 192 (+611.11%)
Mutual labels:  tensorflow-models
Awesome-Tensorflow2
基于Tensorflow2开发的优秀扩展包及项目
Stars: ✭ 45 (+66.67%)
Mutual labels:  tensorflow-models
Bitcamp-2019
Won the most innovative solution at Bitcamp 2019.🎖🎉
Stars: ✭ 15 (-44.44%)
Mutual labels:  tensorflow-models
Machine-Learning-Notebooks
15+ Machine/Deep Learning Projects in Ipython Notebooks
Stars: ✭ 66 (+144.44%)
Mutual labels:  tensorflow-models
TensorFlow-Binary-Image-Classification-using-CNN-s
Binary Image Classification in TensorFlow
Stars: ✭ 26 (-3.7%)
Mutual labels:  tensorflow-models
Portrait FCN and 3D Reconstruction
This project is to convert PortraitFCN+ (by Xiaoyong Shen) from Matlab to Tensorflow, then refine the outputs from it (converted to a trimap) using KNN and ResNet, supervised by Richard Berwick.
Stars: ✭ 61 (+125.93%)
Mutual labels:  tensorflow-models
Traffic-Light-Classification
A detailed tutorial on how to build a traffic light classifier with TensorFlow for the capstone project of Udacity's Self-Driving Car Engineer Nanodegree Program.
Stars: ✭ 110 (+307.41%)
Mutual labels:  tensorflow-models
Text Cnn Tensorflow
Convolutional Neural Networks for Sentence Classification(TextCNN) implements by TensorFlow
Stars: ✭ 232 (+759.26%)
Mutual labels:  tensorflow-models
face-detection-tflite
Face and iris detection for Python based on MediaPipe
Stars: ✭ 78 (+188.89%)
Mutual labels:  tensorflow-models
Spflow
Sum Product Flow: An Easy and Extensible Library for Sum-Product Networks
Stars: ✭ 195 (+622.22%)
Mutual labels:  tensorflow-models
Neural-Turing-Machine
TensorFlow implementation of a Neural Turing Machine
Stars: ✭ 23 (-14.81%)
Mutual labels:  tensorflow-models
nn-Meter
A DNN inference latency prediction toolkit for accurately modeling and predicting the latency on diverse edge devices.
Stars: ✭ 211 (+681.48%)
Mutual labels:  tensorflow-models
detection util scripts
TF and YOLO utility scripts
Stars: ✭ 49 (+81.48%)
Mutual labels:  tensorflow-models
Age-Gender Estimation TF-Android
Age + Gender Estimation on Android with TensorFlow Lite
Stars: ✭ 34 (+25.93%)
Mutual labels:  tensorflow-models

Build Status API demo

IBM Developer Model Asset Exchange: Text Summarizer

This repository contains code to instantiate and deploy a text summarization model. The model takes a JSON input that encapsulates some text snippets and returns a text summary that represents the key information or message in the input text. The model was trained on the CNN / Daily Mail dataset. The model has a vocabulary of approximately 200k words. The model is based on the ACL 2017 paper, Get To The Point: Summarization with Pointer-Generator Networks.

The model files are hosted on IBM Cloud Object Storage. The code in this repository deploys the model as a web service in a Docker container. This repository was developed as part of the IBM Developer Model Asset Exchange and the public API is powered by IBM Cloud.

Model Metadata

Domain Application Industry Framework Training Data Input Data Format
NLP Text Summarization General TensorFlow CNN / Daily Mail Text

References:

Licenses

Component License Link
This Repository Apache 2.0 LICENSE
Third Party Code Apache 2.0 LICENSE
Pre-Trained Model Weights Apache 2.0 LICENSE
Training Data MIT LICENSE

Pre-requisites:

  • docker: The Docker command-line interface. Follow the installation instructions for your system.
  • The minimum recommended resources for this model is 4GB Memory and 4 CPUs.
  • If you are on x86-64/AMD64, your CPU must support AVX at the minimum.

Steps

  1. Deploy from Quay
  2. Deploy on Kubernetes
  3. Run Locally

Deploy from Quay

To run the docker image, which automatically starts the model serving API, run:

$ docker run -it -p 5000:5000 quay.io/codait/max-text-summarizer

This will pull a pre-built image from the Quay.io container registry (or use an existing image if already cached locally) and run it. If you'd rather checkout and build the model locally you can follow the run locally steps below.

Deploy on Kubernetes

You can also deploy the model on Kubernetes using the latest docker image on Quay.

On your Kubernetes cluster, run the following commands:

$ kubectl apply -f https://github.com/IBM/MAX-Text-Summarizer/raw/master/max-text-summarizer.yaml

The model will be available internally at port 5000, but can also be accessed externally through the NodePort.

A more elaborate tutorial on how to deploy this MAX model to production on IBM Cloud can be found here.

Run Locally

  1. Build the Model
  2. Deploy the Model
  3. Use the Model
  4. Development
  5. Cleanup

1. Build the Model

Clone this repository locally. In a terminal, run the following command:

$ git clone https://github.com/IBM/MAX-Text-Summarizer.git

Change directory into the repository base folder:

$ cd MAX-Text-Summarizer

To build the docker image locally, run:

$ docker build -t max-text-summarizer .

All required model assets will be downloaded during the build process. Note that currently this docker image is CPU only (we will add support for GPU images later).

2. Deploy the Model

To run the docker image, which automatically starts the model serving API, run:

$ docker run -it -p 5000:5000 max-text-summarizer

3. Use the Model

The API server automatically generates an interactive Swagger documentation page. Go to http://localhost:5000 to load it. From there you can explore the API and also create test requests.

Use the model/predict endpoint to load some seed text (you can use one of the test files from the samples folder) and get predicted output from the API.

Swagger UI Screenshot

You can also test it on the command line, for example:

$ curl -d @samples/sample1.json -H "Content-Type: application/json" -XPOST http://localhost:5000/model/predict

You should see a JSON response like that below:

{
  "status": "ok",
  "summary_text": [
      ["nick gordon 's father -lrb- left and right -rrb- gave an interview about the 25-year-old fiance of bobbi kristina brown . it has been reported that gordon , 25 , has threatened suicide and has been taking xanax since . whitney houston 's daughter was found unconscious in a bathtub in january . on wednesday , access hollywood spoke exclusively to gordon 's stepfather about his son 's state of mind . "]
  ]
}

The text summarizer preserves in the output summary text some special characters such as -lrb- (representing (), -rrb- (representing )), etc. that appear in the input sample, which is excerpted from the Daily Mail dataset.

4. Development

To run the Flask API app in debug mode, edit config.py to set DEBUG = True under the application settings. You will then need to rebuild the docker image (see step 1).

5. Cleanup

To stop the Docker container, type CTRL + C in your terminal.

Resources and Contributions

If you are interested in contributing to the Model Asset Exchange project or have any queries, please follow the instructions here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].