-
Notifications
You must be signed in to change notification settings - Fork 4
Add deserializer class #37
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
base: main
Are you sure you want to change the base?
Conversation
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #37 +/- ##
=======================================
Coverage ? 80.96%
=======================================
Files ? 34
Lines ? 1529
Branches ? 0
=======================================
Hits ? 1238
Misses ? 291
Partials ? 0
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Hind-M
left a comment
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.
Should we add deserializer to README and examples like serializer?
| // Verify | ||
| REQUIRE_EQ(batches.size(), 1); | ||
| CHECK_EQ(batches[0].nb_columns(), original_batch.nb_columns()); | ||
| CHECK_EQ(batches[0].nb_rows(), original_batch.nb_rows()); |
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.
Should we check batches content as well?
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.
Yes I think that should be checked too.
JohanMabille
left a comment
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.
I agree that the README could be updated with an exmaple of deserializer.
| } | ||
| } | ||
| ``` | ||
|
|
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.
I think we should still add this to examples file to ensure that the same code (as long as it's copied correctly) is running without failures (no typos etc).
No description provided.