Skip to content

Latest commit

 

History

History
 
 

ML - TensorFlow Binary Classification

TensorFlow Binary Classification Of Breast Cancer Condition

This StreamSets Data Collector pipeline is designed to load a pre-trained TensorFlow model to classify cancer condition as either benign or malignant.

Prerequisites

Setup

[
  {
    "key": "INPUT_DATA_LOCATION",
    "value": ""
  },
  {
    "key": "INPUT_DATA_FILE",
    "value": ""
  },
  {
    "key": "KAFKA_TOPIC_BENIGN",
    "value": ""
  },
  {
    "key": "KAFKA_TOPIC_MALIGNANT",
    "value": ""
  },
  {
    "key": "KAFKA_BROKER_URI",
    "value": ""
  },
  {
    "key": "TF_MODEL_LOCATION",
    "value": ""
  }
]

These pipeline parameters refer to the locations of source dataset, the TensorFlow model, Kafka topics as well as Kafka broker URI.

Technical Details

For techincal information and detailed explanation of this use case, read this blog.