diff --git a/.gitignore b/.gitignore index bf09089..e39a014 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .Trash-0 __pycache__ .ipynb_checkpoints +.DS_Store diff --git a/Readme.md b/Readme.md index c1750a7..6b89fe3 100644 --- a/Readme.md +++ b/Readme.md @@ -1,7 +1,35 @@ # Introduction +Building an AI system is a careful process of reverse-engineering human traits +and capabilities in a machine[^1]: +- Machine Learning: ML teaches a machine how to make inferences and decisions +based on past experience. It identifies patterns and analyses past data to infer +the meaning of these data points to reach a possible conclusion without having +to involve human experience. + +- Deep Learning: Deep Learning is an ML technique. It teaches a machine to process inputs through layers in order to classify, infer and predict the outcome. + +- Neural Networks: Neural Networks work on similar principles to Human Neural cells. They are a series of algorithms that captures the relationship between various underlying variables and processes the data as a human brain does. + +- Natural Language Processing: NLP is the science of reading, understanding, and interpreting a language by a machine. Once a machine understands what the user intends to communicate, it responds accordingly. + +- Computer Vision: Computer vision algorithms try to understand an image by breaking down an image and studying different parts of the object. This helps the machine classify and learn from a set of images to make a better output decision based on previous observations. + +- Cognitive Computing: Cognitive computing algorithms try to mimic a human brain by analyzing text/speech/images/objects in a manner that a human does and tries to give the desired output. Also, take up applications of artificial intelligence courses for free. + +![](aiVsML.png) + +![](diff.png) + + # Sillabus +1. Introduction to Python programming and Google Colab +2. A Landscape to machine learning: learning from real data +3. Linear and Logistic Regressors +4. Artificial Neural Networks + + # Introduction to python # Landscape to machine learning @@ -11,3 +39,8 @@ # Logistic Regressor # Artificial Neural Network + + +by Gerardo Marx June 2023 + +[^1]: https://www.mygreatlearning.com/blog/what-is-artificial- intelligence/ diff --git a/aiVsML.png b/aiVsML.png new file mode 100644 index 0000000..baaf969 Binary files /dev/null and b/aiVsML.png differ diff --git a/diff.png b/diff.png new file mode 100644 index 0000000..2042ad3 Binary files /dev/null and b/diff.png differ diff --git a/slides/aii.pdf b/slides/aii.pdf new file mode 100644 index 0000000..7e2f347 Binary files /dev/null and b/slides/aii.pdf differ