-
Viola Jones Algorithm (Face and smile detection 2022)
Table of Contents Have you ever wondered about how the square rectangles come up in handy cams and cameras, which detect your face, and some even have the…
-
How to setup Configuration files using config.ini and Python
Learn how to use configuration file like config.ini and feed a particular setting to your application using python. Understand Config parse class in python and how we can…
-
Logistic Regression
What is logistic Regression ? Logistic regression is also a supervised machine learning algorithm, that outputs the probability of a discrete outcome given an input variable. So unlike…
-
Linear Regressions
Understand the Maths behind the linear regression, work on a simple input X and how we translate that into a regression problem. Understand how we calculate the different…
-
Python Comprehension
Use python comprehension to shorten the code and use it to power your coding.
-
Loops in Python
Loops in python are very easy to write and implement. Learn how to implement While, For and Do While loops in python. How to use Else statements in…
-
Python Basics
Variables in python We can initialise variables in python using = operators. example: a = 20 _t = “apples” var34 = 67 what we cannot do is initialise…
- Conditional Statements
- configuration file
- ENUMS in RUST
- Face and smile detection
- GO Programming
- Linear Regressions
- Logistic Regression
- Loops in Python
- Machine learning
- Python Basics
- Python Comprehension
- Python Docstrings and Annotations
- Python Functions
- RAG
- RUST Programming
- RUST Tutorials
- Scope of variables in python
- setup
- Types in RUST
- Viola Jones Algorithm
- Yaml File Recipe
Explore more…
-
-
-
Viola Jones Algorithm (Face and smile detection 2022)
Table of Contents Have you ever wondered about how the square…
-
Understanding Breadth First Search in Rust: A Complete Guide.
Introduction Breadth First Search is a fundamental tree traversal algorithm that…