🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

"Two bug report"

User: "Legacy User"
New Altair Community Member
Updated by Jocelyn
Hi, Michael.

I found one bug when I browse WVTool project.
1. WVTool.java should set pruneMin and pruneMax as caller just passed in, instead of defaults. Obviously it is caused the overlook after copy-paste.

    public void createVectors(WVTInputList input, WVTConfiguration config, int pruneMin, int pruneMax) throws WVToolException {

        // Currently somewhat unefficient: Simply reads all documents twice,
        // will be enhanced in future versions.

        // Generate the word list
        WVTWordList wordList = createWordList(input, config);

        // Prune the word list
        wordList.pruneByFrequency(DEFAULT_PRUNE_MIN, DEFAULT_PRUNE_MAX);

        // Create the word vectors
        createVectors(input, config, wordList);

    }


-Benjamin

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "IngoRM"
    New Altair Community Member
    Hi Benjamin,

    thanks for sending this in. We will fix this.

    Cheers,
    Ingo