- Create dataset: Using imageDatastore() create an ImageDatastore object containing all the image files.
- Implement & Train a Deep Learning Network: Follow the below documentation to create a simple deep learning architecture for classification task: - https://www.mathworks.com/help/deeplearning/ug/create-simple-deep-learning-network-for-classification.html
Is there any way to train a neural network to recognise abnormal images?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I am using MATLAB R2020a on a MacOS. I am analysing ECG signals in real-time on a cycle-by-cycle basis by plotting the co-ordinates associated with each cycle in the phase space. I am trying to identify abnormal trajectories in the trace for each individual. I was wondering if there was any way of training a neural network machine learning algorithm by feeding it some cycles from that individual to form a 'template' of a normal trajectory and then using this template for comparison with the remaining cycles to find and flag abnormal cycles? Is there also a way of feeding the normal cycles into the template to update it as new normal cycles are found, whilst excluding abnormal cycles?
Any suggestions would be greatly appreciated. Thanks in advance
0 comentarios
Respuestas (1)
Abhishek Gupta
el 23 de Dic. de 2020
Hi,
As per my understanding, you want to train a Neural Network to flag the normal or abnormal ECG signal cycle. Following steps would help you to achieve the same: -
After sufficient training, your network would learn features corresponding to the normal or abnormal cycle. You can then give any input image, and it will tell you whether it is a normal or abnormal example.
Yes, you can update or improve your model by retraining your network with the new data. This task can be done by saving the trained network and then loading it back before retraining the model on the new images.
Ver también
Categorías
Más información sobre Image Data Workflows en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!