semantic-segmentation-ml-pipeline
Machine Learning Pipeline for Semantic Segmentation with TensorFlow Extended (TFX) and various GCP products
File Explorer
Download Latest Version (.zip)- cd-training-pipeline.yml
- ci.yml
- README.md
- gradio_demo_pets.ipynb
- inference_SavedModel_VertexEndpoint.ipynb
- parse_tfrecords_pets.ipynb
- parse_tfrecords_sidewalks.ipynb
- README.md
- tfx_pipeline_pets.ipynb
- tfx_pipeline_sidewalks.ipynb
- unet_training_sidewalks.ipynb
- __init__.py
- create_tfrecords.py
- create_tfrecords_pets.py
- create_tfrecords_str.py
- README.md
- requirements.txt
- app.py
- palette.txt
- README.md
- requirements.txt
- test-image1.png
- test-image2.png
- test-image3.png
- test-image4.png
- test-image5.png
- __init__.py
- common.py
- hyperparams.py
- preprocessing.py
- README.md
- signatures.py
- train.py
- unet.py
- utils.py
- __init__.py
- component.py
- component_test.py
- executor.py
- model_card.py
- model_card_template.md
- runner.py
- __init__.py
- __init__.py
- configs.py
- local_pipeline.py
- pipeline.py
- schema.pbtxt
- __init__.py
- data_validation.ipynb
- Dockerfile
- kubeflow_runner.py
- local_runner.py
- model_analysis.ipynb
- requirements.txt
- .gitignore
- LICENSE
- README.md
- requirements.txt
# Installation Guide
1. Get the code
git clone https://github.com/deep-diver/semantic-segmentation-ml-pipeline
Downloads the entire project code from GitHub to your computer.
cd semantic-segmentation-ml-pipeline
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -f training_pipeline/Dockerfile -t semantic-segmentation-ml-pipeline .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 semantic-segmentation-ml-pipeline
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Python
EasyPrerequisites
pip install -r requirements.txt
Installs the Python libraries listed in requirements.txt (or similar).
jupyter notebook
Launches Jupyter in your browser so you can open and run the notebook (.ipynb) files.
If it runs without errors and prints output in the terminal, it worked.
// repository documentation
Was this content helpful?
(0 ratings)
