-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Visualize Dataset statistics in metadata panel (#1472)
* initial draft with hooks * modify test for formatFileSize * add file size to the api response using fsspec * update unit test for metadata panel * remove print statements and update stats file * update get file size to not consider empty dir * fixing linting and format errors * fix format and lint errors * fix pytest errors * add test cases and add fix for circle ci builds * resolve PR comments * fixing PR comments and add additional support for MemoryDataset * update stats and modify file_size extraction * fix lint and format errors * fix lint errors * fix lint errors * fix lint errors * fix lint errors * fix lint errors * fix for PR comments * add test coverage for transcoded data node * address PR comments * fix lint errors * modify test cases for hooks and utils * add matplotlib in requirements file for e2e tests * add design change for overflow * add design change for overflow * remove matplotlib from requirements and fix metadata suggestions * add release notes for visualizing dataset stats * add release notes for displaying dataset stats * hooks update based on Nok's comments * fix lint and format checks * modify stats based on Nok's comments * fix lint and format * fixed failing unit test * update code based on Nok's suggestion --------- Co-authored-by: Tynan DeBold <[email protected]>
- Loading branch information
1 parent
6e1d127
commit 3c50980
Showing
27 changed files
with
766 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"companies": { "rows": 77096, "columns": 5, "file_size": 1810602 }, | ||
"ingestion.int_typed_companies": { | ||
"rows": 77096, | ||
"columns": 5, | ||
"file_size": 550616 | ||
}, | ||
"reviews": { "rows": 77096, "columns": 10, "file_size": 2937144 }, | ||
"ingestion.int_typed_reviews": { | ||
"rows": 55790, | ||
"columns": 11, | ||
"file_size": 1335600 | ||
}, | ||
"shuttles": { "rows": 77096, "columns": 13, "file_size": 4195290 }, | ||
"ingestion.int_typed_shuttles": { | ||
"rows": 77096, | ||
"columns": 13, | ||
"file_size": 1235685 | ||
}, | ||
"ingestion.prm_agg_companies": { "rows": 50098, "columns": 5 }, | ||
"prm_shuttle_company_reviews": { | ||
"rows": 29768, | ||
"columns": 27, | ||
"file_size": 1020356 | ||
}, | ||
"prm_spine_table": { "rows": 29768, "columns": 3, "file_size": 655994 }, | ||
"feature_engineering.feat_derived_features": { "rows": 29768, "columns": 3 }, | ||
"feature_importance_output": { "rows": 15, "columns": 2, "file_size": 460 }, | ||
"feature_engineering.feat_static_features": { "rows": 29768, "columns": 12 }, | ||
"ingestion.prm_spine_table_clone": { "rows": 29768, "columns": 3 }, | ||
"reporting.cancellation_policy_breakdown": { | ||
"rows": 21, | ||
"columns": 3, | ||
"file_size": 8744 | ||
}, | ||
"model_input_table": { "rows": 29768, "columns": 12, "file_size": 787351 }, | ||
"X_train": { "rows": 23814, "columns": 11 }, | ||
"X_test": { "rows": 5954, "columns": 11 } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.