From eeb7615bd768094b993cdf373cfc0b87b29c42d8 Mon Sep 17 00:00:00 2001 From: Marcus Asteborg <maastebo@microsoft.com> Date: Thu, 30 Jul 2020 14:25:00 -0700 Subject: [PATCH] Add conda env file with working tensorflow and keras version for LPCNet --- dnn/LPCNet.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 dnn/LPCNet.yml diff --git a/dnn/LPCNet.yml b/dnn/LPCNet.yml new file mode 100644 index 000000000..3a7266572 --- /dev/null +++ b/dnn/LPCNet.yml @@ -0,0 +1,24 @@ +# +# install +# conda env create -f=LPCNet.yml +# +# update +# conda env update -f=LPCNet.yml +# +# activate +# conda activate LPCNet +# +# remove +# conda remove --name LPCNet --all +# +name: LPCNet +channels: + - anaconda + - conda-forge +dependencies: + - keras==2.2.4 + - python>=3.6 + - tensorflow-gpu==1.12.0 + - cudatoolkit + - h5py + - numpy -- GitLab