© 2022 Hashnode
#numpy
I will be watching the 10-hour course from FreeCodeCamp, https://www.youtube.com/watch?v=GPVsHOlRBBI, so I want to record what I learned from it. Conda Conda is an open-source package manager made fo…
Python libraries Python is the sea of libraries you must learn. There are lots of python libraries nowadays on the internet. Following are some important libraries. TensorFlow Scikit-Learn Numpy Kera…
One of the first lesson of Python is that in Python we have: tuple, list and dictionary. While other libraries "array" is the most popular way to arrange a list of objects, integer, string, etc, etc, etc.... in Python we say that is a list,…
Why are you still using python lists when numpy arrays can accomplish the job faster? :o In this guide, we will cover: Difference Between Python Lists and Numpy Arrays Creating Arrays Numpy Data Type…
Define The Project We're building a simulation from the scratch in Pygame to model vehicle movement through a traffic intersection with timed traffic signals. It has a four-way traffic intersection …
Problem domain According to a data sample we took from Greater Amman Municipality, the data clearly confirmed the huge problem of traffic we face everyday, especially in peak hours. This problem is pa…
A stackoverflow user asked this question: If I have list=[1,2,3] and I want to add 1 to each element to get the output [2,3,4], how would I do that? I assume I would use a for loop but not sure exact…
💡Why Numpy ? 1️⃣ Numerical Operations are faster than normal python lists 2️⃣ Also known as Array Oriented Computing 3️⃣ Unlike lists, Numpy Array elements should be of same data type 4️⃣ package for creating Multi-Dimension Arrays…
During week 2 of Machine Learning Course by Andrew Ng we are given an exercise to implement linear regression. Which was divided into two parts the first part was done in my last post which was not ef…
Machine Learning: Machine learning is turning things (data) into numbers and finding patterns in those numbers. We can use ML for literally anything as long as you can convert it into numbers and program it to find patterns. Literally, it c…