From 87b6865f39d8b9db575506ad820abdcfd3f4e376 Mon Sep 17 00:00:00 2001 From: "Cazares, Tareian" Date: Thu, 3 Jun 2021 20:11:49 -0400 Subject: [PATCH] Update tensorflow 1.15.2 to 1.15.3 I updated tensorflow to the latest version because we could not detect a GPU. See this post for more information. https://github.com/tensorflow/tensorflow/issues/36476 --- maxatac/analyses/train.py | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/maxatac/analyses/train.py b/maxatac/analyses/train.py index 068e117..48096ed 100644 --- a/maxatac/analyses/train.py +++ b/maxatac/analyses/train.py @@ -1,7 +1,6 @@ import logging import sys import timeit -import pandas as pd from maxatac.utilities.constants import TRAIN_MONITOR from maxatac.utilities.system_tools import Mute diff --git a/setup.py b/setup.py index b0148d9..e4907f6 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def get_description(): license="Apache-2.0", include_package_data=True, packages=find_packages(), - install_requires=["tensorflow-gpu==1.15.2", + install_requires=["tensorflow-gpu==1.15.3", "tensorboard", "keras==2.3.1", "py2bit==0.3.0",