Skip to content
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

Cardea class, functional api, and compose #92

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
fix lint
  • Loading branch information
sarahmish committed Apr 20, 2021
commit 4aa6c5d8c93aa6e69827ad97eab9f5dbec21b8bd
2 changes: 1 addition & 1 deletion cardea/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
BUCKET = 'dai-cardea'
S3_URL = 'https://{}.s3.amazonaws.com/{}'

DEMO_DATA = ("kaggle", "mimic", "dummy")
DEMO_DATA = ("kaggle", "mimic")


def download(name, data_path=DATA_PATH):
Expand Down
4 changes: 3 additions & 1 deletion tests/data_labeling/test_data_labeler.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ def setup_class(cls):
cls.verbose = False

def test_data_labeler(self):
def function(x): return x
def function(x):
return x

DataLabeler(function)