An open API service indexing awesome lists of open source software.

https://github.com/dd-se/ml-app

Predict unseen numbers with ML models trained on MNIST dataset.
https://github.com/dd-se/ml-app

opencv python scikit-learn streamlit

Last synced: about 1 year ago
JSON representation

Predict unseen numbers with ML models trained on MNIST dataset.

Awesome Lists containing this project

README

          

## Prerequisites

Before running the app, ensure Python 3.10 or higher installed.

## Installation

1. Clone the repository:

```bash
git clone https://github.com/dd-se/ml-app
cd ml-app
```

2. Create a virtual environment (optional but recommended):

```bash
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
```

3. Install the required dependencies:

```bash
pip install -r requirements.txt
```

## Running the App

1. Start the Streamlit app:

```bash
streamlit run app.py
```

2. Open your browser and navigate to the URL provided in the terminal (usually `http://localhost:8501`).