We are trying to develop an AI model that detects 7 types of abnormal driver behavior

2 次查看(过去 30 天)
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 个评论
Umar
Umar 2024-6-30
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.

请先登录,再进行评论。

回答(1 个)

Udit06
Udit06 2024-7-4
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:
I hope this helps.

类别

Help CenterFile Exchange 中查找有关 Recognition, Object Detection, and Semantic Segmentation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by