0.1.0 - Minor release for robust dataset functionality
Overview
- includes updates from 2021 summer students
- test coverage and GHA support
- Foundry SDK fixes
- improved example notebooks
- OOP refactoring
- README updates and improvements
Breaking Changes
Loading datasets has changed. Users will specify index=mdf
when instantiating Foundry:
f = Foundry(index="mdf")
and will load data like this:
f.load('dataset_name_or_DOI')
data = f.load_data()["split_name"]
Previously, users did not specify an index and loaded data as f = f.load("dataset_name")
.