Skip to content

Commit

Permalink
New Version
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishpapanai committed Nov 22, 2021
1 parent a16038b commit e232e13
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
Binary file added lstm.h5
Binary file not shown.
Binary file added mix_lstm.h5
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# This call to setup() does all the work
setup(
name="stockDL",
version="0.2.4",
version="0.2.5",
description="Predicts the Gross Yield, Annual Yield and Net Yield of a user given stock ticker.",
long_description=README,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion stockDL/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
''' Version of module '''
__version__ = "0.2.4"
__version__ = "0.2.5"
from . import calculations, data, main, market, models, plots, preprocessing, results, train
2 changes: 2 additions & 0 deletions stockDL/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,6 @@ def train_model(self):
plt.show()
self.models.lstm_model.save_weights("./lstm_weights.h5")
self.models.mix_lstm_model.save_weights("./mix_lstm_weights.h5")
self.models.lstm_model.save("./lstm.h5")
self.models.mix_lstm_model.save("./mix_lstm.h5")
return lstm_history, mix_history

0 comments on commit e232e13

Please sign in to comment.