Skip to content

Instantly share code, notes, and snippets.

View piggyatbaqaqi's full-sized avatar

La Monte Henry Piggy Yarroll piggyatbaqaqi

View GitHub Profile
@piggyatbaqaqi
piggyatbaqaqi / unsupervisedpcfg.py
Last active July 21, 2019 21:31 — forked from aaronstevenwhite/unsupervisedpcfg.py
Unsupervised probabilistic context free grammar induction with expectation maximization
import numpy as np
import pandas as pd
import itertools
from multiprocessing import Pool
from random import shuffle, choice
from scipy.stats import dirichlet
from scipy.misc import logsumexp
from nltk.tree import Tree