Skip to content

Commit

Permalink
tensorflow keras
Browse files Browse the repository at this point in the history
  • Loading branch information
dmbee committed Nov 8, 2019
1 parent a61f90f commit b264965
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
conda update --yes --quiet conda
conda create -n testenv --yes --quiet python=3
source activate testenv
conda install --yes pip numpy scipy scikit-learn matplotlib sphinx sphinx_rtd_theme numpydoc pillow keras pandas
conda install --yes pip numpy scipy scikit-learn matplotlib sphinx sphinx_rtd_theme numpydoc pillow keras pandas tensorflow imblearn
pip install sphinx-gallery
pip install .
cd doc
Expand Down
4 changes: 4 additions & 0 deletions doc/change_log.rst
@@ -1,6 +1,10 @@
Change Log
==========

Version 1.1.0

* Support for imbalanced-learn resamplers by Matthias Gazzari

Version 1.0.9

* allows for vector targets, to support one-hot or multi-label encoding
Expand Down
7 changes: 4 additions & 3 deletions examples/plot_model_selection2.py
Expand Up @@ -10,9 +10,10 @@
# License: BSD

import matplotlib.pyplot as plt
from keras.layers import Dense, LSTM, Conv1D
from keras.models import Sequential
from keras.wrappers.scikit_learn import KerasClassifier
from tensorflow.python.keras.layers import Dense, LSTM, Conv1D
from tensorflow.python.keras.models import Sequential
from tensorflow.python.keras.wrappers.scikit_learn import KerasClassifier

from sklearn.model_selection import GridSearchCV

from seglearn.datasets import load_watch
Expand Down
6 changes: 3 additions & 3 deletions examples/plot_nn_training_curves.py
Expand Up @@ -11,9 +11,9 @@

import matplotlib.pyplot as plt
import numpy as np
from keras.layers import Dense, LSTM, Conv1D
from keras.models import Sequential
from keras.wrappers.scikit_learn import KerasClassifier
from tensorflow.python.keras.layers import Dense, LSTM, Conv1D
from tensorflow.python.keras.models import Sequential
from tensorflow.python.keras.wrappers.scikit_learn import KerasClassifier
from pandas import DataFrame
from sklearn.model_selection import train_test_split

Expand Down
6 changes: 3 additions & 3 deletions examples/plot_segment_rep.py
Expand Up @@ -11,9 +11,9 @@

import matplotlib.image as mpimg
import matplotlib.pyplot as plt
from keras.layers import Dense, LSTM, Conv1D
from keras.models import Sequential
from keras.wrappers.scikit_learn import KerasClassifier
from tensorflow.python.keras.layers import Dense, LSTM, Conv1D
from tensorflow.python.keras.models import Sequential
from tensorflow.python.keras.wrappers.scikit_learn import KerasClassifier
from sklearn.model_selection import train_test_split

from seglearn.datasets import load_watch
Expand Down
2 changes: 1 addition & 1 deletion seglearn/_version.py
@@ -1 +1 @@
__version__ = "1.0.10"
__version__ = "1.1.0"

0 comments on commit b264965

Please sign in to comment.