Skip to content

incorrect dimension reduction #2

@gpassero

Description

@gpassero

I think lsa.py file has an error, currently it's

            #Dimension reduction, build SIGMA'
            for index in xrange(rows - dimensions, rows):
                sigma[index] = 0

shouldn't it be:

        for index in xrange(dimensions, rows):
            print('setting index to 0 - ', index)

The way it is now, a lower dimension will cause better/more precise results.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions