Skip to content

Commit

Permalink
course information
Browse files Browse the repository at this point in the history
  • Loading branch information
mitkovetta committed Aug 21, 2020
1 parent d8639c4 commit 94fb384
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,21 @@ The lectures are mainly based on the selected chapters from following two books

Additional reading materials such as journal articles are listed within the lecture slides.

## Software

The practical assignments for this course will be done in Python. To get started with setting up a Python environment, follow the instructions in the [Essential Skills](https://github.com/tueimage/essential-skills/python-essentials) module. The Anaconda distribution is recommended. Optionally, you can use the desktop GUI called Anaconda Navigator.

In addition, you have to install the packages `matplotlib`, `jupyter`, `scikit-learn`, `scipy`, `pandas` and `tensorflow-cpu`. It is recommended to install these packages in a separate Conda environment. A Conda environment is a directory in which you can install files and packages such that their dependencies will not interact with other environments, which is very useful if you develop code for different courses or research projects. If you want to know more about how to use Conda, read the [docs](https://docs.conda.io/projects/conda/en/latest/user-guide/getting-started.html).

To create a new Conda environment and install the required packages, run the following commands from your terminal / command line (e.g. `CMD.exe Prompt`):

````bash
conda create --name myenv python=3.6 # create a new environment called `myenv`
conda activate myenv # activate this environment
conda install matplotlib jupyter scikit-learn scipy pandas tensorflow-cpu # install the required packages
````


## Assignments and Lectures

**IMPORTANT**: All materials tagged with (*tentative*) are not updated from the previous edition of the course and might change for this edition. However, any changes made will not be substantial and you can still use the materials to get an early peek at the content.
Expand Down Expand Up @@ -112,10 +127,6 @@ Teaching assistants:

8DB00 Image acquisition and Processing, and 8DC00 Medical Image Analysis.

## Software

The practical assignments for this course will be done in Python. We recommend the Anaconda Python distribution.

## Canvas

The [course page in Canvas] will be used for submission of the assignments, scheduling of the lectures and contact hours and announcements. The students are highly encouraged to use the Discussion section in Canvas. All general questions (e.g. issues with setting up the programming environment, error messages etc., general methodology questions) should be posted in the Discussion section in Canvas and not asked during the contact hours.
Expand Down
2 changes: 1 addition & 1 deletion practicals/week_2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
"version": "3.7.4"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion practicals/week_3.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
"version": "3.7.4"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion practicals/week_4.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
"version": "3.7.4"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion practicals/week_6.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
"version": "3.7.4"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 94fb384

Please sign in to comment.