Library

but not implicit in a nominal value that you convert it to.
Video Player is loading.
 
Current Time 7:20
Duration 1:26
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:16

    Hello, and welcome to more More Data Mining with Weka.

  • 00:20

    This is Class 2.

  • 00:21

    We're going to look at two topics in this class.

  • 00:24

    In the first three lessons, we're going to look at Discretization, and in the last three

  • 00:28

    lessons, we're going to look at document classification.

  • 00:31

    Let's get going.

  • 00:35

    Discretizing is transforming numeric attributes to nominal.

  • 00:38

    There are a couple of obvious ways of doing this.

  • 00:41

    We've got a numeric attribute with a certain range.

  • 00:43

    We could take that range and chop it into a certain number of equal parts, or bins.

  • 00:49

    Just divide it into equal bins, and wherever a numeric value falls, we take that bin and

  • 00:55

    use its identification as the discretized version of the numeric value.

  • 01:00

    Or instead of using equal-sized bins, we can adjust the size to make the number of instances

  • 01:07

    that fall into each bin approximately the same: equal-frequency binning.

  • 01:11

    We're going to talk about those two things.

  • 01:13

    We'll talk briefly about the choice of the number of bins.

  • 01:16

    Then we'll talk about how to exploit the ordering information that's implicit in a numeric value,

  • 01:22

    but not implicit in a nominal value that you convert it to.

  • 01:26

    Let's look at equal-width binning.

  • 01:30

    I'm going to take ionosphere.arff, which has got a lot of numeric attributes.

  • 01:34

    I'm going to use J48.

  • 01:36

    I've set Weka up here with ionosphere.

  • 01:39

    I've run J48, and I get 91.5% accuracy.

  • 01:45

    Let's go and look at some of these numeric attributes.

  • 01:48

    The first one, a1, has got just two distinct values, 0 and 1, actually.

  • 01:54

    You can see the two values here.

  • 01:57

    The third attribute has got a bunch of different values ranging between -1 and +1, and kind

  • 02:02

    of scrunched up towards the top end.

  • 02:05

    The fourth attribute also varies between -1 and +1.

  • 02:10

    It looks like it could almost be a normal distribution.

  • 02:13

    I'm going to go to a filter here, an unsupervised attribute filter called Discretize.

  • 02:24

    Amongst the parameters here is the number of bins, and I'm going to use 40 bins.

  • 02:29

    And equal frequency--we're going to use equal-width binning, not equal frequency, leave that at false.

  • 02:38

    I'm going to run it, and look at the result.

  • 02:41

    Here is the first attribute from 0 to 1, just two values.

  • 02:46

    Here's the one that was all scrunched up to the top end.

  • 02:49

    This is -1, this is 0, and this is +1.

  • 02:53

    Here is the one that looked kind of normal.

  • 02:56

    You can see it is sort of normal-ish except for a bunch of extra values down here at -1

  • 03:00

    and +1.

  • 03:02

    I can look at those in the Edit panel, actually.

  • 03:05

    If I undo the effect of that, and go and look in the Edit panel and sort by this attribute,

  • 03:10

    you can see all the -1's here, and then a bunch of numbers, and then up at the top you

  • 03:15

    can see a bunch of extra +1's in this column.

  • 03:19

    Now I've applied the filter again.

  • 03:22

    I'm going to classify it and see what J48 makes of that.

  • 03:25

    We get 87.7% accuracy, which is not very good.

  • 03:30

    I can go back and change the number of bins.

  • 03:33

    I'm going to go straight to two bins here.

  • 03:36

    I'm going to, first of all, undo the effect of this, and then apply the two-bin version.

  • 03:43

    You can see that--well, this was two bins to start off with--but you can see that this

  • 03:47

    attribute, there's only two possible values, and this attribute is discretized into two bins.

  • 03:52

    If I run J48 again, I get 90.9%, which is pretty good, actually.

  • 03:59

    Going back to the slide, you can see the results for different numbers of bins here.

  • 04:03

    The last one, 90.9% is about the same, not too much worse than the original undiscretized version.

  • 04:11

    What's more, the tree has only got 13 nodes.

  • 04:14

    It's a much smaller, much more economical tree than the one we had before and very little

  • 04:19

    loss in accuracy.

  • 04:20

    So that looks really good.

  • 04:23

    I'm going to move now to equal-frequency binning.

  • 04:26

    Let's go back here, and take the discretize filter and change it to equal frequency.

  • 04:31

    I'm going to go back to 40 bins here, and I'm going to run that.

  • 04:37

    First, I need to undo the discretization, and then I'm going to apply this filter.

  • 04:43

    Well, it can't do much with the first attribute; that was binary to start off with.

  • 04:48

    But here, you can see that this is where they were all scrunched up towards the top end.

  • 04:52

    This is -1, this is 0, and this is +1.

  • 04:56

    You can see that, where possible, it's chosen the size of the bins to equalize the frequency.

  • 05:02

    It can't do anything with this large bin at the top, or this one at the bottom, or this

  • 05:07

    one in the middle, because all of the instances have +1 and here they've got 0 and here they've

  • 05:13

    got -1.

  • 05:14

    But where it can, it has kind of equalized the frequency.

  • 05:19

    This is the one that used to look normal.

  • 05:20

    You can see there's some extra -1's, 0's, and +1's, and it's kind of equalized the frequency

  • 05:25

    by choosing appropriate bin widths.

  • 05:27

    I can go and classify.

  • 05:31

    J48 gives me 87%.

  • 05:33

    It's a bit disappointing, not very good at all.

  • 05:37

    I can try with different numbers of bins.

  • 05:39

    Let me change this to two bins.

  • 05:47

    I need to undo this one first.

  • 05:49

    Then apply.

  • 05:51

    It hasn't done much here--which was originally just two bins--but you can see that here we've

  • 05:56

    got two equal-sized bins.

  • 05:58

    That's what histogram equalization, equal frequency, is trying to do: make bins with

  • 06:03

    the same number of instances in each.

  • 06:05

    If I just run J48 on that, I get 83%, which, again, is pretty disappointing.

  • 06:12

    Coming back to the slide, you can see that all of these equal frequency binning results

  • 06:18

    are worse than the original results.

  • 06:21

    The size of the tree is not hugely smaller, either.

  • 06:24

    So they're not really very good.

  • 06:26

    Which method should you use? How many bins should you use? Well, these are experimental

  • 06:30

    questions.

  • 06:32

    There's a theoretical result called "proportional k-interval discretization" which says that

  • 06:37

    the number of bins should be proportional to the square root of the number of instances.

  • 06:41

    That doesn't really help you very much in choosing the number of bins, because it doesn't

  • 06:45

    tell you what the constant of proportionality should be.

  • 06:48

    It's an experimental question.

  • 06:50

    A more interesting question is how to exploit ordering information.

  • 06:55

    In the numeric version of the attribute--and this is it at the top, the attribute value--we've

  • 06:59

    got a value v here, and there's an ordering relationship between different values of this attribute.

  • 07:05

    However, when we discretize it here into five different bins, then there's no ordering information

  • 07:10

    between these bins.

  • 07:12

    Which is a problem, because we might have a test in a tree, "is x

  • 07:18

    After discretization, to get the equivalent test, we would need to ask "is y=a?", "is

  • 07:24

    y=b?", "is y=c?" and replicate the tree underneath each of these nodes.

  • 07:29

    That's clearly inefficient, and is likely to lead to bad results.

  • 07:33

    There's a little trick here.

  • 07:37

    Instead of discretizing into five different values a to e, we can discretize into four

  • 07:45

    different binary attributes, k-1 binary attributes.

  • 07:51

    The first attribute here says whether the value v is in this range, and the second attribute,

  • 07:58

    z2, says whether it's in this range, a or b.

  • 08:01

    The third, z3, says whether it's in this range, a, b, or c.

  • 08:05

    The fourth says whether it's in the first four ranges.

  • 08:11

    If in our tree we have a test "is x

  • 08:20

    true and z4 is false.

  • 08:21

    So an equivalent test on the binary attributes are "is z3=true?".

  • 08:30

    If we take that tree we have before, testing on "x

  • 08:38

    Then we have the same kind of economy of the tree underneath this without replicating different

  • 08:45

    subtrees.

  • 08:47

    That's very easy in Weka.

  • 08:48

    We just go to our filter, and we set makeBinary to True.

  • 08:55

    You'll be using that option--and finding out that it's really pretty good, actually--quite

  • 09:01

    a bit in the activity associated with this lesson.

  • 09:04

    It makes sense, you know.

  • 09:05

    It allows us to retain the ordering information that's implicit in the original numeric attribute.

  • 09:16

    Here's what we've done.

  • 09:17

    We've looked at equal-width binning and equal-frequency binning, also called histogram equalization.

  • 09:22

    We briefly considered how many bins.

  • 09:25

    It's an experimental question.

  • 09:27

    We've talked about exploiting ordering information.

  • 09:30

    In the next lesson, we'll talk about taking the class into account, supervised discretization.

  • 09:36

    There's a bit in the book on discretization.

  • 09:39

    You should do the activity, and I'll see you in the next lesson.

  • 09:43

    Bye for now!

All

The example sentences of IMPLICIT in videos (15 in total of 56)

notice proper noun, singular that preposition or subordinating conjunction the determiner only adverb difference noun, singular or mass between preposition or subordinating conjunction this determiner implicit noun, singular or mass function noun, singular or mass and coordinating conjunction the determiner one cardinal number from preposition or subordinating conjunction the determiner previous adjective
it personal pronoun allows verb, 3rd person singular present us personal pronoun to to retain verb, base form the determiner ordering verb, gerund or present participle information noun, singular or mass that wh-determiner 's verb, 3rd person singular present implicit noun, singular or mass in preposition or subordinating conjunction the determiner original adjective numeric adjective attribute verb, non-3rd person singular present .
implicit noun, singular or mass health noun, singular or mass application noun, singular or mass tracks verb, 3rd person singular present actions noun, plural so preposition or subordinating conjunction you personal pronoun can modal screen verb, base form progress verb, base form see verb, base form calories noun, plural consumed verb, past participle and coordinating conjunction then adverb
for preposition or subordinating conjunction those determiner of preposition or subordinating conjunction you personal pronoun guys noun, plural who wh-pronoun don verb, non-3rd person singular present t proper noun, singular know verb, non-3rd person singular present how wh-adverb this determiner implicit noun, singular or mass priming verb, gerund or present participle technique noun, singular or mass works noun, plural , basically adverb
here adverb in preposition or subordinating conjunction the determiner redirect noun, singular or mass , response proper noun, singular type proper noun, singular is verb, 3rd person singular present set verb, past participle to to id proper noun, singular token proper noun, singular , indicating verb, gerund or present participle the determiner implicit noun, singular or mass flow noun, singular or mass
aquinas proper noun, singular describes verb, 3rd person singular present this determiner as adverb faith noun, singular or mass as preposition or subordinating conjunction giving verb, gerund or present participle us personal pronoun a determiner kind noun, singular or mass of preposition or subordinating conjunction implicit noun, singular or mass cognition noun, singular or mass , a determiner new adjective
prime adjective the determiner easiest adjective, superlative way noun, singular or mass to to think verb, base form about preposition or subordinating conjunction implicit noun, singular or mass differentiation noun, singular or mass is verb, 3rd person singular present just adverb to to remember verb, base form that preposition or subordinating conjunction whenever wh-adverb
matter noun, singular or mass doesn proper noun, singular t proper noun, singular exist verb, non-3rd person singular present , the determiner onus noun, singular or mass is verb, 3rd person singular present on preposition or subordinating conjunction them personal pronoun to to answer verb, base form the determiner implicit noun, singular or mass question noun, singular or mass , okay adjective then adverb ,
any determiner time verb, base form we personal pronoun describe verb, non-3rd person singular present vectors noun, plural numerically adverb , it personal pronoun depends verb, 3rd person singular present on preposition or subordinating conjunction an determiner implicit noun, singular or mass choice noun, singular or mass of preposition or subordinating conjunction what wh-determiner basis noun, singular or mass
everything proper noun, singular you personal pronoun act verb, non-3rd person singular present out preposition or subordinating conjunction is verb, 3rd person singular present predicated verb, past participle on preposition or subordinating conjunction your possessive pronoun implicit noun, singular or mass axioms noun, plural , and coordinating conjunction the determiner system noun, singular or mass of preposition or subordinating conjunction implicit noun, singular or mass
everything proper noun, singular you personal pronoun act verb, non-3rd person singular present out preposition or subordinating conjunction is verb, 3rd person singular present predicated verb, past participle on preposition or subordinating conjunction your possessive pronoun implicit noun, singular or mass axioms noun, plural , and coordinating conjunction the determiner system noun, singular or mass of preposition or subordinating conjunction implicit noun, singular or mass
and coordinating conjunction this determiner impossibility noun, singular or mass is verb, 3rd person singular present also adverb demonstrated verb, past participle by preposition or subordinating conjunction the determiner implicit noun, singular or mass conclusions noun, plural of preposition or subordinating conjunction the determiner famous adjective fermi proper noun, singular paradox proper noun, singular .
anybody proper noun, singular that determiner , implicit noun, singular or mass in preposition or subordinating conjunction their possessive pronoun comments noun, plural or coordinating conjunction what wh-pronoun they personal pronoun kind noun, singular or mass of preposition or subordinating conjunction laugh noun, singular or mass about preposition or subordinating conjunction or coordinating conjunction proper noun, singular
find verb, base form out preposition or subordinating conjunction a determiner set noun, singular or mass of preposition or subordinating conjunction items verb, 3rd person singular present the determiner user noun, singular or mass likes verb, 3rd person singular present using verb, gerund or present participle both determiner explicit adjective and coordinating conjunction implicit noun, singular or mass data noun, plural .
which wh-determiner is verb, 3rd person singular present called verb, past participle the determiner implicit proper noun, singular association proper noun, singular test proper noun, singular and coordinating conjunction has verb, 3rd person singular present been verb, past participle taken verb, past participle over preposition or subordinating conjunction 17 cardinal number million cardinal number times noun, plural .

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

How to use "implicit" in a sentence?

  • Implicit in true freedom of spirit lies a proud and virile will. Such glorious power of free will to choose, envisages beneficent social responsibility as manifest and welcome.
    -Louis Sullivan-
  • Sometimes you like the personal adventure implicit in the making of a film, and sometimes you like your part in a film, and sometimes you like the final result.
    -Jacqueline Bisset-
  • A lump rises in our throat at the sight of beauty from an implicit knowledge that the happiness it hints at is the exception.
    -Alain de Botton-
  • I have an implicit faith ... that mankind can only be saved through non-violence, which is the central teaching of the Bible, as I have understood the Bible.
    -Mahatma Gandhi-
  • The global triumph of American technology has been predicated on the implicit separation between the business interests of Silicon Valley and the political interests of Washington.
    -Evgeny Morozov-
  • By His trials, God means to purify us, to take away all our self-confidence, and our trust in each other, and bring us into implicit, humble trust in Himself.
    -Horace Bushnell-
  • In philosophy, you have to reckon with the implicit level of an accumulated reserve, and thus with a very great number of relays, with the shared responsibility of these relays.
    -Jacques Derrida-
  • What is known can't jerk us around unwittingly. Before anything can be resolved, the implicit must be made into the explicit.
    -Ryan Holiday-

Definition and meaning of IMPLICIT

What does "implicit mean?"

/imˈplisit/

adjective
suggested though not directly expressed.

What are synonyms of "implicit"?
Some common synonyms of "implicit" are:
  • implied,
  • indirect,
  • inferred,
  • understood,
  • hinted,
  • suggested,
  • deducible,
  • unspoken,
  • unexpressed,
  • undeclared,
  • unstated,
  • unsaid,
  • tacit,
  • unacknowledged,
  • silent,

You can find detailed definitions of them on this page.

What are antonyms of "implicit"?
Some common antonyms of "implicit" are:
  • explicit,
  • direct,
  • limited,

You can find detailed definitions of them on this page.