diff --git a/requirements.txt b/requirements.txt index 3e30409..d7ec675 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ -keras==2.3.1 -tensorflow==1.14.0 -pandas==0.24.2 -numpy==1.16.1 +keras +tensorflow +pandas +numpy tqdm==4.24.0 docopt==0.6.2 coloredlogs==10.0 jupyterlab==1.0.1 altair==4.0.0 -seaborn==0.9.0 +seaborn==0.9.0 \ No newline at end of file diff --git a/trading_bot/agent.py b/trading_bot/agent.py index f89091d..ffe1882 100644 --- a/trading_bot/agent.py +++ b/trading_bot/agent.py @@ -9,7 +9,7 @@ from keras.models import Sequential from keras.models import load_model, clone_model from keras.layers import Dense -from keras.optimizers import Adam +from tensorflow.keras.optimizers import Adam def huber_loss(y_true, y_pred, clip_delta=1.0):