Can't train a custom neural network

4 views (last 30 days)
Hello,
I am working on (infant) human body detection in videos. I have read that the best way to track human movements is to exploit both spatial and temporal information, and every research I have found had used a modified U-Net, so an encoding part, through iterative convolutions, followed by a decoding part, through iterative deconvolutions
Some insights about my ground truth: I have access to black and white depth frames and to the positions of limb joints in each frame. From these data, I have created bounding bboxes, here called bboxes (containing the pixel positions of small circles or rectangles built around every joint), and masks (logical matrices of the same size as the frames, whose only non-zero entries are the one defined in the bboxes). So finally I have as many bboxes and masks as many joints I'm studying per frame. I created the masks because I was planning to use a Mask RCNN, but I couldn't find a way to do that.
I have built a network, although I can't guarantee that it works: my problem is that I have no idea how to train it! Whatever combo (inputData, trainFunction) I have tried hasn't succeded. The errors I receive are never about the net itself so I think it is useless to give further information about it, but the first layer is an image3dInputLayer since I intend to extract temporal features.
I would be glad if you could help me with this. I attach a workspace containing all the variables you need to know. With those variable I am trying to create an imds or a gTruth or whatever could work to build a network. Do you have any idea about what approach could work for my case?
Thank you very much.

Answers (1)

Gaurav Garg
Gaurav Garg on 28 Dec 2020
Hi Alessandro,
For any information on using U-Net in MATLAB, you can find the documentation here.
Since you are planning to use a pre-trained model (U-Net), this way of training and testing is popularly known as transfer learning. You can find the documentation here and an example here.
  1 Comment
Alessandro Cacciatore
Alessandro Cacciatore on 30 Dec 2020
Hi Gaurav,
Thank you for the documentation, but actually the network I am trying to use is not a pure U-Net, as I said it's a "modified U-Net" (it exploits the idea of coding+decoding but it doesn't resemble a U-Net it in any other way). I built it layer by layer, following this paper I found, and then linking each layer. I can even display the final net by using analyzeNetwork, and I see exactly what I expected to see from the code I have written.
So the problem is to train this completely custom network, which has been created by me from scratch and is not pretrained. I just can't understand whether it is possible to train a custom network or not, and it if is possible how that can be done.

Sign in to comment.

Categories

Find more on Recognition, Object Detection, and Semantic Segmentation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!