Predictive model with fastapi that accepts a .csv dataset. Tools: Tensorflow - Keras - Numpy - Pandas - FastApi - scikit-learn
Accuracy predict MLP 70%
Tests, deployment, MLP in progress
- Python 3.9+
- FastAPI
- Uvicorn
- Docker
- Repository cloning:
git clone https://github.com/Hallexz/Predict-models.git
- Go to the project directory:
cd Predict-models
- Installing dependencies:
pip install -r requirements.txt
- Starting the server:
uvicorn src.web_app:app --reload
- Open in browser:
uvicorn app.app:app --host 0.0.0.0 --port 8080
Docker:
docker build -t ml-app .
docker run -p 80:80 ml-app