My Brain Cells

Easiest (and best) learning materials for anyone with a curiosity for machine learning and artificial intelligence, Deep learning, Programming, and other fun life hacks.

Category: ML|AI|DS

FastApi

FastApi

First thing first, Activate your python environment  Now, Install fastapi and uvicorn              >> pip install fastapi uvicorn  You should have an ML model file (.pkl, .model, .hd5 etc) Let…

Support Vector Machines (SVM)

  Support vector machines (SVMs) are a set of supervised learning methods used for classification, regression and outliers detection. Classification SVC, NuSVC and LinearSVC are classes capable of performing binary and multi-class classification on a dataset. >>> from sklearn import svm>>> X =…

Object Detection

Object Detection

Object detection using ImageAI, all you need to do is Install Python on your computer system Install ImageAI and its dependencies Download the Object Detection model file Run the sample codes (which is as few as 10 lines)…

  Import Packages and Build the ML model:- from sklearn.linear_model import LogisticRegression from sklearn.datasets import load_iris from sklearn.model_selection import train_test_split # Load the data Iris_data = load_iris() # Split data Xtrain, Xtest, Ytrain, Ytest…

Back to top