From 3cd90cb8dc76ac32d90b86b0d183c5248238a764 Mon Sep 17 00:00:00 2001 From: Eric Juliani Date: Fri, 22 Jun 2018 10:33:06 +0800 Subject: [PATCH] - Addition of conda env file for cpu and gpu --- environment-cpu.yml | 23 +++++++++++++++++++++++ environment-gpu.yml | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 environment-cpu.yml create mode 100644 environment-gpu.yml diff --git a/environment-cpu.yml b/environment-cpu.yml new file mode 100644 index 0000000000..965f432d15 --- /dev/null +++ b/environment-cpu.yml @@ -0,0 +1,23 @@ +name: mask_rcnn_cpu +channels: + - defaults + - conda-forge +dependencies: + - python=3.* + - matplotlib + - numpy + - opencv + - pillow + - scipy + - scikit-image + - h5py + - jupyter + - pandas + - imageio + - tensorflow=1.8.* + - keras>=2.2.0 + - cython + - pip: + - imgaug + - git+https://github.com/waleedka/coco.git#subdirectory=PythonAPI + - importlib \ No newline at end of file diff --git a/environment-gpu.yml b/environment-gpu.yml new file mode 100644 index 0000000000..cb410b7d02 --- /dev/null +++ b/environment-gpu.yml @@ -0,0 +1,23 @@ +name: mask_rcnn_gpu +channels: + - defaults + - conda-forge +dependencies: + - python=3.* + - matplotlib + - numpy + - opencv + - pillow + - scipy + - scikit-image + - h5py + - jupyter + - pandas + - imageio + - tensorflow-gpu=1.8.* + - keras>=2.2.0 + - cython + - pip: + - imgaug + - git+https://github.com/waleedka/coco.git#subdirectory=PythonAPI + - importlib \ No newline at end of file