Skip to content

Commit

Permalink
Merge pull request #28 from abhijithneilabraham/master
Browse files Browse the repository at this point in the history
update keras dependency with tensorflow
  • Loading branch information
mikkokotila committed Feb 11, 2022
2 parents 4d573b3 + aa207ab commit be806c4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
'statsmodels>=0.11.0',
'scipy',
'sklearn',
'keras']
'tensorflow']

if __name__ == "__main__":

Expand All @@ -51,13 +51,13 @@
'wrangle.array'],

classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'],
)
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'],
)
4 changes: 2 additions & 2 deletions wrangle/utils/create_synth_model.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
def _base_for_model(mode, n=50, neurons=50):

from keras.models import Sequential
from keras.layers import Dense
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense

from .create_synth_data import create_synth_data

Expand Down

0 comments on commit be806c4

Please sign in to comment.