Skip to content
kaczmarek-kamil edited this page Jan 26, 2018 · 20 revisions

Setup

There are two main ways to start working with this workshop.

(recommended) option 1: Google Colaboratory

According to the project's main page:

Colaboratory is a Google research project created to help disseminate machine learning education and research

It is free to use for education and research purposes and we will use it in our workshop. It enables us to work interactively with the Python code directly in your browser.

setup

step 1: download the repository to disk

  1. open terminal
  2. cd to your working directory
  3. copy workshop contents to your disk:
$ git clone https://github.com/WUT-ML/appliedmldays_2018.git

Alternatively you can just go to the workshop page on GitHub and click clone or download to download entire repository.

step 2: setup Google Colaboratory

  1. Log in to your Google account
  2. Go to: Google Colaboratory
  3. Upload workshop notebook

At this point you are all set.

😃

option 2: local setup

We support only Ubuntu machines. If you are on other OS, we will try to figure out best solution for you.

  1. open terminal
  2. cd to your working directory
  3. copy workshop contents to your disk:
$ git clone https://github.com/WUT-ML/appliedmldays_2018.git
  1. create virtualenv:
$ virtualenv workshop -p python3.5
  1. activate virtualenv:
$ source workshop/bin/activate
  1. install required packages:
$ pip3 install -r requirements.txt
  1. (advanced Users only) Install Fiji: image processing package implemented in Java. This might be used to browse raw data.

At this point you are all set.

😃

Clone this wiki locally