Reinis Vicups created MAHOUT-1501:
-------------------------------------

             Summary: ClusterOutputPostProcessorDriver has private default 
constructor
                 Key: MAHOUT-1501
                 URL: https://issues.apache.org/jira/browse/MAHOUT-1501
             Project: Mahout
          Issue Type: Bug
          Components: Clustering
    Affects Versions: 0.8
            Reporter: Reinis Vicups
            Priority: Trivial


Some guy just decided to make default constructor of 
org.apache.mahout.clustering.topdown.postprocessor.ClusterOutputPostProcessorDriver
 private.

This is not really bug, it's just inconsistent since all the other Drivers I 
found in mahout-core do not have private constructor.

The private constructor inhibits me from doing this:

{code}
return ToolRunner.run(new ClusterOutputPostProcessorDriver(), 
clusterPPArgsStrings);
{code}

the very same way I am doing this:

{code}
return ToolRunner.run(new KMeansDriver(), kmeansArgsStrings);
{code}

Fix would be to just remove private constructor.



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to