Submitted by eternalmathstudent t3_z7z9gg in deeplearning
I have studied different variants of resnet and I'm aware that it is primarily used for image classification. I've even used pretrained resnet models for some projects.
However I'm now very curious to know if there's any variant of resnet that can be used on typical tabular data, that too for a regression task.
Or is there any convenient residual blocks (preferably tensorflow) available that I can plug and play?
suflaj t1_iy8xun6 wrote
If you have tabular data, the solution is to use XGBoost. Resnets are pretrained on imagenet, meaning if you need it pretrained for any other task, you'll have to do it yourself. I do not see how the task would benefit from a ResNet.