calculating distance for four features
if you want to calculate the distance between 4 features coordinates, you do it like that : A (1,2,5,1) B (7, 1, 3, 0) import math dist = math.sqrt((7-1)**2+(1-2)**2+(3-5)**2+(0-1)**2) print(dist) >>> 6.4807 …
machine learning using python
if you want to calculate the distance between 4 features coordinates, you do it like that : A (1,2,5,1) B (7, 1, 3, 0) import math dist = math.sqrt((7-1)**2+(1-2)**2+(3-5)**2+(0-1)**2) print(dist) >>> 6.4807 …
machine learning is becoming crucial to add to your backpack. this post attempts to show a basic application of machine learning. we need to determine whether some cutlery items are bowls or mugs or plates. this is a practical demonstration of applied theory machine learning is just applied maths from start to finish, machine learning …
home machine learning project : identifying cutlery items Read More »