Library

Video Player is loading.
 
Current Time 8:53
Duration 5:33
Loaded: 0.00%
 
x1.00


Back

Games & Quizzes

Training Mode - Typing
Fill the gaps to the Lyric - Best method
Training Mode - Picking
Pick the correct word to fill in the gap
Fill In The Blank
Find the missing words in a sentence Requires 5 vocabulary annotations
Vocabulary Match
Match the words to the definitions Requires 10 vocabulary annotations

You may need to watch a part of the video to unlock quizzes

Don't forget to Sign In to save your points

Challenge Accomplished

PERFECT HITS +NaN
HITS +NaN
LONGEST STREAK +NaN
TOTAL +
- //

We couldn't find definitions for the word you were looking for.
Or maybe the current language is not supported

  • 00:02

    If you’ve been ignoring neural nets cuz you think they’re too hard to understand

  • 00:07

    or you think you don’t need them…boy do I have a treat for you!

  • 00:11

    In this video you’ll learn about neural nets without any of the math or code –

  • 00:16

    just an intro to what they are and how they work.

  • 00:19

    My hope is that you’ll get an idea for why they’re such an important tool.

  • 00:23

    Let’s get started.

  • 00:24


  • 00:25

    The first thing you need to know is that deep learning is about neural networks.

  • 00:30

    The structure of a neural network is like any other kind of network;

  • 00:34

    there is an interconnected web of nodes, which are called neurons,

  • 00:38

    and the edges that join them together.

  • 00:40

    A neural network's main function is to receive a set of inputs,

  • 00:44

    perform progressively complex calculations,

  • 00:47

    and then use the output to solve a problem.

  • 00:50

    Neural networks are used for lots of different applications,

  • 00:53

    but in this series we will focus on classification.

  • 00:57

    If you wanna learn about neural nets in a bit more detail, including the math,

  • 01:01

    my two favourite resources are Michael Nielsen's book, and Andrew Ng's class.

  • 01:08

    Before we talk more about neural networks, I’m gonna give you a quick overview of the problem of classification.

  • 01:15

    Classification is the process of categorizing a group of objects,

  • 01:19

    while only using some basic data features that describe them.

  • 01:23

    There are lots of classifiers available today -

  • 01:26

    like Logistic Regression, Support Vector Machines, Naive Bayes, and of course, neural networks.

  • 01:32

    The firing of a classifier, or activation as its commonly called, produces a score.

  • 01:38

    For example, say you needed to predict if a patient is sick or healthy,

  • 01:42

    and all you have are their height, weight, and body temperature.

  • 01:46

    The classifier would receive this data about the patient, process it, and fire out a confidence score.

  • 01:53

    A high score would mean a high confidence that the patient is sick, and a low score would suggest that they are healthy.

  • 02:01

    Neural nets are used for classification tasks where an object can fall

  • 02:05

    into one of at least two different categories.

  • 02:09

    Unlike other networks like a social network,

  • 02:11

    a neural network is highly structured and comes in layers.

  • 02:15

    The first layer is the input layer,

  • 02:17

    the final layer is the output layer,

  • 02:19

    and all layers in between are referred to as hidden layers.

  • 02:23

    A neural net can be viewed as the result of spinning classifiers together in a layered web.

  • 02:28

    This is because each node in the hidden and output layers has its own classifier.

  • 02:33

    Take that node for example -

  • 02:35

    it gets its inputs from the input layer, and activates.

  • 02:39

    Its score is then passed on as input to the next hidden layer for further activation.

  • 02:45

    So,

  • 02:45

    let’s see how this plays out end to end across the entire network.

  • 02:50

    A set of inputs is passed to the first hidden layer,

  • 02:53

    the activations from that layer are passed to the next layer and so on,

  • 02:56

    until you reach the output layer,

  • 02:58

    where the results of the classification are determined by the scores at each node.

  • 03:04

    This happens for each set of inputs.

  • 03:07

    Here's another one...

  • 03:09

    like so.

  • 03:11

    This series of events starting from the input where each activation is sent to the next layer,

  • 03:16

    and then the next, all the way to the output,

  • 03:18

    is known as forward propagation, or forward prop.

  • 03:22

    Forward prop is a neural net's way of classifying a set of inputs.

  • 03:27

    Have you wanted to learn more about neural nets?

  • 03:29

    Please comment and let me know your thoughts?

  • 03:35

    The first neural nets were born out of the need to address the inaccuracy of an early classifier, the perceptron.

  • 03:41

    It was shown that by using a layered web of perceptrons,

  • 03:45

    the accuracy of predictions could be improved.

  • 03:48

    As a result, this new breed of neural nets was called a Multi-Layer Perceptron or MLP.

  • 03:54

    Since then, the nodes inside neural nets have replaced perceptrons with more powerful classifiers,

  • 03:59

    but the name MLP has stuck.

  • 04:05

    Here's forward prop again.

  • 04:07

    Each node has the same classifier, and none of them fire randomly;

  • 04:11

    if you repeat an input, you get the same output.

  • 04:15

    So if every node in the hidden layer received the same input,

  • 04:19

    why didn’t they all fire out the same value?

  • 04:22

    The reason is that each set of inputs is modified by unique weights and biases.

  • 04:27

    For example, for that node,

  • 04:29

    the first input is modified by a weight of 10,

  • 04:32

    the second by 5, the third by 6 and then a bias of 9 is added on top.

  • 04:38

    Each edge has a unique weight, and each node has a unique bias.

  • 04:42

    This means that the combination used for each activation is also unique,

  • 04:46

    which explains why the nodes fire differently.

  • 04:50

    You may have guessed that the prediction accuracy of a neural net depends on its weights and biases.

  • 04:56

    We want that accuracy to be high,

  • 04:58

    meaning we want the neural net to predict a value that is as close to the actual output as possible,

  • 05:03

    every single time.

  • 05:05

    The process of improving a neural net’s accuracy is called training,

  • 05:09

    just like with other machine learning methods.

  • 05:12

    Here's that forward prop again -

  • 05:15

    to train the net, the output from forward prop is compared to the output that is known to be correct,

  • 05:21

    and the cost is the difference of the two.

  • 05:24

    The point of training is to make that cost as small as possible, across millions of training examples.

  • 05:31

    To do this, the net tweaks the weights and biases step by step

  • 05:35

    until the prediction closely matches the correct output.

  • 05:39

    Once trained well, a neural net has the potential to make accurate predictions each time.

  • 05:45

    This is a neural net in a nutshell.

  • 05:50

    At this point you might be wondering;

  • 05:52

    why create and train a web of classifiers for a task like classification,

  • 05:56

    when an individual classifier can do the job quite well?

  • 06:00

    The answer involves the problem of pattern complexity, which we will see in the next video.

All

The example sentences of INACCURACY in videos (4 in total of 4)

if preposition or subordinating conjunction we personal pronoun go verb, non-3rd person singular present too adverb far adverb , way noun, singular or mass too adverb far adverb , that preposition or subordinating conjunction x proper noun, singular position noun, singular or mass number noun, singular or mass will modal be verb, base form so adverb big adjective that preposition or subordinating conjunction the determiner inaccuracy noun, singular or mass
the determiner first adjective neural adjective nets noun, plural were verb, past tense born verb, past participle out preposition or subordinating conjunction of preposition or subordinating conjunction the determiner need noun, singular or mass to to address verb, base form the determiner inaccuracy noun, singular or mass of preposition or subordinating conjunction an determiner early adverb classifier adjective, comparative , the determiner perceptron proper noun, singular .
this determiner was verb, past tense supposedly adverb due adjective to to the determiner bushmaster proper noun, singular s proper noun, singular inaccuracy noun, singular or mass in preposition or subordinating conjunction tests noun, plural carried verb, past tense out preposition or subordinating conjunction by preposition or subordinating conjunction the determiner air proper noun, singular
for preposition or subordinating conjunction our possessive pronoun final adjective inaccuracy noun, singular or mass , we personal pronoun go verb, non-3rd person singular present to to anthony verb, base form rosenthal proper noun, singular to to tell verb, base form us personal pronoun more adjective, comparative about preposition or subordinating conjunction hamilton proper noun, singular and coordinating conjunction

Use "inaccuracy" in a sentence | "inaccuracy" example sentences

How to use "inaccuracy" in a sentence?

  • A newspaper, not having to act on its descriptions and reports, but only to sell them to idly curious people, has nothing but honor to lose by inaccuracy and non-veracity.
    -George Bernard Shaw-
  • Accuracy is the twin brother of honesty; inaccuracy is a near kin to falsehood.
    -Tryon Edwards-
  • I mentally shake hands with you for your answer, despite its inaccuracy." Mr. Rochester
    -Charlotte Bronte-
  • I'm not stupid!" In Bean's experience, that was a sentence never uttered except to prove its own inaccuracy.
    -Orson Scott Card-
  • Accuracy is twin brother to honesty, and inaccuracy to dishonesty.
    -Nathaniel Hawthorne-
  • A little inaccuracy sometimes saves a ton of explanation.
    -Hector Hugh Munro-
  • Ignorance cannot always be inferred from inaccuracy; knowledge is not always present.
    -Samuel Johnson-
  • I do not mind lying, but I hate inaccuracy.
    -Samuel Butler-

Definition and meaning of INACCURACY

What does "inaccuracy mean?"

/inˈakyərəsē/

noun
quality or state of not being accurate.

What are synonyms of "inaccuracy"?
Some common synonyms of "inaccuracy" are:
  • incorrectness,
  • inexactness,
  • inexactitude,
  • imprecision,
  • erroneousness,
  • mistakenness,
  • fallaciousness,
  • faultiness,

You can find detailed definitions of them on this page.

What are antonyms of "inaccuracy"?
Some common antonyms of "inaccuracy" are:
  • accuracy,
  • correctness,

You can find detailed definitions of them on this page.