Presentation is loading. Please wait.

Presentation is loading. Please wait.

Christoph F. Eick Questions Review October 12, 2010 1.How does post decision tree post-pruning work? What is the purpose of applying post-pruning in decision.

Similar presentations


Presentation on theme: "Christoph F. Eick Questions Review October 12, 2010 1.How does post decision tree post-pruning work? What is the purpose of applying post-pruning in decision."— Presentation transcript:

1 Christoph F. Eick Questions Review October 12, 2010 1.How does post decision tree post-pruning work? What is the purpose of applying post-pruning in decision tree learning? 2.What are the characteristics of representative-based/ prototype-based clustering algorithms—what do they all have in common? 3.K-means is one of the most popular clustering algorithms. Give reasons why K-means is that popular! 4.What of the following cluster shapes K-means is capable to discover? a) triangles b) clusters inside clusters c) the letter ‘T ‘d) any polygon of 5 points e) the letter ’I’ 5. Assume we apply K-medoids for k=3 to a dataset consisting of 5 objects numbered 1,..5 with the following distance matrix: Distance Matrix: 0 2 4 5 1  object1 0 2 3 3 0 1 5 0 2 0 The current set of representatives is {1,3,4}; indicate all computations k-medoids (PAM) performs in its next iteration 6.What are the characteristics of a border point in DBSCAN? 7.If you increase the MinPts parameter of DBSCAN; how will this affect the clustering results? 8.DBSCAN supports the notion of outliers. Why is this desirable? 9.What are the 10.How is region discovery in spatial datasets different from traditional clustering? 11.What are the unique characteristics of hierarchical clustering?

2 Christoph F. Eick SomeAnswers Review October 12, 2010 1.How does post decision tree post-pruning work? What is the purpose of applying post-pruning in decision tree learning? No answer first question! To obtain a low generalization error! To find the correct amount of model complexity that leads to a low generalization error. 1.What are the characteristics of representative-based/ prototype-based clustering algorithms—what do they all have in common? a) The form clusters by assigning objects in the dataset to the closest prototype/representative.(using 1-NN queries b) They are iterative algorithms that change the current partitioning until a predefined termination condition is met [c)cluster shapes are limited to convex polygons] 1.K-means is one of the most popular clustering algorithms. Give reasons why K-means is that popular! K-means is popular because it is relatively efficient (runtime complexity is basically O(n)and storage complexity is O(n)) and easy to use. It uses implicit fitness function (SSE) and terminates at local optimal for this fitness function. Its properties are well understood. 1.What of the following cluster shapes K-means is capable to discover? a) triangles b) clusters inside clusters c) the letter ‘T ‘d) any polygon of 5 points e) the letter ’I’ Only a and e!! 5. Assume we apply K-medoids for k=3 to a dataset consisting of 5 objects numbered 1,..5 with the following distance matrix: The current set of representatives is {1,3,4}; indicate all computations k-medoids (PAM) performs in its next iteration Distance Matrix: 0 2 4 5 1  object1 0 2 3 3 0 1 5 0 2 0

3 Christoph F. Eick Answers Review October 12, 2010 Cont. 6.What are the characteristics of a border point in DBSCAN? It is not a core point but it is within the radius  of one or more core points. 6.If you increase the MinPts parameter of DBSCAN; how will this affect the clustering results? There will be more outliers! It is hard to say if the number of clusters will increase or decrease (two effects interact: some clusters die(  less clusters); some other bigger clusters will be split into multiple smaller clusters(  more clusters)) 6.DBSCAN supports the notion of outliers. Why is this desirable? a) More descriptive and compact clusters b)no need to remove outliers prior to clustering 6.DBSCAN has a complexity of O(n**2) which can be reduced by using spatial index structures to O(log(n)*n). Explain! For each point in the dataset we have to decide if it is a core point or not, which takes O(n) without supportive data structures; because there are n points in the dataset we obtain O(n**2). For each core c point we also have to compute all the points that are density-reachable from c, but this is O(n) or less… 6.How is region discovery in spatial datasets different from traditional clustering? a) Supports plug-in fitness functions b) Finds clusters in the subspace of spatial attributes and not in the complete attribute space!


Download ppt "Christoph F. Eick Questions Review October 12, 2010 1.How does post decision tree post-pruning work? What is the purpose of applying post-pruning in decision."

Similar presentations


Ads by Google