TED Could an AI pass the entrance exam for the University of Tokyo? - Noriko Arai
2017-09-05 16:20:19

Meet Todai Robot, an AI project that performed in the top 20 percent of students on the entrance exam for the University of Tokyo -- without actually understanding a thing. While it's not matriculating anytime soon, Todai Robot's success raises alarming questions for the future of human education. How can we help kids excel at the things that humans will always do better than AI?

This talk was presented at an official TED conference, and was featured by our editors on the home page.

URL: https://www.ted.com/talks/noriko_arai_can_a_robot_pass_a_university_entrance_exam

meaning .. 도 조만간이지 싶은데^^;

▼ more
살 것들
2017-08-29 20:33:36

HDD 케이스, 도킹스테이션

▼ more
Variation Inflation Factor
2017-08-20 21:15:33

Unfortunately, not all collinearity problems can be

detected by inspection of the correlation matrix: it is possible for collinearity to exist between three or more variables even if no pair of variables

has a particularly high correlation. We call this situation multicollinearity.

multiInstead of inspecting the correlation matrix, a better way to assess

collinearity is to compute the variance inflation factor (VIF). The VIF is

the ratio of the variance of βˆj when fitting the full model divided by the

variance of βˆj if fit on its own. The smallest possible value for VIF is 1,

which indicates the complete absence of collinearity. Typically in practice

there is a small amount of collinearity among the predictors. As a rule of

thumb, a VIF value that exceeds 5 or 10 indicates a problematic amount of

collinearity.

공식은 ISL Chapter 3. Linear Regression 3.3 마지막 부분 p. 102

▼ more
Outliers/High Leverage observations and influential points
2017-08-20 20:54:42

In this section, we learn the distinction between outliers and high leverage observations. In short:

An outlier is a data point whose response y does not follow the general trend of the rest of the data.

A data point has high leverage if it has "extreme" predictor x values. With a single predictor, an extreme x value is simply one that is particularly high or low. With multiple predictors, extreme x values may be particularly high or low for one or more predictors, or may be "unusual" combinations of predictor values (e.g., with two predictors that are positively correlated, an unusual combination of predictor values might be a high value of one predictor paired with a low value of the other predictor).

Note that — for our purposes — we consider a data point to be an outlier only if it is extreme with respect to the other y values, not the x values.

A data point is influential if it unduly influences any part of a regression analysis, such as the predicted responses, the estimated slope coefficients, or the hypothesis test results. Outliers and high leverage data points have the potential to be influential, but we generally have to investigate further to determine whether or not they are actually influential.

One advantage of the case in which we have only one predictor is that we can look at simple scatter plots in order to identify any outliers and influential data points. Let's take a look at a few examples that should help to clarify the distinction between the two types of extreme values.

from https://onlinecourses.science.psu.edu/stat501/node/337

▼ more