All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.libs.mlplan.multiclass.IMLPlanClassifierConfig Maven / Gradle / Ivy

The newest version!
package ai.libs.mlplan.multiclass;

import java.util.List;

import org.aeonbits.owner.Config.Sources;

import ai.libs.hasco.twophase.TwoPhaseHASCOConfig;

@Sources({ "file:conf/mlplan.properties" })
public interface IMLPlanClassifierConfig extends TwoPhaseHASCOConfig {

	public static final String PREFERRED_COMPONENTS = "mlplan.preferredComponents";
	public static final String SELECTION_PORTION = "mlplan.selectionportion";
	public static final String PRECAUTION_OFFSET = "mlplan.precautionoffset";

	@Key(SELECTION_PORTION)
	@DefaultValue("0.3")
	public double dataPortionForSelection();

	@Key(PRECAUTION_OFFSET)
	@DefaultValue("5")
	public int precautionOffset();

	@Key(PREFERRED_COMPONENTS)
	public List preferredComponents();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy