Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python3
import codecs
from collections import defaultdict
from math import log
import os
items_by_target = defaultdict(list)
count_by_item = defaultdict(int)
total_item_count = 0