From d8cb2288ce7c2aa0125b59c678d44b0f0e496eb3 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 1 Aug 2014 07:28:47 +0100 Subject: [PATCH] * Roll back to using murmurhash2 for now --- spacy/spacy.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/spacy.pyx b/spacy/spacy.pyx index 5db6c26dd..30234fcba 100644 --- a/spacy/spacy.pyx +++ b/spacy/spacy.pyx @@ -107,7 +107,7 @@ cdef class Language: cdef StringHash hash_string(self, Py_UNICODE* s, size_t length) except 0: '''Hash unicode with MurmurHash64A''' - return mrmr.real_hash64(s, length * sizeof(Py_UNICODE), 0) + return mrmr.hash64(s, length * sizeof(Py_UNICODE), 0) cdef unicode unhash(self, StringHash hash_value): '''Fetch a string from the reverse index, given its hash value.'''