Skip to content

Commit e38971b

Browse files
committed
make release-tag: Merge branch 'master' into stable
2 parents 8739292 + 182e022 commit e38971b

209 files changed

Lines changed: 3437 additions & 822 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ include LICENSE
55
include README.md
66

77
recursive-include cardea *.xml
8+
recursive-include cardea *.json
89

910
recursive-include tests *
1011
recursive-exclude * __pycache__

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
[![Development Status](https://img.shields.io/badge/Development%20Status-2%20--%20Pre--Alpha-yellow)](https://pypi.org/search/?c=Development+Status+%3A%3A+2+-+Pre-Alpha)
1616
[![PyPi Shield](https://img.shields.io/pypi/v/cardea.svg)](https://pypi.python.org/pypi/cardea)
1717
[![Travis CI Shield](https://travis-ci.org/DAI-Lab/Cardea.svg?branch=master)](https://travis-ci.org/DAI-Lab/Cardea)
18+
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/DAI-Lab/Cardea/)
1819
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/DAI-Lab/Cardea/master?filepath=notebooks)
1920

2021
# Cardea

cardea/__init__.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,19 @@
33

44
__author__ = """MIT Data To AI Lab"""
55
__email__ = 'dailabmit@gmail.com'
6-
__version__ = '0.1.0'
6+
__version__ = '0.1.1.dev1'
77

88
import logging
9+
import os
910

1011
from cardea.cardea import Cardea
1112

1213
logging.getLogger('cardea').addHandler(logging.NullHandler())
14+
15+
_BASE_PATH = os.path.abspath(os.path.dirname(__file__))
16+
MLBLOCKS_PRIMITIVES = os.path.join(_BASE_PATH, 'primitives', 'jsons')
17+
MLBLOCKS_PIPELINES = os.path.join(_BASE_PATH, 'pipelines')
18+
19+
__all__ = (
20+
"Cardea"
21+
)

cardea/benchmark/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
3+
from cardea.benchmark.benchmark import (
4+
aggregate_results_by_pipeline, aggregate_results_by_problem, benchmark, evaluate_task)
5+
from cardea.benchmark.task import Task, create_tasks

0 commit comments

Comments
 (0)