Copyright © infotec016 . Powered by Blogger.

Wednesday, November 27, 2019

Machine - learning methods


Classification learning classification learning is supervised.(Predicting a discrete class) label is provided with actual outcome. Association learning detecting association between features. it can be applied if no class is specified and any kind of structure is considered as "interesting". Clustering Finding group of items that are similar. It is unsupervised Numeric prediction Variant of...

Saturday, November 23, 2019

Wednesday, November 13, 2019

NLP- Natural Language Processing


Natural Language Processing is the technology used to aid computers to understand the human’s natural language. Different level of analysis for natural language Prosody: Deals with rhythm and intuition of the language Phonology: Examined the sound that are combined to from language Morphology: Concern with the components that make up words  Syntax: Studies the rules for combining words into...

Tuesday, November 12, 2019

Red Black Tree


Rules Self-balancing Binary Search Tree The node color can be either red or black (It is possible to have all black nodes but impossible to have all red nodes) The root node must be black There is no two red adjacent nodes (It will not have a parent and a child node in red color) NULL node is always black Every path from root to NULL node should have the same number of black nodes Insertion If...

Sunday, November 10, 2019

Saturday, November 9, 2019

Git Commands


To find git version >> git --version Initialize a new repository and push >> git init <repo_name> Create your files to upload  to the repository created in your machine To see the status.. It will show the modified files in the directory >> git status To add the file >> git add <file_name> To commit >> git commit -m "leave your commit message here" To...