anfis
anfis copied to clipboard
Python implementation of an Adaptive neuro fuzzy inference system
I want to use the system to predict the CPU of VMs. But, I encounter a challenge that The number of VM is too many.
Hello can you please help me in using ANFIS for multiple output. i have 7 inputs and 5 outputs. I have to predict these 5 output in one model using...
Hi, just an fyi that the membership folder is coming out as nested in the anfis/anfis folder and so in order to get to run the membership folder needs to...
same as the question
in new update of python imp dropped and after run tests.py raise error ModuleNotFoundError: No module named 'imp' please fix this, thansk alot
I cannot plot the anfis.plotMF. I don't know what to use as x and as InputVar. I tried several things, but the error “only integer scalar arrays can be converted...
in the code you would find this ``` [ ['gaussmf', {'mean': 0., 'sigma': 1.}], ['gaussmf', {'mean': -1., 'sigma': 2.}], ['gaussmf', {'mean': -4., 'sigma': 10.}], ['gaussmf', {'mean': -7., 'sigma': 7.}] ],...
Hi. Normal multiplication is used with the np.product(x) fuction in the ANFIS codes . Shouldn't it be necessary to use fuzzy multiplication and addition operations because membership degrees are used?...
Hi, I would like to know if anyone has encountered this problem: When using the function for a more complex problem, I noticed that the current model error starts to...
i define the MF for four of my input variables as below: `mf = [[['gaussmf',{'mean':13.45,'sigma':3.2}], ['gaussmf',{'mean':25.7,'sigma':3.2}]], [['gaussmf',{'mean':41.74,'sigma':6.3}], ['gaussmf',{'mean':54.53,'sigma':6.3}], ['gaussmf',{'mean':66.51,'sigma':6.3}]], [['sigmf',{'b':1014.26,'c':-0.6}], ['sigmf',{'b':1012.1,'c':0.6}]], [['sigmf',{'b':60,'c':-0.6}], ['gaussmf',{'mean':73.31,'sigma':7.3}], ['sigmf',{'b':88,'c':0.6}]]]` but resulted in error when i...