Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
williamjameshandley committed Apr 18, 2024
1 parent c4b9f46 commit 12e083e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ dependencies = [
'scipy',
'matplotlib',
'pandas',
'keras'
'tensorflow',
'scikit-learn',
]
classifiers = [
"Programming Language :: Python :: 3",
Expand Down
2 changes: 1 addition & 1 deletion stemu/emu.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def fit(self, X, t, y):
X, y = stack(X, t, y)

self.model = keras.models.Sequential(
[keras.layers.Input(X.shape[-1])]
[keras.layers.Input(X.shape[-1:])]
+ default_network
+ [keras.layers.Dense(1, activation="linear")]
)
Expand Down

0 comments on commit 12e083e

Please sign in to comment.