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.

Year: 2021

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 =…

Setup Django Project

Setup: 1. Install Python on your PC 2. Create project folder as “Projects” 3. Create a virtual environment                  $ pyvenv <env-folder>                 # Or, if pyvenv is not available                 $ python3 -m venv <env-folder> If…

Back to top