hdlib v0.1.18
Add:
- The space dictionary as part of a
Space
object is now anOrderedDict
, makingSpace
objects iterable over their set of vectors; - Python examples under the
examples
folder are now available as part of thehdlib
package.
Fix:
- Fix dumping and loading
Vector
andSpace
objects to and from pickle files; space.Space.bulk_insert
function now checks whether the names of the input vectors are instances ofbool
,int
,float
,str
, andNone
before creating and inserting vectors into the space;- Distance thresholds in
space.Space.find
andspace.Space.find_all
are now set tonumpy.Inf
by default.