Skip to main content

Featured

Short and Concise Informative Video On Sophia and Vyommitra

About

Content Writer and Blog Manager: Yash Patil

This blog is providing all you need to know about AI, currently in progress. Learners who are passionate about Artificial Intelligence and Computer Science and just starting or advancing their career in these fields may find this blog helpful. I was an absolute beginner for AI in September 2020, and at the same time, I had a Programming Experience of 1 year with Python Programming Language. Perhaps I could help you get started into AI without any confusion and mistakes that most of us do. I will be posting on every smallest and largest topic you need to know in Artificial Intelligence. You won't need to read 10s of books to understand and learn Artificial Intelligence / Computer Science. All the concepts would be precise on what we need to know rather than wasting our time on Facts that have no use to remember.

Comments

Popular posts from this blog

SQL Queries

create database school_data; use school_data; create table admins (first_name varchar(20) Not Null,  middle_initial varchar(1) Not null,  last_name varchar(20) NOt NULL,  DOB varchar(10) NOt NULL,  phone varchar(10) Primary key,  alt_phone varchar(10),  email varchar(150) NOt NULL,  designation varchar(60) NOt NULL,  subjects_taken varchar(150),  classes_taken varchar(20)); create table class_teachers (first_name varchar(20) Not Null,  middle_initial varchar(1) Not null,  last_name varchar(20) NOt NULL,  DOB varchar(10) NOt NULL,  phone varchar(10) Primary key,  alt_phone varchar(10),  email varchar(150) NOt NULL,  subjects_taken varchar(150),  class_teacher_of varchar(2) Not Null,  classes_taken varchar(20)); create table student_stats (ADMISSION_NO varchar(15) PRImary key, ROLL_NO int NOt NULL, GRADE varchar(10) NOt NULL, SECTION varchar(1) NOt NULL, DOB varchar(10) NOt NULL, FIRST_NAME varchar(3...

AGENTS AND ENVIRONMENTS

  An agent is anything that can perceive its environment and sense it through SENSORS and act on that environment through ACTUATORS. To understand this, you may refer to the figure below:  Reference: "Artificial Intelligence: The Modern Approach" 3rd Edition We, humans, are also agents for the environment around us. We have eyes, ears, and other sensory organs to sense and hands, legs, and so on as actuators for acting upon the environment around us. Similarly, a robotic agent can have cameras and different sensors like infrared range finders and various motors for actuators. A software agent gets sensory inputs through a keystroke, file content, and network packet and acts on the environment by displaying them on the screen, writing/overwriting the files, and sending different network packets the same as actuators. 

Short and Concise Informative Video On Sophia and Vyommitra