Skip to content

Commit 2915475

Browse files
committed
Merge branch 'hotfix/0.1.2'
2 parents 50df574 + a41c69b commit 2915475

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@
55

66
A python interface for [OpenML](http://openml.org). The documentation is
77
hosted at [readthedocs.org](https://readthedocs.org/projects/openml/).
8+
9+
Please commit to the right branches following the gitflow pattern:
10+
http://nvie.com/posts/a-successful-git-branching-model/

openml/entities/task.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def get_dataset(self):
4444
def get_X_and_Y(self):
4545
dataset = self.get_dataset()
4646
# Replace with retrieve from cache
47-
X_and_Y = dataset.get_pandas(target=self.target_feature)
47+
X_and_Y = dataset.get_dataset(target=self.target_feature)
4848
return X_and_Y
4949

5050
def evaluate(self, algo):
@@ -159,4 +159,4 @@ def perform_cv_fold(self, algo, fold, folds):
159159
accuracy = sklearn.metrics.accuracy_score(Y[validation_indices],
160160
predictions)
161161
return accuracy
162-
"""
162+
"""

0 commit comments

Comments
 (0)