Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/saikiran76/mlp

Deployable Machine Learning Project
https://github.com/saikiran76/mlp

Last synced: 3 days ago
JSON representation

Deployable Machine Learning Project

Awesome Lists containing this project

README

        

# MLP
Deployable Machine Learning Project

1) Creating Conda Environment
```
conda create -p venv python==3.7 -y
```
2) Activate your venv
```
conda activate venv

OR

conda activate venv/
```

3) Create you requirements.txt file and install the requirements
```
pip install -r requirements.txt

```

4) HEROKU CREDENTIALS

```
To set up CI/CD pipeline in heroku

1) HEROKU_EMAIL
2) HEROKU_API_KEY
3) HEROKU_APP_NAME = ml-app

```

5) BUILD DOCKER IMAGE

```
docker build -t : .
```
> Note: Image name for Docker must be lowercase

To list Docker Image
```
docker images
```

Run docker image
```\
docker run -p 5000:5000 -e PORT=5000 01c649ec0cad
```

To check running container in docker

```
docker ps
```

To stop container
```
docker stop
```