| Literature DB >> 15123882 |
Abstract
Study of visual evoked potential (VEP) is one of the utilized methods in clinical diagnosis of ophthalmology and neurological disorders. The automatic detection of VEP spectral components is an important tool in the diagnosis of mental activity. This paper presents a novel computational approach using feedforward neural network to identify abnormal subjects from changes in spectral components. The output vector from the feedforward neural network is based on the VEP spectral components. The software was developed to identify mental state from the VEP spectral components using Matlab software package. Using this approach, it is possible to perform real-time abnormality identification accurately on personal computers.Entities:
Year: 2004 PMID: 15123882 PMCID: PMC545650 DOI: 10.1155/S111072430421004X
Source DB: PubMed Journal: J Biomed Biotechnol ISSN: 1110-7243
Figure 1Normal VEP waveform.
Figure 2Abnormal VEP waveform (MND patient).
AND operation implementation using feedforward neural network.
| net = newff(minmax(P), [3,1], {purelin, purelin}, traingdm); |
| net.numInputs = 1; |
| net.inputs{1}.size = 2; |
| net.numLayers = 1; |
| net.layers{1}.size = 1; |
| net.inputConnect(1)=1; |
| net.outputConnect(1)=1; |
| net.targetConnect(1)=1; |
| net.layers{1}.transferFcn = purelin; |
| net = init(net); |
| net.initFcn = initlay; |
| net.trainParam.show = 500; |
| net.trainParam.lr = 0.50; |
| net.trainParam.mc = 0.9; |
| net.trainParam.epochs = 5000; |
| net.trainParam.goal = 0.001; |
| [net,tr] = train(net, P, t); |
| print |
| gensim(net,−1); |
| if |
| else |
| end; disp( |
Disease condition and spectral component values.
| S.no | Latency | Disease | Spectral components |
|---|---|---|---|
| in ms | in Hz | ||
| 1 | 100 | Normal | 2 |
| 2 | 100 | Normal | 2, small peak at 6 |
| 3 | 118 | Diminished vision | 3 |
| 4 | 120 | MND | 3 |
| 5 | 122 | Diminished vision | 3, small peak at 2 |
| 6 | 130 | MS | 4, small peak at 2 |
| 7 | 138 | MS | 6, small peak at 2 |
Figure 4Normal VEP spectrum plot.
Figure 5Abnormal VEP spectrum plot (MND patient).
ANN training result.
| TRAINGDM | ||
|---|---|---|
| Epoch | MSE | Gradient |
| 0/5000 | 0.727095/0.001 | 0.198489/1e-010 |
| 2500/5000 | 0.00481211/0.001 | 0.00063416/1e-010 |
| 5000/5000 | 0.00451022/0.001 | 0.000414329/1e-010 |
| Maximum | — | — |
Figure 6ANN training plot. Goal is 0.001.
Figure 7Feedforward neural network.