ref: eeb7615bd768094b993cdf373cfc0b87b29c42d8
parent: 14fb264a0fce2cea7af26d43ecb0454536d049a0
author: Marcus Asteborg <maastebo@microsoft.com>
date: Thu Jul 30 10:25:00 EDT 2020
Add conda env file with working tensorflow and keras version for LPCNet
--- /dev/null
+++ b/dnn/LPCNet.yml
@@ -1,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
--
⑨