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.

Month: October 2021

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…

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

Figma Plugins

  Unsplash: Unsplash is a stock photography website that created a Figma plugin. It allows you to choose beautiful, royalty-free images submitted by the public community. Palette: This plugin gives you palette colors that…

Back to top