필터 지우기
필터 지우기

Confidence interval of ANFIS prediction

조회 수: 2 (최근 30일)
Akriti Singh
Akriti Singh 2022년 8월 11일
답변: Balavignesh 2023년 9월 25일
Is there a way to find the condifence values for predictions made by Neuro-Fuzzy designer?
  댓글 수: 1
Sam Chak
Sam Chak 2022년 8월 12일
Can you show the mathematical formula for the Confidence Interval?

댓글을 달려면 로그인하십시오.

답변 (1개)

Balavignesh
Balavignesh 2023년 9월 25일
Hi Akriti,
I understand that you want to find the 'confidence values' for a 'Neuro-Fuzzy Designer'.
The exact process of obtaining membership values may depend on the specific software you are using for Neuro-Fuzzy modelling.
However, a general approach to find 'confidence' values is to use the membership values associated with each prediction. 'Confidence values' can be calculated by normalizing the membership values. Membership values indicate the degree of 'confidence' in each prediction.
Here is an example code showing how you can do it:
prediction = 0.6; % Value predicted by Neuro-Fuzzy Designer
membership_values = [0.4,0.1,0.2]; % Example Membership Values
% Normalize Membership Values
confidence_values = membership_values/ sum(membership_values);
Please refer to the following documentation for more info on:
'Fuzzy Logic Designer' :

카테고리

Help CenterFile Exchange에서 Fuzzy Logic Toolbox에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by