view embeddings/convert.py @ 530:844bad76459c

replaced the use of removed function compile.eval_outputs with theano.function.
author Frederic Bastien <bastienf@iro.umontreal.ca>
date Mon, 17 Nov 2008 14:18:28 -0500
parents a07948f780b9
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)