-
Notifications
You must be signed in to change notification settings - Fork 27
docs: Add comprehensive RF100 dataset catalog with search functionality #271
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
docs: Add comprehensive RF100 dataset catalog with search functionality #271
Conversation
cregouby
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.
praise Thanks for this well documented dataset
missing as you made a "task" column (which is currently constant) , why not include the other collection (emnist_collection) to it.
suggestion rename dataset and new functions from rf100_* to collection_*
…d inaccurate image estimates
|
Sir @cregouby Thank you for the feedback! I've addressed both suggestions:
The catalog now has 13 columns (down from 14), and tests have been updated accordingly. |
|
Hello @ANAMASGARD, Thanks a lot for those improvement. Tell me if you have the bandwidth to add both. If not that will be a later-on improvement. Best reagards |
…e confusion between xyxy format and COCO format (xyhw)
Fixes #243
Add RF100 Dataset Catalog
Problem Solved
Users had no easy way to:
Example question that was impossible before:
Now it's easy:
search_rf100("photovoltaic") # Instant answer!## What's Included
Searchable Catalog
rf100_catalog) and CSVSearch Functions
Search by keyword
search_rf100("cell")
search_rf100("solar")
search_rf100("medical")
Filter by collection
search_rf100(collection = "biology")
search_rf100(collection = "medical")
Get complete catalog
catalog <- get_rf100_catalog()
View(catalog)
List datasets in a collection
list_rf100_datasets("biology")### Comprehensive Documentation
vignette("rf100-datasets")- Complete catalog with examplesNew Files
R/rf100-catalog.R- Search and catalog functionsdata/rf100_catalog.rda- R data objectinst/extdata/rf100_catalog.csv- CSV exportdata-raw/create_rf100_catalog.R- Generation scriptvignettes/rf100-datasets.Rmd- Complete documentationtests/testthat/test-rf100-catalog.R- Test suite (48 tests)man/*.Rd- Function documentation (auto-generated)Modified Files
README.md- Added RF100 catalog sectionNAMESPACE- Added function exports (auto-generated)DESCRIPTION- Added LazyData (auto-generated)