-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add pytorch tabular benchmark #398
add pytorch tabular benchmark #398
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #398 +/- ##
==========================================
+ Coverage 93.52% 93.59% +0.07%
==========================================
Files 124 126 +2
Lines 6456 6576 +120
==========================================
+ Hits 6038 6155 +117
- Misses 418 421 +3 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One thing to note is that since PyTorch Tabular uses PyTorch Lightning, I assume extra features are turned on by default, e.g., logging, checkpointing, sanity val steps, etc., making it unfair for pure comparison.
Follow up to #398. Adds an option to compare `FTTransformer` accross pytorch tabular and frame. CUDA: Frame: 43.7 it/s Tabular: 40.15 it/s --------- Co-authored-by: yiweny <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Akihiro Nitta <[email protected]>
This PR adds a scirpt to compare TabTransformer across pytorch_tabular and pytroch_frame.
Results:
CPU:
CUDA:
In a follow up PR add comparison for other models.