Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 927 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 927 Bytes

Color-2-pH-Value

License

This project offers a web server and a model that transforms a measurement based on the pH color scale to a reliable value of pH using Machine Learning. The work done here is based on ygarg704/ph-value-recognition-based-on-rgb-color with some improvements on the model building and the web UI/UX.

Prerequisites

  • Python 3.8 or later
  • Venv or conda

Setup

First you need to setup your python virtual environment. If you are using venv use the command as follows:

# Create virtual environment
python -m venv color_2_ph_value

# Activate your virtual environment
source ./color_2_ph_value/bin/activate

Then you need to install the required libraries using

pip install -r requirements.txt