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
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
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:
- https://ieeexplore.ieee.org/abstract/document/8716668
- https://www.sciencedirect.com/science/article/abs/pii/S0140366421004734
I hope this helps.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File 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!