Skip to content

0.1.0 - Minor release for robust dataset functionality

Compare
Choose a tag to compare
@ascourtas ascourtas released this 20 Dec 18:11
· 1077 commits to main since this release

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").