cderinbogaz / inpredo

Inpredo is a Deep Learning tool which looks into financial charts and predicts stock movements.
https://towardsdatascience.com/making-a-i-that-looks-into-trade-charts-62e7d51edcba
MIT License
159 stars 93 forks source link

Running on Windows #11

Closed sehnza closed 4 years ago

sehnza commented 4 years ago

Hi,

Having an issue getting train-binary.py to run correctly on windows due to the colons in the weight-improvement section. This section : target_dir = "./models/weights-improvement-{epoch:02d}-{val_acc:2f}.hdf5"

Any idea how to get around this?

sehnza commented 4 years ago

Screenshot of the issue i'm having: https://imgur.com/a/nanVeau

cderinbogaz commented 4 years ago

This is a problem because of the python enviroment you are using. Change the target directory to the exact location instead of a relative path as in the example. For example: "YOUR_PATH_TO_MODELS_FOLDER/models/weights-improvement-{epoch:02d}-{val_acc:2f}.hdf5"

Just go the the folder and check for properties by right clicking and copy the path you see over there to this line.