TabPFN: Transformer Solves Small Tabular Classification in a Second
1–10 of 14 posts
Re: TabPFN: Transformer Solves Small Tabular Classification in a Second
#2Re: TabPFN: Transformer Solves Small Tabular Classification in a Second
#3Would tabular classification usually refer to say, extraction of tabular data in a picture to text?
I tried googling and looking through the site but it wasn't obvious to me what this actually does.
Re: TabPFN: Transformer Solves Small Tabular Classification in a Second
#4As a lazy non-ML simpleton, is there a simple explanation for it's usage? Would tabular classification usually refer to say, extraction of tabular data in a picture to text? I tried googling and looking through the site but it wasn't obvious to me what this actually does.
Re: TabPFN: Transformer Solves Small Tabular Classification in a Second
#5As a lazy non-ML simpleton, is there a simple explanation for it's usage? Would tabular classification usually refer to say, extraction of tabular data in a picture to text? I tried googling and looking through the site but it wasn't obvious to me what this actually does.
Re: TabPFN: Transformer Solves Small Tabular Classification in a Second
#6Re: TabPFN: Transformer Solves Small Tabular Classification in a Second
#7My main observation just looking at your example pictures is that its closest competitor is Gaussian Processes which I've long been a fan of.
Just looking at those pictures it looks like GP and TabPFN are very similar where there is data but TabPFN is more happy to extrapolate while GP is localised around the data (look at the top row for example).
I can't decide whether that's a feature or a bug. I guess it's good to have a choice whether you want to show that you're uncertain in regions where you've never seen data before or be able to extrapolate on what you have seen.
Re: TabPFN: Transformer Solves Small Tabular Classification in a Second
#8Hey there! I am one of the authors on this paper. If there are any questions, I am happy to answer :)
Many thanks also for open-sourcing your work and making the colab notebook, I've been playing around with that a bit.
Edit: spelling
Re: TabPFN: Transformer Solves Small Tabular Classification in a Second
#9Thanks. Looks very interesting! My main observation just looking at your example pictures is that its closest competitor is Gaussian Processes which I've long been a fan of. Just looking at those pictures it looks like GP and TabPFN are very similar where there is data but TabPFN is more happy to extrapolate while GP is localised around the data (look at the top row for example). I can't decide whether that's a featu…
Re: TabPFN: Transformer Solves Small Tabular Classification in a Second
#10Hey there! I am one of the authors on this paper. If there are any questions, I am happy to answer :)
You are very clear about the current limitations on data size, which I find refreshingly honest! How sensible do you find the idea to fine tune the model to a specific problem that has more than 1000 observations, by resampling the data (similar to bootstrapping) and retraining on the subsamples? As I understand it, one could fine tune the algorithm that TabPFN learned to the specific problem. Many thanks also for op…