view sandbox/embeddings/convert.py @ 467:f3711bcc467e

Fixed a bug in how embeddings are read
author Joseph Turian <turian@iro.umontreal.ca>
date Mon, 20 Oct 2008 19:14:06 -0400
parents ed6b0b3be8d2
children
line wrap: on
line source

#!/usr/bin/python
"""
Convert stdin sentences to word embeddings, and output YAML.
"""

import sys, string
import read
import yaml

output = []
for l in sys.stdin:
    l = string.strip(l)
    output.append((l, read.convert_string(l)))

print yaml.dump(output)