Skip to content

Instantly share code, notes, and snippets.

View fferegrino's full-sized avatar
📖
Learning

Antonio Feregrino fferegrino

📖
Learning
View GitHub Profile
@fferegrino
fferegrino / graph_gist_template.adoc
Created August 10, 2018 08:31 — forked from jexp/graph_gist_template.adoc
CHANGEME: GraphGist Template. Fork to make your own, view source to see instruction comments

REPLACEME: TITLE OF YOUR GRAPHGIST

Introduction

@fferegrino
fferegrino / kleinberg.py
Created November 3, 2017 07:13 — forked from ikegami-yukino/kleinberg.py
Burst detection by kleinberg's algorithm
from collections import namedtuple
import np
class Bursts:
def __init__(self, level, start, end):
self.level = level
self.start = start
self.end = end