Some Practical program implemented in Python 3.12, can be used for AI/ML
# Matrix multiplication import numpy as np A = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) print("3x3 Matrix: A: ") print(A) B = np.array([[1, 4, 7], [2...
# Matrix multiplication import numpy as np A = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) print("3x3 Matrix: A: ") print(A) B = np.array([[1, 4, 7], [2...
AI and Data Science: Practical implementation of two Machine Learning algorithm in Python K nearest neighbour(classification-Supervised) and k-means clustering(clustering- Unsupervised machine le...
In continuation with my previous topic- matrix , here system of linear equations can be solved using Python. Let us see- Example 1: Solving two linear equations with two variables import numpy as...
Useful Matrix Operations for AI,ML and Data Science Matrix operations are fundamental in data science, machine learning, and numerical computing. They are widely used in linear algebra, statistics,...
কৃত্রিম বুদ্ধিমত্তা এবং আধুনিক সমাজ : আশা ও আশঙ্খা আজকের সমাজে, আমরা বেশিরভাগই কম্পিউটারগুলির উপর ব্যাপকভাবে নির্ভরশীল হয়ে পড়েছি। কম্পিউটার আমাদের দৈনন্দিন জীবনে গুরুত্বপূর্ণ ভূমিকা পালন করে এবং...
Python F-Strings: A sophisticated way of Printing Python 3.6 introduced the f-strings ( f’ string/ F’ string / f” string / F” string ) for formatting and printing text strings ( including variable...
Artificial Intelligence and Contemporary Society In today’s society, most of us have become heavily dependent on computers. Computers play a significant role in our daily lives, providing consider...
First Program in Python 3.12. Open Python IDLE or Any IDE like Jupyter Notebook etc. Type print("Hello World") Press Enter (for IDLE) Or Run (Jupyter Notebook). The output will be - Hello Worl...