Skip to content

Commit

Permalink
Merge pull request #16 from Alex-Lekov/develop
Browse files Browse the repository at this point in the history
Fix y_train
  • Loading branch information
Alex-Lekov authored Aug 5, 2020
2 parents 67c5907 + 1bcf476 commit d4198df
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).


## [0.07.26]

### Fix
- if y_train is not pd.DataFrame

## [0.07.26]

### Add
Expand Down
2 changes: 1 addition & 1 deletion automl_alex/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.07.26"
__version__ = "0.08.05"
2 changes: 1 addition & 1 deletion automl_alex/databunch.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(self,
self.X_test_source = pd.DataFrame(X_test)

if y_train is not None:
self.y_train = y_train
self.y_train = pd.DataFrame(y_train)
else:
raise Exception("No target data!")

Expand Down

0 comments on commit d4198df

Please sign in to comment.