InnerEye-DeepLearning/InnerEye
Max Ilse b23a927162 something is wrong 2022-03-02 17:23:33 +00:00
..
Azure Improve recovery of preempted jobs (#633) 2022-01-17 12:05:39 +00:00
Common fixing PandaInnereyeSSLMIL (#625) 2022-01-11 17:54:36 +00:00
ML something is wrong 2022-03-02 17:23:33 +00:00
Scripts Downloading checkpoints from AML if not found on disk (#614) 2021-12-09 20:18:41 +00:00
README.md Replace RadIO with TorchIO for patch-based inference (#666) 2022-02-23 10:28:11 +00:00
settings.yml Remove more dead arguments (#333) 2020-12-04 11:31:37 +00:00

README.md

Microsoft Research Cambridge InnerEyeDeepLearning for Medical Image Analysis

Consuming the InnerEye package

  • You need to have a Conda installation on your machine.
  • Create a Conda environment file environment.yml in your source code with this contents:
name: MyEnv
channels:
  - defaults
  - pytorch
dependencies:
  - pip=20.0.2
  - python=3.7.3
  - pytorch=1.3.0
  - pip:
      - innereye
  • Create a conda environment: conda env create --file environment.yml
  • Activate the environment: conda activate MyEnv