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?
carbocation t1_iyb3f36 wrote
While convolution is a bit funky with tabular data (what locality are you exploiting?), I think that attention is a mechanism that might make sense in the deep learning context for tabular data. For example, take a look at recent work such as https://openreview.net/forum?id=i_Q1yrOegLY (code and PDF linked from there).