Beispiel #1
0
def main(argv=None):
    if argv is None:
        argv = sys.argv
    options = process_args(argv[1:])
    try:
        wv = wvlib.load(options.vectors, max_rank=options.max_rank)
        wv = wv.normalize()
    except Exception as e:
        print('Error: %s' % str(e), file=sys.stderr)
        return 1
    return query_loop(wv, options, process_query, query_count=3)
Beispiel #2
0
    for q in query:
        print q
    vectors = [wv.words_to_vector(q) for q in query]
    words = [w for q in query for w in q]
    assert len(vectors) == 3, 'internal error'
    vector = wvlib.unit_vector(vectors[1] - vectors[0] + vectors[2])
    nncount = options.number if options else 10
    if options is None or not options.approximate:
        nearest = wv.nearest(vector, n=nncount, exclude=words)
    else:
        nearest = wv.approximate_nearest(vector, n=nncount, exclude=words)
    output_nearest(nearest, options)
    return True


def main(argv=None):
    if argv is None:
        argv = sys.argv
    options = process_args(argv[1:])
    try:
        wv = wvlib.load(options.vectors, max_rank=options.max_rank)
        wv = wv.normalize()
    except Exception, e:
        print >> sys.stderr, 'Error: %s' % str(e)
        return 1
    return query_loop(wv, options, process_query, query_count=3)


if __name__ == '__main__':
    sys.exit(main(sys.argv))
import wvlib

from common import process_args, query_loop, output_nearest

def process_query(wv, query, options=None):
    words = [w for q in query for w in q]
    vector = wv.words_to_vector(words)
    nncount = options.number if options else 10
    if options is None or not options.approximate:
        nearest = wv.nearest(vector, n=nncount, exclude=words)
    else:
        nearest = wv.approximate_nearest(vector, n=nncount, exclude=words)
    output_nearest(nearest, options)
    return True

def main(argv=None):
    if argv is None:
        argv = sys.argv
    options = process_args(argv[1:])
    try:
        wv = wvlib.load(options.vectors, max_rank=options.max_rank)
        wv = wv.normalize()
    except Exception, e:
        print >> sys.stderr, 'Error: %s' % str(e)
        return 1
    return query_loop(wv, options, process_query)

if __name__ == '__main__':
    sys.exit(main(sys.argv))