The purpose of intelligence in AI is to make a person's life better, improve people's productivity, relieve people from mundane tasks, streamline and optimize business operation, and reach the remote and dangerous places while keeping human safe.
Fourthly, Why AI is the future?
Artificial insights are having a long-term impact on practically every sector and personality. Robotics, ML, DL, IoT, and other upcoming technologies have all been pushed by AI. Cognitive insights are having a long-term impact on practically every sector and person.
Five, How do AI work?
With the Neural Networks, the AI will train the brain of the AI. This can be used after the training of the model. This AI can be created in many programming languages, like python, HTML, CSS, JS, c, c ++, java etc.
HTML full form is hyper text mark up language,
CSS full form is cascading style sheet,
JS full form is JavaScript.
Six, Where can I learn AI?
- Learn with Google AI
- Google – Machine Learning
- Stanford University
- Columbia University
- Nvidia
- MIT
Seven How Is AI Hard To Learn?
Yes, it can be, and two - thirds of automation technologists believe they are not adequately equipped for the opportunities and challenges in the field of smart automation technologies. When integrating artificial intelligence, businesses face numerous difficulties.
Eight, I will create a simple AI using python
Code:
import pyttsx3 #pip install pyttsx3
import speech_recognition as sr #pip install speechRecognition
import datetime
import wikipedia # pip install wikipedia
import webbrowser
import os
engine = pyttsx3.init('sapi5')
voices = engine.getProperty('voices')
# print(voices[0].id)
engine.setProperty('voice', voices[0].id)
def wishMe():
hour = int(datetime.datetime.now().hour)
if hour>=0 and hour<12:
speak("Good Morning Sir")
elif hour>=12 and hour<18:
speak("Good Afternoon Sir")
else:
speak("Good Evening Sir")
speak("I am Jarvis Sir. I am here to help you")
def takeCommand():
r = sr.Recognizer()
with sr.Microphone() as source:
print("Listening...")
r.pause_threshold = 1
audio = r.listen(source)
# it converts the audio input into string
try:
print("Recognizing...")
query = r.recognize_google(audio, language='en-in')
print(f"User said: {query}\n")
except Exception as e:
# print(e)
print("Say that again please...")
return "None"
return query
if __name__ == "__main__":
wishMe()
while True:
query = takeCommand().lower() #
#logic for executing tasks based on query
if "how are you" in query:
speak("I'm fine sir, how can i help you ?")
elif "who are you" in query:
speak("Sir I am Jarvis personal assistant ")
You must be logged in to post a comment.