All Projects → mindsdb → mindsdb-examples

mindsdb / mindsdb-examples

Licence: MIT license
Examples for usage of Mindsdb https://www.mindsdb.com/

Projects that are alternatives of or similar to mindsdb-examples

Nottingham Dataset
Cleaned version of the Nottingham dataset
Stars: ✭ 94 (+276%)
Mutual labels:  ml, datasets
Hub
Dataset format for AI. Build, manage, & visualize datasets for deep learning. Stream data real-time to PyTorch/TensorFlow & version-control it. https://activeloop.ai
Stars: ✭ 4,003 (+15912%)
Mutual labels:  ml, datasets
Cleora
Cleora AI is a general-purpose model for efficient, scalable learning of stable and inductive entity embeddings for heterogeneous relational data.
Stars: ✭ 303 (+1112%)
Mutual labels:  ml, datasets
Codesearchnet
Datasets, tools, and benchmarks for representation learning of code.
Stars: ✭ 1,378 (+5412%)
Mutual labels:  ml, datasets
COVID-Net
Launched in March 2020 in response to the coronavirus disease 2019 (COVID-19) pandemic, COVID-Net is a global open source, open access initiative dedicated to accelerating advancement in machine learning to aid front-line healthcare workers and clinical institutions around the world fighting the continuing pandemic. Towards this goal, our global…
Stars: ✭ 41 (+64%)
Mutual labels:  ml, datasets
rs datasets
Tool for autodownloading recommendation systems datasets
Stars: ✭ 22 (-12%)
Mutual labels:  ml, datasets
mindsdb server
MindsDB server allows you to consume and expose MindsDB workflows, through http.
Stars: ✭ 3 (-88%)
Mutual labels:  ml, mindsdb
industrial-ml-datasets
A curated list of datasets, publically available for machine learning research in the area of manufacturing
Stars: ✭ 45 (+80%)
Mutual labels:  ml, datasets
DiscEval
Discourse Based Evaluation of Language Understanding
Stars: ✭ 18 (-28%)
Mutual labels:  datasets
azureml-cheatsheets
Azure Machine Learning Cheat Sheets
Stars: ✭ 23 (-8%)
Mutual labels:  ml
creative-prediction
Creative Prediction with Neural Networks
Stars: ✭ 22 (-12%)
Mutual labels:  ml
torchgeo
TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data
Stars: ✭ 1,125 (+4400%)
Mutual labels:  datasets
mlflow-docker
Ready to run docker-compose configuration for ML Flow with Mysql and Minio S3
Stars: ✭ 146 (+484%)
Mutual labels:  ml
aws-experiments-comprehend-custom-classifier
How to train a custom NLP classifier with AWS Comprehend?
Stars: ✭ 25 (+0%)
Mutual labels:  ml
lukai
Luk.ai Clients - Federated Machine Learning for Everyone!
Stars: ✭ 20 (-20%)
Mutual labels:  ml
responsible-ai-toolbox
This project provides responsible AI user interfaces for Fairlearn, interpret-community, and Error Analysis, as well as foundational building blocks that they rely on.
Stars: ✭ 615 (+2360%)
Mutual labels:  ml
Thirukkural-Tamil-Dataset
திருக்குறள் by திருவள்ளுவர்.
Stars: ✭ 44 (+76%)
Mutual labels:  datasets
Spatio-Temporal-papers
This project is a collection of recent research in areas such as new infrastructure and urban computing, including white papers, academic papers, AI lab and dataset etc.
Stars: ✭ 180 (+620%)
Mutual labels:  datasets
cheatsheets-ai-fork
Cheat Sheets for deep learning and machine learning.
Stars: ✭ 21 (-16%)
Mutual labels:  ml
pmml4s
PMML scoring library for Scala
Stars: ✭ 49 (+96%)
Mutual labels:  ml

MindsDB

MindsDB Examples

Colab Discourse posts Gitter

This repository contains examples of MindsDB usage in predicting different types of data.

Installation

pip install mindsdb

or

pip install -r requirements.txt

Train

In each directory there are different types of datasets avaiable.

cd home_rentals
python3 train.py

Predict

Inside dataset directory you can find dataset with Test data. e.g benchmarks/home_rentals/dataset/home_rentals_train.csv. You can use this dataset to check the prediction accuracy.

cd benchmarks/home_rentals
python3 mindsdb_acc.py

Simple Usage

Lets make our predictions for which we will model the relationship between the three variables and rental price. e.g

Predictor(name='home_rentals').predict(when={'number_of_rooms': 3, 'number_of_bathrooms': 1, 'neighborhood' : 'south_side'})

MindsDB will automatically predict a rental price cost value given number_of_rooms, number_of_bathrooms and neighborhood parameters, e.g

  • We are 77% confident the value of "rental_price" lies between 4586 and 4960.

MindsDB Demo

Check the following tutorial, to learn more about MindsDB end-to-end.

Mindsdb Tutorial

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].