Skip to content

Instantly share code, notes, and snippets.

View dataronio's full-sized avatar
🎺
Focusing

dataronio

🎺
Focusing
View GitHub Profile
@dataronio
dataronio / gist:eb5e7b4fb3cab2703b26340ecd60c0b7
Created September 4, 2021 17:29 — forked from syllog1sm/gist:10343947
A simple Python dependency parser
"""A simple implementation of a greedy transition-based parser. Released under BSD license."""
from os import path
import os
import sys
from collections import defaultdict
import random
import time
import pickle
SHIFT = 0; RIGHT = 1; LEFT = 2;