Skip to content

Instantly share code, notes, and snippets.

@herrbuerger
Created May 2, 2014 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save herrbuerger/e4452d55ffb03a53d423 to your computer and use it in GitHub Desktop.
Save herrbuerger/e4452d55ffb03a53d423 to your computer and use it in GitHub Desktop.
from annoy import AnnoyIndex
index = AnnoyIndex(1)
for x in range(10000):
id = "%d000%d" % (x,x)
index.add_item(int(id),[x])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment