DEV Community

Cover image for MindsDB: Your introduction to creating machine learning predictive models.
Chandre Van Der Westhuizen
Chandre Van Der Westhuizen

Posted on

MindsDB: Your introduction to creating machine learning predictive models.

Community Author: Chandre Tosca Van Der Westhuizen

Making Data Science Easier-

ML Classification has gotten easier with MindsDB. Has the data science world been missing out?

Many think AI/machine learning is complicated. Turns out not all frameworks are that complex.

MindsDB's Classification model makes it easy to predict outcomes and can add value to many industries. We will focus on something as simple as mushrooms to showcase the ingenuity of this In-Database Machine Learning platform.

Mushrooms

Dataset: Mushrooms

Mushrooms are a fleshy sporocarp of fungi which can either be edible or poisonous. It's usage dates back centuries with ancient Greek, Chinese and African cultures. They can have high nutritional value and medicinal properties which provides great health benefits. On the other side,some of these fungi can be toxic and consuming the wrong mushroom can have deadly consequences. It is important for industries across the world, like the food and health sector, to identify which type of mushrooms are edible and which are poisonous.

We will explore how MindsDB's machine learning predictive model can make it easier classifying mushrooms and predicting which is safe to consume and which can make you ill.

Pre-requisites

For this tutorial, ensure you have access to docker Docker. A docker-compose.yml file will be provided to get you started quickly.

To ensure you can complete all the steps, make sure you have access to the following tools:

  1. A MindsDB instance. Check out the installation guide for Docker or PyPi. You can also use MindsDB Cloud.
  2. Downloaded the dataset. You can get it from Kaggle
  3. Optional: Access to ngrok. You can check the installation details at the ngrok website.
  4. Optional- Recommended : Visual Studio Code

Docker

  1. Create a new project directory named e.g. mindsdb-tutorial
  2. Inside your project directory: 2.1 Create a new file named docker-compose.yml.

Open the docker-compose.yml file with any text-editor, copy the following and save.


version: '3.5'

services:
  postgres:
    container_name: mindsdb_postgres_mushrooms
    image: postgres
    environment:
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: changeme
      POSTGRES_DB: Mushrooms
      PGDATA: /data/postgres
    volumes:
    # persist data storage in a docker container
      - mindsdb_postgres_mushrooms:/data/postgres
    ports:
      - "5433:5432"
    network_mode: bridge
    # restart: none


volumes:
    mindsdb_postgres_mushrooms:

Enter fullscreen mode Exit fullscreen mode

This compose stack features both a Postgres database running on ports 5433 and 5432 respectively. We will install Python libraries and use python code in a Jupyter Notebook to create a Postgress database and load data into it in Visual Studio.
For the database to connect to MindsDB we will use a tunneling program ngrok to allow the remote database connection without exposing your public IP.

Data will be loaded from a csv file using the import tool.
Docker Volumes are used for persistent storage of data.

To run, open a terminal in the project folder and run docker-compose up -d .
If you do not have the Docker images locally, it will first download them from docker hub and might take.

Creating a database

The goal of creating a database in Visual Studio is to simplify the method used. We have two options- to create a python file with the relevant code in it or create a Jupyter Notebook. For the purpose of this exercise we are going to use Jupyter Notebook which will help execute the code.

We will use the libraries sqlalchemy and pandas to create the database and load data into tables.

To install the required Python libraries In a terminal, run

pip3 install sqlalchemy pandas
Enter fullscreen mode Exit fullscreen mode

Please change the pip command if required for your system i.e. pip or python3 -m pip

To install psycopg, run

pip3 install psycopg
Enter fullscreen mode Exit fullscreen mode

In Visual studio, create a new file with the extension '.ipynb' to create a Jupyter Notebook. Alternatively you can open a text editor and save the following code as a python file.


from sqlalchemy import create_engine
import pandas as pd
# engine = create_engine('sqlite:///college.db', echo = True)
username='postgres'
password='changeme'
db='Mushrooms'
tablename='mushrooms'

# database connection
engine = create_engine(
    f"postgresql+psycopg2://{username}:{password}@localhost:5433/{db}",
    isolation_level="SERIALIZABLE",
)

file_url = './mushrooms.csv'
df = pd.read_csv(file_url)

df.columns

Enter fullscreen mode Exit fullscreen mode

Drop rows with nul values and and store data to table.


df.dropna(inplace=True)

df.to_sql(tablename,con=engine, if_exists='replace', index=False)

Enter fullscreen mode Exit fullscreen mode

If you are using a python file,open a terminal and execute python3 to run the code. If you are using Jupytor Notebook you can run the code by selecting the play buttons next to the cell blocks. Select python3 when prompted.

The dataset consists of the following information:

Attribute Information: (classes: edible=e, poisonous=p)

*cap-shape: bell=b,conical=c,convex=x,flat=f, knobbed=k,sunken=s
*cap-surface: fibrous=f,grooves=g,scaly=y,smooth=s
*cap-color: brown=n,buff=b,cinnamon=c,gray=g,green=r,pink=p,purple=u,red=e,white=w,yellow=y
*bruises: bruises=t,no=f
*odor: almond=a,anise=l,creosote=c,fishy=y,foul=f,musty=m,none=n,pungent=p,spicy=s
*gill-attachment: attached=a,descending=d,free=f,notched=n
*gill-spacing: close=c,crowded=w,distant=d
*gill-size: broad=b,narrow=n
*gill-color: black=k,brown=n,buff=b,chocolate=h,gray=g, green=r,orange=o,pink=p,purple=u,red=e,white=w,yellow=y
*stalk-shape: enlarging=e,tapering=t
*stalk-root: bulbous=b,club=c,cup=u,equal=e,rhizomorphs=z,rooted=r,missing=?
*stalk-surface-above-ring: fibrous=f,scaly=y,silky=k,smooth=s
*stalk-surface-below-ring: fibrous=f,scaly=y,silky=k,smooth=s
*stalk-color-above-ring: brown=n,buff=b,cinnamon=c,gray=g,orange=o,pink=p,red=e,white=w,yellow=y
*stalk-color-below-ring: brown=n,buff=b,cinnamon=c,gray=g,orange=o,pink=p,red=e,white=w,yellow=y
*veil-type: partial=p,universal=u
*veil-color: brown=n,orange=o,white=w,yellow=y
*ring-number: none=n,one=o,two=t
*ring-type: cobwebby=c,evanescent=e,flaring=f,large=l,none=n,pendant=p,sheathing=s,zone=z
*spore-print-color: black=k,brown=n,buff=b,chocolate=h,green=r,orange=o,purple=u,white=w,yellow=y
*population: abundant=a,clustered=c,numerous=n,scattered=s,several=v,solitary=y
*habitat: grasses=g,leaves=l,meadows=m,paths=p,urban=u,waste=w,woods=d
Enter fullscreen mode Exit fullscreen mode

Accessing the Postgres Database

To access the postgres database, add the extension Postgres Management Tool by Chris Kolkman v1.1.19 in Visual studio.

A shortcut is to select Ctrl+Shift+X and search for the management tool.

database

Connecting to the database

  1. On the sidebar of visual studio, select the icon for the Postgress explorer.
  2. Select the + button by the option POSTGRESQL EXPLORER:POSTGRESQL to add a database connection.
  3. Add the hostname of the database. >For this example, 127.0.0.1 was used.
  4. Enter the PostgreSQL user to authenticate. >For this example it is postgres.
  5. Enter the password of the PostgreSQL user.
  6. Add the port number. >For this example 5433 was used.
  7. Select the type of connection to use- use Secure Connection or Standard Connection. >For this example we used Standard Connection.
  8. Add the name of the Database to connect to. >For this example Mushrooms was used.
  9. Add the connection name.

You can test the database by navigating to the Postgres Management Tool, selecting the hostname and database dropdowns , then right click on the table name and choose between the select options to return the values.

Connecting to MindsDB Cloud

We will now connect our database to MindsDB Cloud.

First, we will run the ngrok command to establish a connection. Open a terminal and run the following command.

ngrok tcp [db-port]
Enter fullscreen mode Exit fullscreen mode

For this example the port number used is 5433.

You should see a similar output:

Session Status                online
Account                       myaccount (Plan: Free)
Version                       2.3.40
Region                        United States (us)
Web Interface                 http://127.0.0.1:4040
Forwarding                    tcp://6.tcp.ngrok.io:14789 -> localhost:5433
Enter fullscreen mode Exit fullscreen mode

The forwarded address information will be required when connecting to MindsDB's GUI. Select and copy the 'Forwarding' information, in this case it is 6.tcp.ngrok.io:14789, and keep this information for later.

For the next steps we will log into the MindsDB cloud interface. MindsDB Cloud is perfect if you are unable to install MindsDB on your device. If you are not registered yet, feel free to follow the below guide. If you have already registered, skip the next steps to connect your database.

MindsDB Studio Cloud Set Up

You can visit this link and follow the steps in registering a MindsDB Cloud account.

On the landing page, navigate to the left corner of the screen and select ADD DATABASE. Enter the required details.

Too see an example, click here.

Click Connect, you should now see your Postgres database connection in the main screen.

You are now done with connecting MindsDB to your database!

Create a predictor

Now we are ready to create our own predictor. We will start by using the MySQL API to connect to MindsDB and with a single SQL command create a predictor.

The predictor we will create will be trained to determine if a mushroom is edible or poisonous.

Using the following command, you will connect through the MySQL API to MindsDB.

Please note that the username and password to use will be the credentials you registered your MindsDB account with.

mysql -h cloud.mindsdb.com --port 3306 -u cloudusername@mail.com -p
Enter fullscreen mode Exit fullscreen mode

client

If you are successfully connected, make sure you connect to MindsDB's database.

USE mindsdb;
Enter fullscreen mode Exit fullscreen mode

Use the following query to create a predictor that will predict the target_class for the specific field parameters.

mysql>CREATE PREDICTOR mushroom_predictor
FROM Mushrooms (
    SELECT * FROM "mushrooms"
) as mushrooms_data
PREDICT class;
Enter fullscreen mode Exit fullscreen mode

After creating the predictor you should see a similar output:

Query OK, 0 rows affected (12.18 sec)
Enter fullscreen mode Exit fullscreen mode

The predictor was created successfully and has started training. To check the status of the model, use the below query.

mysql> SELECT * FROM mindsdb.predictors WHERE name='mushroom_predictor';
Enter fullscreen mode Exit fullscreen mode

After the predictor has finished training, you will see a similar output. Note that MindsDB does model testing for you automatically, so you will immediately see if the predictor is accurate enough.

+--------------------+----------+----------+---------+---------------+-----------------+-------+-------------------+------------------+
| name               | status   | accuracy | predict | update_status | mindsdb_version | error | select_data_query | training_options |
+--------------------+----------+----------+---------+---------------+-----------------+-------+-------------------+------------------+
| mushroom_predictor | complete | 1.0      | class   | up_to_date    | 2.61.0          | NULL  |                   |                  |
+--------------------+----------+----------+---------+---------------+-----------------+-------+-------------------+------------------+
1 row in set (0.61 sec)
Enter fullscreen mode Exit fullscreen mode

The predictor has completed its training, indicated by the status column, and shows the accuracy of the model.
You can revisit training new predictors to increase accuracy by changing the query to better suit the dataset i.e. omitting certain columns etc.

Good job! We have successfully created and trained a predictive model ✨

Make predictions

In this section you will learn how to make predictions using your trained model.
Now we will use the trained model to make predictions using a SQL query

Use the following query using mock data with the predictor.

SELECT class
FROM mindsdb.mushroom_predictor
WHERE when_data='{"cap-shape": "x","cap-surface": "s","cap-color": "n","bruises": "t","odor": "p","gill-attachment": "f","gill-spacing": "c","gill-size": "n","gill-color": "k","stalk-shape": "e","stalk-root": "e","stalk-surface-above-ring": "s","stalk-surface-below-ring": "s","stalk-color-above-ring": "w","stalk-color-below-ring": "w","veil-type": "p","veil-color": "w","ring-number": "o","ring-type": "p","spore-print-color": "k","population": "s","habitat": "u"}'\G
Enter fullscreen mode Exit fullscreen mode

The result:

*************************** 1. row ***************************
class: p
1 row in set (1.19 sec)
Enter fullscreen mode Exit fullscreen mode

We have successfully created and trained a model that can predict if a model is edible or poisonous.

Want to try it out for yourself? Sign up for a free MindsDB account and join our community!
Engage with MindsDB community on Slack or Github to ask questions, share and express ideas and thoughts!

For more check out other tutorials and MindsDB documentation.

Top comments (0)