diff --git a/css/style.css b/css/style.css index 75e9841e..b6ad0558 100644 --- a/css/style.css +++ b/css/style.css @@ -6,3 +6,39 @@ * for example: General styles, Navigation styles, Hero styles, Footer etc. * */ +h1, h2{ +text-align: center; +border-left: 50px; +} +p{ + font-size: larger; +} +img{ + position: relative; + left: 45px; + width: 800px; + height: 300px; + +} +nav{ + text-align: center; + word-spacing: 8px; + +} +body{ + background-image: url('https://images.pexels.com/photos/1772123/pexels-photo-1772123.jpeg'); + background-repeat: no-repeat; + background-attachment: fixed; + background-size: cover; +} +iframe{ + margin-left:auto; + margin-right:auto; + width:100%; + +} +.part2{ + padding-top: 35px; +} + + diff --git a/index.html b/index.html index 67dfc7f5..16197a78 100644 --- a/index.html +++ b/index.html @@ -6,17 +6,69 @@ name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> +
As the hype around AI has accelerated, vendors have been scrambling to promote how their products and services use AI. Often what they refer to as AI is simply one component of AI, such as machine learning. AI requires a foundation of specialized hardware and software for writing and training machine learning algorithms. No one programming language is synonymous with AI, but a few, including Python, R and Java, are popular.
+ + + +In general, AI systems work by ingesting large amounts of labeled training data, analyzing the data for correlations and patterns, and using these patterns to make predictions about future states. In this way, a chatbot that is fed examples of text chats can learn to produce lifelike exchanges with people, or an image recognition tool can learn to identify and describe objects in images by reviewing millions of examples. + + AI programming focuses on three cognitive skills: learning, reasoning and self-correction.
+AI is important because it can give enterprises insights into their operations that they may not have been aware of previously and because, in some cases, AI can perform tasks better than humans. Particularly when it comes to repetitive, detail-oriented tasks like analyzing large numbers of legal documents to ensure relevant fields are filled in properly, AI tools often complete jobs quickly and with relatively few errors. + + This has helped fuel an explosion in efficiency and opened the door to entirely new business opportunities for some larger enterprises. Prior to the current wave of AI, it would have been hard to imagine using computer software to connect riders to taxis, but today Uber has become one of the largest companies in the world by doing just that. It utilizes sophisticated machine learning algorithms to predict when people are likely to need rides in certain areas, which helps proactively get drivers on the road before they're needed. As another example, Google has become one of the largest players for a range of online services by using machine learning to understand how people use their services and then improving them. In 2017, the company's CEO, Sundar Pichai, pronounced that Google would operate as an "AI first" company.
+ +Today's largest and most successful enterprises have used AI to improve their operations and gain advantage on their competitors.
++ + When paired with AI technologies, automation tools can expand the volume and types of tasks performed. An example is robotic process automation (RPA), a type of software that automates repetitive, rules-based data processing tasks traditionally done by humans. When combined with machine learning and emerging AI tools, RPA can automate bigger portions of enterprise jobs, enabling RPA's tactical bots to pass along intelligence from AI and respond to process changes. + Machine learning. This is the science of getting a computer to act without programming. Deep learning is a subset of machine learning that, in very simple terms, can be thought of as the automation of predictive analytics. There are three types of machine learning algorithms: + Supervised learning. Data sets are labeled so that patterns can be detected and used to label new data sets. + Unsupervised learning. Data sets aren't labeled and are sorted according to similarities or differences. + Reinforcement learning. Data sets aren't labeled but, after performing an action or several actions, the AI system is given feedback.
+ + +Machine vision. This technology gives a machine the ability to see. Machine vision captures and analyzes visual information using a camera, analog-to-digital conversion and digital signal processing. It is often compared to human eyesight, but machine vision isn't bound by biology and can be programmed to see through walls, for example. It is used in a range of applications from signature identification to medical image analysis. Computer vision, which is focused on machine-based image processing, is often conflated with machine vision. + Natural language processing (NLP). This is the processing of human language by a computer program. One of the older and best-known examples of NLP is spam detection, which looks at the subject line and text of an email and decides if it's junk. Current approaches to NLP are based on machine learning. NLP tasks include text translation, sentiment analysis and speech recognition.
+