Encog
Encog Machine Learning Framework is an advanced machine learning framework that supports a variety of advanced algorithms, as well as support classes to normalize and process data. Machine learning algorithms such as Support Vector Machines, Artificial Neural Networks, Genetic Programming, Bayesian Networks, Hidden Markov Models, Genetic Programming and Genetic Algorithms are supported. Most Encog training algoritms are multi-threaded and scale well to multicore hardware. Encog can also make use of a GPU to further...
Levenshtein Distance in Java - Fuzzy Logic to match names or any strings
Levenshtein Distance
is a well-known algorithm that takes two strings and returns an integer
representing the number of changes that need to be made to one string
in order to have it transformed to the second string.
Apache Commons Lang library already has a method in the StringUtils class for this called getLevenshteinDistance.
That’s nice to know so that you don’t have to implement your own. You
can use the Levenshtein Distance to perform “fuzzy matching” between two
strings with a calculation like:
percentMatch...
Quartz Scheduler with Spring 4
Spring provides couple of classes that simplify the usage of Quartz within Spring-based applications.
There are 2 ways to configure a Job in Spring using Quartz:
A : Using MethodInvokingJobDetailFactoryBean
This is the simplest among two.
<!-- For times when you just need to invoke a method on a specific object -->
<bean id="simpleJobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
<property name="targetObject" ref="myJobBean"...