Skip to content

Instantly share code, notes, and snippets.

@pilipolio
pilipolio / OptimisationPlayground.ipynb
Last active December 18, 2015 08:09
OptimisationPlayground
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pilipolio
pilipolio / GaussianProcesses.ipynb
Last active December 18, 2015 11:48
Exercise 1 from chapter 2 of Gaussian Processes book
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pilipolio
pilipolio / LassoRegression.ipynb
Created June 18, 2013 12:29
Lasso and Least angle regression
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pilipolio
pilipolio / RankingDistances.ipynb
Created November 26, 2013 09:21
Experiments based on paper "Generalized distances between rankings" by Kumar and Vassilvitskii.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pilipolio
pilipolio / local-we7recommend.cfg
Created December 19, 2013 17:33
local-we7recommend
[Core]
RECOMMENDATIONS_DATABASE_CONNECTION_STRING = host='localhost' user='postgres' password='' dbname='recommends'
LIVE_DATABASE_CONNECTION_STRING = host='localhost' user='postgres' password='' dbname='podsplice'
BACKUP_DATABASE_CONNECTION_STRING = host='localhost' user='postgres' password='' dbname='podsplice'
import requests
from functional import compose
from functools import partial
from collections import namedtuple
import itertools
class DescriptorDefinition(namedtuple('DescriptorDefinition', ['id', 'type', 'name'])):
@classmethod
def from_json(cls, definition_json):
@pilipolio
pilipolio / 201607_BanditsPlayground.ipynb
Created July 18, 2016 14:01
201607_BanditsPlayground.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.