view sparse_instance.py @ 499:a419edf4e06c

removed unpicklable nested classes in logistic regression
author James Bergstra <bergstrj@iro.umontreal.ca>
date Tue, 28 Oct 2008 12:57:49 -0400
parents 217c8789284b
children
line wrap: on
line source

"""
Sparse instances.
Each instance is represented as dict with key dimension.
Dimensions not present in the dict have value 0.
"""

from numpy import zeros

def to_vector(instances, dimensions):
    """
    Convert sparse instances to vectors.
    @type instances: list of sparse instances
    @param dimensions: The number of dimensions in each instance.
    @rtype: numpy matrix (instances x dimensions)
    @todo: Allow this function to convert SINGLE instances (not lists).
    """
    v = zeros((len(instances), dimensions))
    l = len(instances)
    for i in range(l):
        for idx in instances[i].keys():
            v[i][idx] = instances[i][idx]
    return v