Skip to main content

DWDM lab exp2

 

  1. Explore machine learning tool“WEKA”//2.a//Explore WEKA Data Mining/Machine Learning Toolkit. ANS:

WEKA(Waikato Environment for Knowledge Analysis) an open-source software provides tools for data preprocessing, implementation of several Machine Learning algorithms, and visualization tools so that we can develop machine learning techniques and apply them to real-world data mining problems.

Features of WEKA -

  1. Preprocessor – Most of the Data is Raw. Hence, Preprocessor is used to clean the noisy data.

  2. Classify – After preprocessing the data, we assign classes or categories to items.

  3. Cluster – In Clustering, a dataset is arranged in different groups/clusters based on some similarities.

  4. Associate – Association rules highlight all the associations and correlations between items of a dataset.

  5. Select Attributes – Every dataset contains a lot of attributes; only significantly valuable attributes are selected for building a good model.

  6. Visualize – In Visualization, different plot matrices and graphs are available to show the trends and errors identified by the model.




Comments

Popular posts from this blog

DWDM (Basic statistical description of data)

Data structures: Introduction to Trees

Tree: The data in a tree are not stored in a sequential manner i.e., they are not stored linearly. Instead, they are arranged on multiple levels or we can say it is a hierarchical structure. For this reason, the tree is considered to be a non-linear data structure. KeyConcepts : Nodes : Individual units within the tree, each storing data and potentially linking to other nodes. Edges : Connections between nodes, representing relationships (parent-child, sibling, etc.). Root : The topmost node in the tree, from which all other nodes originate. Parent : A node that has one or more child nodes. Child : A node connected to a parent node. Leaf : A node with no children. Subtree : A portion of a tree that is itself a tree. Representation of tree: Binary search tree :

Hashing and hash functions

Types of hash functions