Fuzzy logic in java

I was given a new project module, which includes fuzzy logic. This is to identify various Hydrometeors using the fuzzy logic method. I know very little about what fuzzy logic is. Therefore, I would like to receive advice from people who have already done projects using fuzzy logic in Java (for example, what are the main programming strategies I can adopt).

I came across a fuzzy logical API . People who used it, comment on how useful this is.

+3
source share
2 answers

Fuzzy logic is an abstract concept, completely independent of programming lanuages. The basic idea is that instead of logical logic, where any operator is either “true” or “false”, you use a continuum where the operator can be anywhere between “100% true” and “0% true”. This allows you to simulate some real scenarios much better than logical logic, but, of course, requires different (more complex) rules for combining operators.

I did not use the API library that you contacted, but at first glance it looks pretty good (it is regularly updated, there is a recent version and even the eclipse plugin).

+15
source

Java, .

https://github.com/intuit/fuzzy-matcher

, , .

, ,

["John Doe","Jack Miller","Jon Doe","J Doe","Miller J"]

,

, ["John Doe","Jon Doe","J Doe"] ["Jack Miller","Miller J"]

GitHub , , , .

0

Source: https://habr.com/ru/post/1759837/


All Articles