Amazon SageMaker is a machine learning service that empowers data scientists to train and deploy machine learning models efficiently. It offers an integrated Jupyter authoring notebook instance for data exploration and analysis, as well as streamlined model deployment in a hosted environment, reducing reliance on software engineers.
SageMaker supports data preprocessing, post-processing, feature engineering, and model evaluation.
In this project, we will build an image segmentation model using TensorFlow on Amazon SageMaker, utilizing the UNet model architecture.
- Language:
Python
- Libraries:
TensorFlow
,Pandas
,NumPy
,Scikit-learn
,Patchify
,Matplotlib
,Segmentation Models
,Boto3
The dataset contains images of rotten apples with annotated areas of rot. These images will be used to train the model.
-
Data Loading
-
Data Preprocessing
- Image Patching
-
Model Building and Training
- Segmentation model in TensorFlow
-
Model Deployment on Amazon SageMaker
- Input: Contains the data for analysis, including images of rotten apples.
- Notebook: Contains the Jupyter notebook file for the project.
- MLPipeline: A folder with functions placed in different Python files, appropriately named. These functions are called inside the "Engine.py" file.
- Sagemaker_Deployment: Contains files related to deployment.
- requirements.txt: Lists all required libraries with respective versions. Install them using the command
pip install -r requirements.txt
. - Readme.md: Provides instructions for running the code.