Posts

StarClick

Laravel Composer

Composer is an application-level package manager for the PHP programming language that provides a standard format for managing dependencies of PHP software and required libraries. Composer runs through the command line and installs dependencies (e.g. libraries) for an application. 1. go to getcomposer.org and go to download and run composer-setup.exe

Visual Basic how to search text between tags

Image
Visual Basic how to search text between tags. The main problem is when a user upload a file and want to find text between two text or tags. Here the code  Pleas comment if it helps.

Python K-NN

Image
 Learn how K-NN(K nearest neighbor) work. K-Nearest Neighbor is a Lazy learning algorithm, used in machine learning and other data mining field. It's sensitive to outliers . Algorithm is sensitive to outliers, since a single mislabeled example dramatically changes the class boundaries. Anomalies affect the method significantly, because k-NN gets all the information from the input, rather than from an algorithm that tries to generalize data Advantages and Disadvantages of KNN Algorithm in Machine Learning No Training Period: KNN is called Lazy Learner (Instance based learning). ... Since the KNN algorithm requires no training before making predictions, new data can be added seamlessly which will not impact the accuracy of the algorithm.