We are trying to develop an AI model that detects 7 types of abnormal driver behavior
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
When first training AI, should it be trained with videos or images?
I would appreciate it if you could tell me the neural network you recommend next.
1 commentaire
Umar
le 30 Juin 2024
Hi HJ,
When starting to train AI, the choice between using videos or images depends on the specific task at hand. If the AI needs to understand temporal patterns or motion, training with videos might be more beneficial. On the other hand, if the task is more focused on static features, images could suffice.
For neural networks, a popular choice is Convolutional Neural Networks (CNNs) for image-related tasks due to their ability to extract spatial features effectively. You can implement CNNs in MATLAB using functions like convolution2dLayer, maxPooling2dLayer, and fullyConnectedLayer from the Deep Learning Toolbox.
If dealing with video data, Recurrent Neural Networks (RNNs) or 3D Convolutional Neural Networks (3D CNNs) could be suitable. MATLAB provides functions like lstmLayer for RNNs and 3dConvolutionLayer for 3D CNNs in the Deep Learning Toolbox.
Hope this will help achieve your goals.
Réponses (1)
Udit06
le 4 Juil 2024
I would recommend using video data to capture temporal dynamics and context which are necessary for accurate behaviour detection.
You can refer to the following academic papers to understand which model you should use for training:
- https://ieeexplore.ieee.org/abstract/document/8716668
- https://www.sciencedirect.com/science/article/abs/pii/S0140366421004734
I hope this helps.
0 commentaires
Voir également
Catégories
En savoir plus sur Recognition, Object Detection, and Semantic Segmentation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!