Bob (Idiap) in Docker

Today I created my first Docker image. I’m really interested in Docker as a technology and I feel this should be one main route in virtualization field. The use of Docker is so easy and elegant that I wonder why it hasn’t existed for longer time. There still is big hype around Docker, especially now when they get $40M funding. With this Docker will become huge company. Anyway I wanted to create some docker image for practice and bumped into Bob, signal-processing and machine-learning toolbox that I was describing in one of my previous articles. I had a problem then with compatibilty. Bob runs only under Ubuntu, Mac OSX and Arch Linux. I am happy Fedora user and didn’t want to install Ubuntu. Luckily developers offered a solution for this situation: Virtual Machine. On the other hand it is VM in VirtualBox which is under Oracle and run demanding computation in VM with limited memory isn’t the kind of performance I was looking for. We fortunately got access to school server then, but the problem with other platforms still remains. ...

September 18, 2014 · 2 min

Eyetracking data analysis

This should be my last project from University of Eastern Finland. In this project we was analyzing eye gazing data. We’ve got csv file containing information about positions of eye gaze in time. From that we’ve computed velocity of gaze, found peaks (high velocity, eye is moving to another object, it’s called saccades) and fixations. From that we computed Mean Fixation Duration and Mean Saccade Amplitude. I really liked to work on this project because finally I gave a try to IPython notebook and found out that it is incredible tool for data analysis and it’s presentation. You can take a look at result of my efforts. It contains all details and information. This project is hosted on github where you can find data and try it by yourself. ...

May 10, 2014 · 1 min

Autoreload in IPython

Long time I really hated standard flow of IPython work: import mystuff obj = mystuff.myobject() obj.do_stuff() Then I would find out that I have to change code in mystuff and do: reload(mystuff) obj = mystuff.myobject() obj.do_stuff() But with autoreload extension there is no need to run those horrible and distracting commands again (my source is stackoverflow). Simply run in ipython: %load_ext autoreload %autoreload 2 And every time you now hit Enter key to confirm command the changes you made to the code will be reloaded. Currently I’m working on relatively small project so it has no waiting time, but I can imagine that with larger ones it can bother more than reloading when needed. Anyway it just does everything I ever wanted and some more. ...

July 22, 2013 · 1 min