This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Here are some useful tips/tricks in Python. | |
Credit: https://gist.github.com/neubig | |
""" | |
# To assign unique inter ids to words do the following. | |
from collections import defaultdict | |
wids = defaultdict(lambda: len(wids)) |
NewerOlder