We found 14 results that contain ".ai"

Posted on: #iteachmsu
Wednesday, Nov 22, 2023
Beyond space missions, this approachable design allows Laika to integrate into domestic contexts.
In the intersection of space travel and robotics, Jihee Kim introduces Laika — a concept design for a life-like, AI robot pet that can interact with humans. Laika has been designed for upcoming space projects such as NASA’s Artemis and Moon to Mars missions set for 2025-2030, envisioned as the ultimate companion for space explorers as it caters to both their physical and emotional well-being while they are away from home. Unlike the aggressive robotic dogs currently available on the market, Jihee Kim has designed Laika with a friendly and organic finish that enables it to connect to its human counterpart on an emotional level when in use while monitoring their health conditions and assisting them in emergencies. Beyond space missions, this approachable design allows Laika to integrate into domestic contexts.
Image : 
video  link : Embedded URL test : 
Table : 



Sr NO 
Assignee
Task 


Cat 1 
Rohit 
Test 1


Cat 2
Shweta
Test 2 



Numbering : 

Number 1 
Number 2 

Bullets : 

Bullets 1
Bullets 2
Bullets 3 

URL : https://www.designboom.com/technology/life-like-ai-robot-dog-laika-space-travelers-jihee-kim-11-19-2023/
Authored by: vijayalaxmi vishwanath mali
post image
Posted on: #iteachmsu
Tuesday, Jan 12, 2021
Are there any advances in this direction that you think hold promise?
The basic idea of intelligence:An explosion is that once machines reach a certain level of intelligence, they’ll be able to work on AI just like we do and improve their own capabilities — redesign their own hardware and so on — and their intelligence will zoom off the charts. There’s an area emerging called “cyber-physical systems” about systems that couple computers to the real world. With a cyber-physical system, you’ve got a bunch of bits representing an air traffic control program, and then you’ve got some real airplanes, and what you care about is that no airplanes collide. You’re trying to prove a theorem about the combination of the bits and the physical world. What you would do is write a very conservative mathematical description of the physical world — airplanes can accelerate within such-and-such envelope — and your theorems would still be true in the real world as long as the real world is somewhere inside the envelope of behaviors.
Yet you’ve pointed out that it might not be mathematically possible to formally verify AI systems.
There’s a general problem of “undecidability” in a lot of questions you can ask about computer programs. Alan Turing showed that no computer program can decide whether any other possible program will eventually terminate and output an answer or get stuck in an infinite loop. So if you start out with one program, but it could rewrite itself to be any other program, then you have a problem, because you can’t prove that all possible other programs would satisfy some property.
Authored by: Rupali
post image
Posted on: #iteachmsu
Monday, Oct 19, 2020
Android task monitoring
This project is exclusively designed to simplify the tracking and monitoring of day-to-day activities of the busy modern life. We are so busy in our daily lives right now that it becomes impossible to keep track of our daily events, meetings, and appointments. To address this issue, this project focuses on developing a Weekly Task Alerting System for Android devices that can alert users of the tasks/appointments that are scheduled for each day in a week. 
The project is primarily a reminder app powered by an AI chatbot that reminds users of all the tasks that are due daily. Users can use this application to set goals and achieve them, thereby increasing productivity and simplifying their lives. 
Authored by: Divya Sawant
post image
Posted on: #iteachmsu
Friday, Nov 13, 2020
Industrial Revolution 4.0
What better way to start this new century than to go over the pros and cons of the 4th Industrial Revolution. The 4th industrial revolution is a term coined by Professor Klaus Schwab. He is the founder and Executive chairman of the World Economic Forum, so he has some good credentials. He described the 4th industrial revolution as a “current and developing environment in which disruptive technologies and trends such as the Internet of Things, robotics, virtual reality and Artificial Intelligence are changing the way people live and work”. So this is the era of AI and machine learning, genome editing, 3D printing, Internet of Things, augmented reality, autonomous vehicles, and much more. And we’re not talking about the future here. These things are currently affecting our personal and work life and they are ever evolving. 
Authored by: Divya Sawant
post image
Posted on: #iteachmsu
Wednesday, Dec 6, 2023
What is natural language processing?
Natural language processing (NLP) refers to the branch of computer science—and more specifically, the branch of artificial intelligence or AI—concerned with giving computers the ability to understand text and spoken words in much the same way human beings can.
NLP combines computational linguistics—rule-based modeling of human language—with statistical, machine learning, and deep learning models. Together, these technologies enable computers to process human language in the form of text or voice data and to ‘understand’ its full meaning, complete with the speaker or writer’s intent and sentiment. https://byjus.com/biology/flower/ 
NLP drives computer programs that translate text from one language to another, respond to spoken commands, and summarize large volumes of text rapidly—even in real time. There’s a good chance you’ve interacted with NLP in the form of voice-operated GPS systems, digital assistants, speech-to-text dictation software, customer service chatbots, and other consumer conveniences. But NLP also plays a growing role in enterprise solutions that help streamline business operations, increase employee productivity, and simplify mission-critical business processehttps://byjus.com/biology/flower/ 
Authored by: Pranjali
post image
Posted on: #iteachmsu
Monday, Mar 11, 2024
A class is a user-defined blueprint or prototype from which objects are created. -- Edited
A class is a user-defined blueprint or prototype from which objects are created. It represents the set of properties or methods that are common to all objects of one type. Using classes, you can create multiple objects with the same behavior instead of writing their code multiple times. This includes classes for objects occurring more than once in your code. https://www.javatpoint.com/microprocessor-introduction In general, class declarations can include these components in order: 

Modifiers: A class can be public or have default access (Refer to this for details).
Class name: The class name should begin with the initial letter capitalized by convention.
Superclass (if any): The name of the class’s parent (superclass), if any, preceded by the keyword extends. A class can only extend (subclass) one parent.
Interfaces (if any): A comma-separated list of interfaces implemented by the class, if any, preceded by the keyword implements. A class can implement more than one interface.
Body: The class body is surrounded by braces, { }.

An object is a basic unit of Object-Oriented Programming that represents real-life entities. A typical Java program creates many objects, which as you know, interact by invoking methods. The objects are what perform your code, they are the part of your code visible to the viewer/user. An object mainly consists of: 

State: It is represented by the attributes of an object. It also reflects the properties of an object.
Behavior: It is represented by the methods of an object. It also reflects the response of an object to other objects.
Identity: It is a unique name given to an object that enables it to interact with other objects.
Method: A method is a collection of statements that perform some specific task and return the result to the caller. A method can perform some specific task without returning anything. Methods allow us to reuse the code without retyping it, which is why they are considered time savers. In Java, every method must be part of some class, which is different from languages like C, C++, and Python. 
Authored by: Vijayalaxmi Mhetre
post image