You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the cooperation with Visual Technology Department on Fluid. We need to do three models about image classification, objection detection and optical character recognition (OCR). They are:
BUT I'm not sure whether we need to implement these as C++ operators? Since all the code will run based on C++ code in the future and not relied on Python code. Or only need to implement them by Python for the reader?
Global average pooling + FC (or 1x1 conv) + ReLU + FC(or 1x1 conv) + Sigmoid
Scale Op (elementwise_mul operator in Fluid.)
About the global average pooling:
From the author's point of view, our global pooling operator may also be less efficient. We also need to optimize it or just try reduce_mean at first.
2.2) Aggregating Transformations
This is a grouped convolution.
3.) Experiment
The single crop validation error of top-1 must be less than 18.2% on ImageNet 2012. But if the Multi-GPUs are not finished before the above works are finished. The result can be verified on CIFAR dataset at first.
4.) Submit demo and report.
The following two parts will continue to be edited to list more detailed subtasks.
MobileNet-SSD
1.) MobileNet
1.1) depthwise-conv operator.
1.2) ARM based depthwise-conv.
2.) SSD architecture
Even though, the layers have been implemented in old Paddle. I think we should make a survey about object detection on other frameworks like TensorFlow and then split into many subtasks. I'm doing this now. In addition, except for the training, our goal is to deploy this model.
From the cooperation with Visual Technology Department on Fluid. We need to do three models about image classification, objection detection and optical character recognition (OCR). They are:
SE-ResNeXt 152
The top-1 error on ImageNet 2012 dataset must less than 18.2%.
TODOs:
1.) Add data argumentation operation
1.1) Random Crop (namely random crop, aspect ratio)
1.2) Color Jitter.
1.3) Lighting.
1.4) Color Normalize.
1.5) HorizontalFlip.
All these implementations follow Torch: https://github.com/facebook/fb.resnet.torch and released papers also follow this code.
BUT I'm not sure whether we need to implement these as C++ operators? Since all the code will run based on C++ code in the future and not relied on Python code. Or only need to implement them by Python for the reader?
2.) Write model configuration for SE-ResNeXt.
Except the residual block, the SE-ResNeXt architecture contains squeeze-and-excitation(SE) block and aggregating transformations.
From the author's point of view, our global pooling operator may also be less efficient. We also need to optimize it or just try
reduce_mean
at first.3.) Experiment
The single crop validation error of top-1 must be less than 18.2% on ImageNet 2012. But if the Multi-GPUs are not finished before the above works are finished. The result can be verified on CIFAR dataset at first.
4.) Submit demo and report.
The following two parts will continue to be edited to list more detailed subtasks.
MobileNet-SSD
OCR Model
The text was updated successfully, but these errors were encountered: