lbertolotti

Results 2 comments of lbertolotti

``` # -*- coding: utf-8 -*- """ Spyder Editor """ import annoy import inspect u = annoy.AnnoyIndex(5,metric='hamming') u.add_item(0,'12346') u.add_item(1,'12345') u.build(1) u.save('tree') u.get_n_items() In:u.get_distance(0,1) Out: 0.0 ```

Shouldn't there be a "pip install graphviz 64" or something like that?