Closed UnePatate5010 closed 2 months ago
The ex-fuzzy package behave weirdly with some datasets. Especially, a lot of RuntimeWarning: overflow encountered in divide appear. This is due to the following lines int ex_fuzzy\fuzzy_sets.py:
RuntimeWarning: overflow encountered in divide
ex_fuzzy\fuzzy_sets.py
aux1 = (x - a) / (b - a) aux2 = (d - x) / (d - c)
the issue seems to have been solved by itself ¯ \ (ツ) / ¯
The ex-fuzzy package behave weirdly with some datasets. Especially, a lot of
RuntimeWarning: overflow encountered in divide
appear. This is due to the following lines intex_fuzzy\fuzzy_sets.py
: