Skip to content

Commit

Permalink
Moved SensitivityRates and StepwiseCompatible to the machinelearning/…
Browse files Browse the repository at this point in the history
…common/ package.
  • Loading branch information
datumbox committed Jan 8, 2016
1 parent ce5d2f1 commit 16834cb
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -51,6 +51,7 @@ Version 0.7.0-SNAPSHOT - Build 20160108
- KnowledgeBase is no longer serializable. Its serializable fields are stored individually into the Database.
- Restructuring the framework to remove all FindBug warnings.
- KnowledgeBase is now an interface, while the implementation moved to StandardKnowledgeBase. The interface contains a static factory method to produce any KB. This enable us to define the knowledgeBase field of BaseTrainable private and final.
- Moved SensitivityRates and StepwiseCompatible to the machinelearning/common/ package.

Version 0.6.1 - Build 20160102
------------------------------
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datumbox.framework.machinelearning.common.enums;
package com.datumbox.framework.machinelearning.common;

/**
* Enum that stores the 4 possible Sensitivity Rates.
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datumbox.framework.machinelearning.common.interfaces;
package com.datumbox.framework.machinelearning.common;

import java.util.Map;

Expand Down
Expand Up @@ -22,7 +22,7 @@
import com.datumbox.common.persistentstorage.interfaces.DatabaseConfiguration;
import com.datumbox.common.persistentstorage.interfaces.DatabaseConnector;
import com.datumbox.common.utilities.MapFunctions;
import com.datumbox.framework.machinelearning.common.enums.SensitivityRates;
import com.datumbox.framework.machinelearning.common.SensitivityRates;
import java.util.Arrays;
import java.util.HashMap;
import java.util.LinkedHashSet;
Expand Down
Expand Up @@ -15,7 +15,7 @@
*/
package com.datumbox.framework.machinelearning.common.validation;

import com.datumbox.framework.machinelearning.common.enums.SensitivityRates;
import com.datumbox.framework.machinelearning.common.SensitivityRates;
import com.datumbox.framework.machinelearning.common.bases.validation.ModelValidation;
import com.datumbox.framework.machinelearning.common.bases.mlmodels.BaseMLclassifier;
import java.util.Arrays;
Expand Down
Expand Up @@ -15,7 +15,7 @@
*/
package com.datumbox.framework.machinelearning.regression;

import com.datumbox.framework.machinelearning.common.interfaces.StepwiseCompatible;
import com.datumbox.framework.machinelearning.common.StepwiseCompatible;
import com.datumbox.framework.machinelearning.common.bases.basemodels.BaseLinearRegression;
import com.datumbox.common.dataobjects.Dataframe;
import com.datumbox.common.dataobjects.MatrixDataframe;
Expand Down
Expand Up @@ -15,7 +15,7 @@
*/
package com.datumbox.framework.machinelearning.regression;

import com.datumbox.framework.machinelearning.common.interfaces.StepwiseCompatible;
import com.datumbox.framework.machinelearning.common.StepwiseCompatible;
import com.datumbox.common.dataobjects.Dataframe;
import com.datumbox.common.persistentstorage.interfaces.DatabaseConfiguration;
import com.datumbox.common.persistentstorage.interfaces.DatabaseConnector;
Expand Down

0 comments on commit 16834cb

Please sign in to comment.