Skip to content

Latest commit

 

History

History
105 lines (79 loc) · 3.17 KB

readme.md

File metadata and controls

105 lines (79 loc) · 3.17 KB

Prototype your data sceince projects easily with Streamlit and FastAPI

The goal of thos project is to enable a user to easily preprocess data, train and test an ML model via a web interface.
The data is provisioned in real-time via REST API and by means of deploying the FIWARE Context Broker.

The use case of this project is water potability classification based on water metrics.

Overview

This is a simple web interface which showcases the prediction phase:

Streamlit_App

Frontend app with Streamlit

The web app is composed of multiple tabs/interfaces that achieve the different Machine Learning steps manually by the user, relying on the pre-built UI components (e.g for data pre-processing, for configuring the ML model parameters, training,...)

You can see the app in the browser using this URL: http://localhost:8501/

Backend app with FASTAPI

FastAPI is a python web framework which I used to implement the APIs for this web application.

You could check the documentation of the APIs by visiting this link: http://localhost:8000/docs

Running the app with Docker-compose

To package the whole solution which uses multiple images/containers, I used Docker Compose.

Since we have multiple containers communcating with each other, I created a bridge network called AIservice.

First create the network AIService by running this command:

"docker network create AIservice"

Run the whole application by executing this command:

"docker-compose up -d --build"

Dataset to test application

To test this application, the dataset which should be uploaded should follow the same column names as this sample dataset under streamlit-app/storage/data.csv

Inference

When you navigate to the prediction tab, you have to first create an entity at the Context Broker by sending a POST request at the "/ngsi-ld/v1/entities" endpoint.

The ID here is what we need to do the prediction through the UI, which is in this example urn:ngsi-ld:WaterPotabilityMetrics:001.

curl -v --location --request POST 'http://localhost:1027/ngsi-ld/v1/entities' \
--header 'Content-Type: application/json' \
--data-raw '{
    "id": "urn:ngsi-ld:WaterPotabilityMetrics:001",
    "type": "WaterPotabilityMetrics",
    "Ph":{
    "type":"Property",
    "value":12.716080
},
"Hardness":{
    "type":"Property",
    "value":64.8904554713363
},
"Solids":{
    "type":"Property",
    "value":10791.318980747023
},
"Chloramines":{
    "type":"Property",
    "value":1191.318980747023
},
"Sulfate":{
    "type":"Property",
    "value":248.51644134980336
},
"Conductivity":{
    "type":"Property",
    "value":564.3086541722439
},
"Organic_carbon":{
    "type":"Property",
    "value":10.3797830780847
},
"Trihalomethanes":{
    "type":"Property",
    "value":9.3797830780847
},
"Turbidity":{
    "type":"Property",
    "value":2.8631353806316407
},
"Potability":{
    "type":"Property",
    "value":"False"
}
}'

To Querry the Context Broker and verify that the entity is created, run this command in the terminal:

curl --location --request GET 'localhost:1027/ngsi-ld/v1/entities/urn:ngsi-ld:WaterPotabilityMetrics:001'